diff --git a/framework/base/control.class.php b/framework/base/control.class.php index ef66f235bc..82c725b057 100644 --- a/framework/base/control.class.php +++ b/framework/base/control.class.php @@ -394,19 +394,20 @@ class baseControl * * @param string $moduleName module name * @param string $methodName method name + * @param string $viewDir * @access public * @return string the view file */ - public function setViewFile($moduleName, $methodName) + public function setViewFile(string $moduleName, string $methodName, string $viewDir = 'view') { $moduleName = strtolower(trim($moduleName)); $methodName = strtolower(trim($methodName)); $modulePath = $this->app->getModulePath($this->appName, $moduleName); - $viewExtPath = $this->app->getModuleExtPath($this->appName, $moduleName, 'view'); + $viewExtPath = $this->app->getModuleExtPath($moduleName, $viewDir); $viewType = $this->viewType == 'mhtml' ? 'html' : $this->viewType; - $mainViewFile = $modulePath . 'view' . DS . $this->devicePrefix . $methodName . '.' . $viewType . '.php'; + $mainViewFile = $modulePath . $viewDir . DS . $this->devicePrefix . $methodName . '.' . $viewType . '.php'; $viewFile = $mainViewFile; if(!empty($viewExtPath)) @@ -416,7 +417,7 @@ class baseControl $viewFile = file_exists($commonExtViewFile) ? $commonExtViewFile : $mainViewFile; $viewFile = (!empty($siteExtViewFile) and file_exists($siteExtViewFile)) ? $siteExtViewFile : $viewFile; - if(!is_file($viewFile)) $this->app->triggerError("the view file $viewFile not found", __FILE__, __LINE__, $exit = true); + if(!is_file($viewFile)) $this->app->triggerError("the view file $viewFile not found", __FILE__, __LINE__, true); $commonExtHookFiles = glob($viewExtPath['common'] . $this->devicePrefix . $methodName . ".*.{$viewType}.hook.php"); $siteExtHookFiles = empty($viewExtPath['site']) ? '' : glob($viewExtPath['site'] . $this->devicePrefix . $methodName . ".*.{$viewType}.hook.php"); @@ -907,12 +908,106 @@ class baseControl * @access public * @return void */ - public function display($moduleName = '', $methodName = '') + public function display(string $moduleName = '', string $methodName = '') { + if($this->config->debug && $this->viewType === 'html' && (!isset($_GET['zin']) || $_GET['zin'] != '0')) + { + if(empty($moduleName)) $moduleName = $this->moduleName; + if(empty($methodName)) $methodName = $this->methodName; + $modulePath = $this->app->getModulePath($this->appName, $moduleName); + $viewType = $this->viewType == 'mhtml' ? 'html' : $this->viewType; + $mainViewFile = $modulePath . 'ui' . DS . $this->devicePrefix . $methodName . '.' . $viewType . '.php'; + if(file_exists($mainViewFile)) return $this->render($moduleName, $methodName); + } + if(empty($this->output)) $this->parse($moduleName, $methodName); + echo $this->output; } + /** + * 向浏览器输出内容。 + * Print the content of the view. + * + * @param string $moduleName module name + * @param string $methodName method name + * @access public + * @return void + */ + public function render($moduleName = '', $methodName = '') + { + if(isset($_GET['zin']) && $_GET['zin'] == '0') + { + $this->display($moduleName, $methodName); + return; + } + + if(empty($moduleName)) $moduleName = $this->moduleName; + if(empty($methodName)) $methodName = $this->methodName; + + /* Load zin lib */ + $this->app->loadClass('zin', true); + \zin\loadConfig(); + + /** + * 设置视图文件。(PHP7有一个bug,不能直接$viewFile = $this->setViewFile())。 + * Set viewFile. (Can't assign $viewFile = $this->setViewFile() directly because one php7's bug.) + */ + $results = $this->setViewFile($moduleName, $methodName, 'ui'); + + $viewFile = $results; + if(is_array($results)) extract($results); + + /** + * 获得当前页面的CSS和JS。 + * Get css and js codes for current method. + */ + $css = $this->getCSS($moduleName, $methodName, '.ui'); + $js = $this->getJS($moduleName, $methodName, '.ui'); + if($css) $this->view->pageCSS = $css; + if($js) $this->view->pageJS = $js; + + /** + * 切换到视图文件所在的目录,以保证视图文件里面的include语句能够正常运行。 + * Change the dir to the view file to keep the relative paths work. + */ + $currentPWD = getcwd(); + chdir(dirname($viewFile)); + + /** + * Set zin context data + */ + \zin\zin::$globalRenderList = array(); + \zin\zin::$enabledGlobalRender = true; + \zin\zin::$rendered = false; + \zin\zin::$rawContentCalled = false; + + \zin\zin::$data = (array)$this->view; + \zin\zin::$data['zinDebug'] = array(); + if($this->config->debug && $this->config->debug >= 2) + { + \zin\zin::$data['zinDebug']['trace'] = $this->app->loadClass('trace')->getTrace(); + } + + /** + * 使用extract和ob方法渲染$viewFile里面的代码。 + * Use extract and ob functions to eval the codes in $viewFile. + */ + extract(\zin\zin::$data); + ob_start(); + include $viewFile; + if(!\zin\zin::$rendered) \zin\render(); + $content = ob_get_clean(); + ob_start(); + echo $content; + + /** + * 渲染完毕后,再切换回之前的路径。 + * At the end, chang the dir to the previous. + */ + chdir($currentPWD); + } + /** * 直接输出data数据,通常用于ajax请求中。 * Send data directly, for ajax requests. diff --git a/framework/base/helper.class.php b/framework/base/helper.class.php index e8fb36f49d..f7a58e6556 100644 --- a/framework/base/helper.class.php +++ b/framework/base/helper.class.php @@ -680,15 +680,21 @@ class baseHelper * 检查是否是AJAX请求。 * Check is ajax request. * + * @param ?string $type zin|modal|fetch * @static * @access public * @return bool */ - public static function isAjaxRequest() + public static function isAjaxRequest(?string $type = null): bool { - if(isset($_SERVER['HTTP_X_REQUESTED_WITH']) && $_SERVER['HTTP_X_REQUESTED_WITH'] == 'XMLHttpRequest') return true; - if(isset($_GET['HTTP_X_REQUESTED_WITH']) && $_GET['HTTP_X_REQUESTED_WITH'] == 'XMLHttpRequest') return true; - return false; + $isAjax = (isset($_SERVER['HTTP_X_REQUESTED_WITH']) && $_SERVER['HTTP_X_REQUESTED_WITH'] === 'XMLHttpRequest') || (isset($_GET['HTTP_X_REQUESTED_WITH']) && $_GET['HTTP_X_REQUESTED_WITH'] === 'XMLHttpRequest'); + if($isAjax === false) return false; + + if($type === 'zin') return array_key_exists('HTTP_X_ZIN_OPTIONS', $_SERVER); + if($type === 'modal') return isset($_SERVER['HTTP_X_ZUI_MODAL']) && $_SERVER['HTTP_X_ZUI_MODAL'] == true; + if($type === 'fetch') return !array_key_exists('HTTP_X_ZIN_OPTIONS', $_SERVER) && !(isset($_SERVER['HTTP_X_ZUI_MODAL']) && $_SERVER['HTTP_X_ZUI_MODAL'] == true); + + return $isAjax; } /** @@ -788,6 +794,101 @@ class baseHelper return null; } + /** + * Send a cookie. + * + * @param string $name + * @param string $value + * @param int|null $expire + * @param string|null $path + * @param string $domain + * @param bool|null $secure + * @param bool $httponly + * @static + * @access public + * @return bool + */ + public static function setcookie(string $name, string $value = '', int $expire = null, string $path = null, string $domain = '', bool $secure = null, bool $httponly = true) + { + global $config, $app; + + if($expire === null) $expire = $config->cookieLife; + if($path === null) $path = $config->webRoot; + if($secure === null) $secure = $config->cookieSecure; + + if(isset($app->worker)) + { + $app->worker->response->setCookie($name, $value, $expire, $path, $domain, $secure, $httponly); + } + else + { + return setcookie($name, $value, $expire, $path, $domain, $secure, $httponly); + } + } + + /** + * 设置状态码。 + * Set status code. + * + * @param int $code + * @static + * @access public + * @return void + */ + static public function setStatus(int $code) + { + global $app; + + if(isset($app->worker)) + { + $app->worker->response->setStatus($code); + } + else + { + $PHRASES = array( + 100 => 'Continue', 101 => 'Switching Protocols', 102 => 'Processing', + 200 => 'OK', 201 => 'Created', 202 => 'Accepted', 203 => 'Non-Authoritative Information', 204 => 'No Content', 205 => 'Reset Content', 206 => 'Partial Content', 207 => 'Multi-status', 208 => 'Already Reported', + 300 => 'Multiple Choices', 301 => 'Moved Permanently', 302 => 'Found', 303 => 'See Other', 304 => 'Not Modified', 305 => 'Use Proxy', 306 => 'Switch Proxy', 307 => 'Temporary Redirect', + 400 => 'Bad Request', 401 => 'Unauthorized', 402 => 'Payment Required', 403 => 'Forbidden', 404 => 'Not Found', 405 => 'Method Not Allowed', 406 => 'Not Acceptable', 407 => 'Proxy Authentication Required', 408 => 'Request Time-out', 409 => 'Conflict', 410 => 'Gone', 411 => 'Length Required', 412 => 'Precondition Failed', 413 => 'Request Entity Too Large', 414 => 'Request-URI Too Large', 415 => 'Unsupported Media Type', 416 => 'Requested range not satisfiable', 417 => 'Expectation Failed', 418 => 'I\'m a teapot', 422 => 'Unprocessable Entity', 423 => 'Locked', 424 => 'Failed Dependency', 425 => 'Unordered Collection', 426 => 'Upgrade Required', 428 => 'Precondition Required', 429 => 'Too Many Requests', 431 => 'Request Header Fields Too Large', 451 => 'Unavailable For Legal Reasons', + 500 => 'Internal Server Error', 501 => 'Not Implemented', 502 => 'Bad Gateway', 503 => 'Service Unavailable', 504 => 'Gateway Time-out', 505 => 'HTTP Version not supported', 506 => 'Variant Also Negotiates', 507 => 'Insufficient Storage', 508 => 'Loop Detected', 511 => 'Network Authentication Required', + ); + header('HTTP/1.1 ' . (string)$code . ' ' . $PHRASES[$code], true, $code); + } + } + + /** + * 发送HTTP头信息。 + * Send http header. + * + * @param string $key + * @param string $value + * @param bool $replace + * @param int $response_code + * @static + * @access public + * @return void + */ + static public function header(string $key, string $value, bool $replace = true, int $response_code = 0) + { + global $app; + + if(isset($app->worker)) + { + $key = trim(strtolower($key)); + $app->worker->response->setHeader($key, $value); + + if($key == 'location') + { + $app->worker->response->setStatus(302); + helper::end(); + } + } + else + { + header($key . ': ' . $value, $replace, $response_code); + } + } + /** * 检查是否启用缓存。 * Check is enable cache. diff --git a/framework/base/router.class.php b/framework/base/router.class.php index f79c1a63a0..362d5658e8 100644 --- a/framework/base/router.class.php +++ b/framework/base/router.class.php @@ -356,6 +356,14 @@ class baseRouter */ public $siteCode; + /** + * zin 请求时发生的错误信息。 + * The errors occurred when zin request. + * + * @var array + */ + public $zinErrors = array(); + /** * 构造方法, 设置路径,类,超级变量等。注意: * 1.应该使用createApp()方法实例化router类; @@ -2891,7 +2899,7 @@ class baseRouter * @access public * @return void */ - public function saveError($level, $message, $file, $line) + public function saveError(int $level, string $message, string $file, int $line) { if(empty($this->config->debug)) return true; if(!is_dir($this->logRoot)) return true; @@ -2901,9 +2909,9 @@ class baseRouter * 删除设定时间之前的日志。 * Delete the log before the set time. **/ - if(mt_rand(0, 10) == 1) + if(random_int(0, 10) == 1) { - $logDays = isset($this->config->framework->logDays) ? $this->config->framework->logDays : 14; + $logDays = $this->config->framework->logDays ?? 14; $dayTime = time() - $logDays * 24 * 3600; foreach(glob($this->getLogRoot() . '*') as $logFile) { @@ -2915,7 +2923,7 @@ class baseRouter * 忽略该错误:Redefining already defined constructor。 * Skip the error: Redefining already defined constructor. **/ - if(strpos($message, 'Redefining') !== false) return true; + if(str_contains($message, 'Redefining')) return true; /* * 设置错误信息。 @@ -2924,8 +2932,8 @@ class baseRouter if(preg_match('/[^\x00-\x80]/', $message)) $message = helper::convertEncoding($message, 'gbk'); $errorLog = "\n" . date('H:i:s') . " $message in $file on line $line "; - $URI = $this->getURI(); - $errorLog .= "when visiting " . (empty($URI) ? '' : htmlspecialchars($URI)) . "\n"; + $uri = $this->getURI(); + $errorLog .= "when visiting " . (empty($uri) ? '' : htmlspecialchars($uri)) . "\n"; /* * 为了安全起见,对公网环境隐藏脚本路径。 @@ -2942,18 +2950,29 @@ class baseRouter if(!is_file($errorFile)) file_put_contents($errorFile, "\n"); $fh = fopen($errorFile, 'a'); - if($fh) fwrite($fh, strip_tags($errorLog)) and fclose($fh); + if($fh) fwrite($fh, strip_tags(htmlspecialchars_decode($errorLog))) and fclose($fh); /* - * 如果debug > 1,显示warning, notice级别的错误。 - * If the debug > 1, show warning, notice error. + * 如果debug > 1,直接在页面显示非严重错误。 + * If the debug > 1, show non-serious errors on page directly. **/ - if($level == E_NOTICE or $level == E_WARNING or $level == E_STRICT or $level == 8192) // 8192: E_DEPRECATED + if(!empty($this->config->debug) && $this->config->debug > 1) { - if(!empty($this->config->debug) and $this->config->debug > 1) + /* Send non-serious errors to page in zin mode. */ + $isZinRequest = isset($this->config->zin) || isset($_SERVER['HTTP_X_ZIN_OPTIONS']); + $isNonSeriousError = $level !== E_ERROR && $level !== E_PARSE && $level !== E_CORE_ERROR && $level !== E_COMPILE_ERROR; + if($isZinRequest && $isNonSeriousError) + { + $this->zinErrors[] = array('file' => $file, 'line' => $line, 'message' => $message, 'level' => $level); + return; + } + + /* Show non-serious errors to classic page. */ + if($level == E_NOTICE or $level == E_WARNING or $level == E_STRICT or $level == 8192) { $cmd = "vim +$line $file"; $size = strlen($cmd); + echo "
$message: ";
echo "";
}
@@ -2963,14 +2982,21 @@ class baseRouter
* 如果是严重错误,停止程序。
* If error level is serious, die.
* */
- if($level == E_ERROR or $level == E_PARSE or $level == E_CORE_ERROR or $level == E_COMPILE_ERROR or $level == E_USER_ERROR)
+ if(in_array($level, array(E_ERROR, E_PARSE, E_CORE_ERROR, E_COMPILE_ERROR, E_USER_ERROR)))
{
- if(empty($this->config->debug)) die();
- if(PHP_SAPI == 'cli') die($errorLog);
+ if(empty($this->config->debug)) helper::end();
- $htmlError = "";
- $htmlError .= "" . nl2br($errorLog) . "";
- die($htmlError);
+ if(PHP_SAPI == 'cli')
+ {
+ echo $errorLog;
+ }
+ else
+ {
+ $htmlError = "";
+ $htmlError .= "" . nl2br($errorLog) . "";
+ echo $htmlError;
+ helper::end();
+ }
}
}
diff --git a/framework/control.class.php b/framework/control.class.php
index f19f2d51c0..f0b65f4d94 100644
--- a/framework/control.class.php
+++ b/framework/control.class.php
@@ -249,19 +249,20 @@ class control extends baseControl
*
* @param string $moduleName module name
* @param string $methodName method name
+ * @param string $viewDir
* @access public
* @return string the view file
*/
- public function setViewFile($moduleName, $methodName)
+ public function setViewFile(string $moduleName, string $methodName, string $viewDir = 'view')
{
$moduleName = strtolower(trim($moduleName));
$methodName = strtolower(trim($methodName));
$modulePath = $this->app->getModulePath($this->appName, $moduleName);
- $viewExtPath = $this->app->getModuleExtPath($this->appName, $moduleName, 'view');
+ $viewExtPath = $this->app->getModuleExtPath($moduleName, $viewDir, 'view');
$viewType = ($this->viewType == 'mhtml' or $this->viewType == 'xhtml') ? 'html' : $this->viewType;
- $mainViewFile = $modulePath . 'view' . DS . $this->devicePrefix . $methodName . '.' . $viewType . '.php';
+ $mainViewFile = $modulePath . $viewDir . DS . $this->devicePrefix . $methodName . '.' . $viewType . '.php';
/* If the main view file doesn't exist, set the device prefix to empty and reset the main view file. */
if(!file_exists($mainViewFile) and $this->app->clientDevice != 'mobile')
@@ -309,8 +310,8 @@ class control extends baseControl
$viewFile = $commonExtViewFile;
}
- if(!is_file($viewFile)) $viewFile = dirname(dirname($viewExtPath['common'])) . DS . 'view' . DS . $this->devicePrefix . $methodName . ".{$viewType}.php";
- if(!is_file($viewFile)) die(js::error($this->lang->notPage) . js::locate('back'));
+ if(!is_file($viewFile)) $viewFile = dirname((string) $viewExtPath['common'], 2) . DS . 'view' . DS . $this->devicePrefix . $methodName . ".{$viewType}.php";
+ if(!is_file($viewFile)) helper::end(js::error($this->lang->notPage) . js::locate('back'));
/* Get ext hook files. */
$commonExtHookFiles = glob($viewExtPath['common'] . $this->devicePrefix . $methodName . ".*.{$viewType}.hook.php");
diff --git a/framework/helper.class.php b/framework/helper.class.php
index 1147271e04..78dbc6b971 100644
--- a/framework/helper.class.php
+++ b/framework/helper.class.php
@@ -373,6 +373,18 @@ function isonlybody()
return helper::inOnlyBodyMode();
}
+/**
+ * 检查页面是否是弹窗中。
+ * Check page is modal.
+ *
+ * @access public
+ * @return bool
+ */
+function isInModal(): bool
+{
+ return helper::isAjaxRequest('modal');
+}
+
/**
* Format time.
*
@@ -406,3 +418,251 @@ function autoloader($class)
}
spl_autoload_register('autoloader');
+
+
+/**
+ * Init page title based on the module name and the method name.
+ *
+ * @access public
+ * @return string
+ */
+function initPageTitle(): string
+{
+ global $app, $lang;
+ $module = $app->rawModule;
+ $method = $app->rawMethod;
+
+ if(empty($lang->$module)) $app->loadLang($module);
+
+ if(!empty($lang->$module->{$method . 'Action'})) return $lang->$module->{$method . 'Action'};
+ if(!empty($lang->$module->$method)) return $lang->$module->$method;
+ return zget($lang, $method);
+}
+
+/**
+ * Init page entity based on configuration of objectNameFields.
+ *
+ * @param object $object
+ * @access public
+ * @return array
+ */
+function initPageEntity(object $object): array
+{
+ if(empty($object)) return array();
+
+ global $app, $config;
+ $app->loadModuleConfig('action');
+
+ $module = $app->getModuleName();
+ $idField = isset($config->action->objectIdFields[$module]) ? $config->action->objectIdFields[$module] : 'id';
+ $titleField = isset($config->action->objectNameFields[$module]) ? $config->action->objectNameFields[$module] : 'title';
+
+ return array(zget($object, $titleField, ''), zget($object, $idField, 0));
+}
+
+/**
+ * Init table data of zin.
+ *
+ * @param array $items
+ * @param array $fieldList
+ * @param object $model
+ * @access public
+ * @return array
+ */
+function initTableData(array $items, array &$fieldList, object $model = null): array
+{
+ $items = setParent($items);
+ if(empty($fieldList['actions'])) return $items;
+
+ foreach($fieldList['actions']['menu'] as $actionMenu)
+ {
+ if(is_array($actionMenu))
+ {
+ foreach($actionMenu as $actionMenuKey => $actionName)
+ {
+ if($actionMenuKey == 'other')
+ {
+ foreach($actionName as $otherActionName) initTableActions($fieldList, $otherActionName);
+ }
+ else
+ {
+ initTableActions($fieldList, $actionName);
+ }
+ }
+ }
+ else
+ {
+ initTableActions($fieldList, $actionMenu);
+ }
+ }
+
+ global $app;
+ if(empty($model))
+ {
+ $module = $app->getModuleName();
+ $model = $app->control->loadModel($module);
+ }
+
+ $maxActionCount = 0;
+ foreach($items as $item)
+ {
+ $item->actions = array();
+ foreach($fieldList['actions']['menu'] as $actionKey => $actionMenu)
+ {
+ if(isset($actionMenu['other']))
+ {
+ $currentActionMenu = $actionMenu[0];
+ initItemActions($item, $currentActionMenu, $fieldList['actions']['list'], $model);
+
+ $otherActionMenus = $actionMenu['other'];
+ $otherAction = '';
+ foreach($otherActionMenus as $otherActionMenu)
+ {
+ $otherActions = explode('|', $otherActionMenu);
+ foreach($otherActions as $otherActionName)
+ {
+ if(in_array($otherActionName, array_column($item->actions, 'name'))) continue;
+
+ if(method_exists($model, 'isClickable') && !$model->isClickable($item, $otherActionName)) $otherAction .= '-';
+ $otherAction .= $otherActionName . ',';
+ }
+ }
+ $item->actions[] = 'other:' . $otherAction;
+ }
+ elseif($actionKey == 'more')
+ {
+ $moreAction = '';
+ foreach($actionMenu as $moreActionName)
+ {
+ if(method_exists($model, 'isClickable') && !$model->isClickable($item, $moreActionName)) $moreAction .= '-';
+ $moreAction .= $moreActionName . ',';
+ }
+
+ $item->actions[] = 'more:' . $moreAction;
+ }
+ elseif(is_array($actionMenu)) // Two or more grups.
+ {
+ /*
+ * Menu可能会有多套,如果只有一套可以直接用一维数组。
+ * There are maybe two or more groups of action menus.
+ */
+ $item->actions = array();
+ $isClickable = false;
+ foreach($actionMenu as $actionName) $isClickable |= initItemActions($item, $actionName, $fieldList['actions']['list'], $model);
+
+ if($isClickable) break; // If the action is clickable, use this group.
+ }
+ else // Only one group of action menus.
+ {
+ initItemActions($item, $actionMenu, $fieldList['actions']['list'], $model);
+ }
+ }
+
+ if(count($item->actions) > $maxActionCount) $maxActionCount = count($item->actions);
+ }
+ if(isset($fieldList['actions'])) $fieldList['actions']['minWidth'] = $maxActionCount * 24 + 24;
+
+ return array_values($items);
+}
+
+/**
+ * Set the parent property of the data.
+ *
+ * @param array $items
+ * @access public
+ * @return array
+ */
+function setParent(array $items)
+{
+ foreach($items as $item)
+ {
+ /* Set parent attribute. */
+ $item->isParent = false;
+ if(isset($item->parent) && $item->parent == -1)
+ {
+ /* When the parent is -1, the hierarchical structure is displayed incorrectly. */
+ $item->parent = 0;
+ $item->isParent = true;
+ }
+
+ if(!empty($item->parent) && isset($items[$item->parent])) $items[$item->parent]->isParent = true;
+ }
+ return $items;
+}
+
+/**
+ * Init column actions of a table.
+ *
+ * @param array $fieldList
+ * @param string $actionMenu
+ * @access public
+ * @return void
+ */
+function initTableActions(array &$fieldList, string $actionMenu): void
+{
+ $actions = explode('|', $actionMenu);
+ foreach($actions as $action)
+ {
+ if(!isset($fieldList['actions']['list'][$action])) continue;
+
+ $actionConfig = $fieldList['actions']['list'][$action];
+ $actionConfig['text'] = '';
+
+ if(!empty($actionConfig['url']['module']) && !empty($actionConfig['url']['method']))
+ {
+ $module = $actionConfig['url']['module'];
+ $method = $actionConfig['url']['method'];
+ $params = !empty($actionConfig['url']['params']) ? $actionConfig['url']['params'] : array();
+
+ $actionConfig['url'] = helper::createLink($module, $method, $params);
+ }
+
+ $fieldList['actions']['actionsMap'][$action] = $actionConfig;
+ }
+}
+
+/**
+ * Init row actions of a item.
+ *
+ * @param object $item
+ * @param string $actionMenu
+ * @param array $actionList
+ * @param object $model
+ * @access public
+ * @return bool
+ */
+function initItemActions(object &$item, string $actionMenu, array $actionList, object $model): bool
+{
+ global $app;
+ $module = $app->getModuleName();
+ $method = '';
+
+ $isClickable = false;
+ $actions = explode('|', $actionMenu);
+ foreach($actions as $action)
+ {
+ if(!isset($actionList[$action])) continue;
+
+ $actionConfig = $actionList[$action];
+ if(!empty($actionConfig['url']['module']) && $module != $actionConfig['url']['module'])
+ {
+ $module = $actionConfig['url']['module'];
+ $model = $app->control->loadModel($module);
+ }
+
+ $method = $action;
+ if(!empty($actionConfig['url']['method']) && $method != $actionConfig['url']['method']) $method = $actionConfig['url']['method'];
+
+ if(!method_exists($model, 'isClickable') || $model->isClickable($item, $method))
+ {
+ $isClickable = true;
+ break;
+ }
+ }
+
+ if(!$method || !common::hasPriv($module, $method)) return $isClickable;
+
+ $item->actions[] = array('name' => $action, 'disabled' => !$isClickable);
+
+ return $isClickable;
+}
diff --git a/lib/base/front/front.class.php b/lib/base/front/front.class.php
index 4dee58782e..297aff278e 100644
--- a/lib/base/front/front.class.php
+++ b/lib/base/front/front.class.php
@@ -1160,18 +1160,8 @@ EOT;
return $js;
}
- /**
- * 导出$config到js,因为js的createLink()方法需要获取config信息。
- * Export the config vars for createLink() js version.
- *
- * @static
- * @access public
- * @return void
- */
- static public function exportConfigVars()
+ static function getJSConfigVars()
{
- if(!function_exists('json_encode')) return false;
-
global $app, $config, $lang;
$defaultViewType = $app->getViewType();
$themeRoot = $app->getWebRoot() . 'theme/';
@@ -1180,7 +1170,7 @@ EOT;
$clientLang = $app->getClientLang();
$runMode = defined('RUN_MODE') ? RUN_MODE : '';
$requiredFields = '';
- if(isset($config->$moduleName->$methodName->requiredFields)) $requiredFields = str_replace(' ', '', $config->$moduleName->$methodName->requiredFields);
+ if(isset($config->$moduleName->$methodName->requiredFields)) $requiredFields = str_replace(' ', '', (string) $config->$moduleName->$methodName->requiredFields);
$jsConfig = new stdclass();
$jsConfig->webRoot = $config->webRoot;
@@ -1199,21 +1189,40 @@ EOT;
$jsConfig->clientLang = $clientLang;
$jsConfig->requiredFields = $requiredFields;
$jsConfig->router = $app->server->SCRIPT_NAME;
- $jsConfig->save = isset($lang->save) ? $lang->save : '';
+ $jsConfig->save = $lang->save ?? '';
$jsConfig->runMode = $runMode;
- $jsConfig->timeout = isset($config->timeout) ? $config->timeout : '';
- $jsConfig->pingInterval = isset($config->pingInterval) ? $config->pingInterval : '';
+ $jsConfig->timeout = $config->timeout ?? '';
+ $jsConfig->pingInterval = $config->pingInterval ?? '';
$jsConfig->onlybody = zget($_GET, 'onlybody', 'no');
$jsConfig->tabSession = $config->tabSession;
if($config->tabSession and helper::isWithTID()) $jsConfig->tid = zget($_GET, 'tid', '');
+ return $jsConfig;
+ }
+
+ /**
+ * 导出$config到js,因为js的createLink()方法需要获取config信息。
+ * Export the config vars for createLink() js version.
+ *
+ * @static
+ * @access public
+ * @return void
+ */
+ static public function exportConfigVars()
+ {
+ if(!function_exists('json_encode')) return false;
+
+ global $lang;
+
+ $jsConfig = static::getJSConfigVars();
+
$jsLang = new stdclass();
- $jsLang->submitting = isset($lang->loading) ? $lang->loading : '';
+ $jsLang->submitting = $lang->loading ?? '';
$jsLang->save = $jsConfig->save;
- $jsLang->expand = isset($lang->expand) ? $lang->expand : '';
- $jsLang->timeout = isset($lang->timeout) ? $lang->timeout : '';
- $jsLang->confirmDraft = isset($lang->confirmDraft) ? $lang->confirmDraft : '';
- $jsLang->resume = isset($lang->resume) ? $lang->resume : '';
+ $jsLang->expand = $lang->expand ?? '';
+ $jsLang->timeout = $lang->timeout ?? '';
+ $jsLang->confirmDraft = $lang->confirmDraft ?? '';
+ $jsLang->resume = $lang->resume ?? '';
$jsLang->program = zget($lang->program, 'common', '');
$jsLang->project = zget($lang->project, 'common', '');
$jsLang->product = zget($lang->product, 'common', '');
diff --git a/lib/trace/trace.class.php b/lib/trace/trace.class.php
new file mode 100644
index 0000000000..c142def963
--- /dev/null
+++ b/lib/trace/trace.class.php
@@ -0,0 +1,107 @@
+
+ * @package trace
+ * @link https://www.zentao.net
+ */
+
+class trace
+{
+ /**
+ * @var array
+ */
+ public $trace = array();
+
+ protected $app;
+
+ protected $dao;
+
+ public function __construct()
+ {
+ global $app, $dao;
+ $this->app = $app;
+ $this->dao = $dao;
+ }
+
+ /**
+ * 获取请求信息。
+ * Get request info.
+ *
+ * @return void
+ */
+ public function getRequestInfo()
+ {
+ $this->trace['request'] = array(
+ 'start' => date('Y-m-d H:i:s', (int)$this->app->startTime),
+ 'url' => $this->app->getURI(true),
+ 'protocol' => $this->app->server->server_protocol,
+ 'method' => $this->app->server->request_method,
+ 'timeUsed' => round(getTime() - $this->app->startTime, 4) * 1000,
+ 'memory' => round(memory_get_peak_usage() / 1024, 1),
+ 'querys' => count(dao::$querys),
+ 'caches' => count(dao::$cache),
+ 'files' => count(get_included_files()),
+ 'session' => session_id()
+ );
+ }
+
+ /**
+ * 获取请求加载的文件。
+ * Get request files.
+ *
+ * @return void
+ */
+ public function getRequestFiles()
+ {
+ $this->trace['files'] = get_included_files();
+ }
+
+ /**
+ * 获取请求的 SQL 语句。
+ * Get request SQLs.
+ *
+ * @return void
+ */
+ public function getRequestSqls()
+ {
+ $this->trace['sqlQuery'] = dao::$querys;
+ }
+
+ /**
+ * 获取请求的 SQL profiles。
+ * Get request SQL profiles.
+ *
+ * @return array
+ */
+ public function getSQLProfiles()
+ {
+ $profiling = $this->dao->dbh->query('SHOW PROFILES')->fetchAll(PDO::FETCH_ASSOC);
+
+ $this->trace['profiles'] = $profiling;
+ }
+
+ /**
+ * 生成请求 Trace。
+ * Generate request trace.
+ *
+ * @return array
+ */
+ public function getTrace()
+ {
+ $this->getRequestInfo();
+ $this->getRequestFiles();
+ $this->getRequestSqls();
+ $this->getSQLProfiles();
+ return $this->trace;
+ }
+
+ public function __toString(): string
+ {
+ return json_encode($this->getTrace());
+ }
+}
diff --git a/lib/zin/config.php b/lib/zin/config.php
new file mode 100644
index 0000000000..1c0be501e8
--- /dev/null
+++ b/lib/zin/config.php
@@ -0,0 +1,25 @@
+
+ * @package zin
+ * @version $Id
+ * @link https://www.zentao.net
+ */
+
+namespace zin;
+
+function loadConfig()
+{
+ global $app, $config;
+
+ $config->zin = new \stdClass();
+
+ $config->zin->lang = $app->getClientLang();
+ $config->zin->wgVer = isset($config->wgVer) ? $config->wgVer : '1';
+ $config->zin->wgVerMap = isset($config->wgVerMap) ? $config->wgVerMap : array();
+ $config->zin->zuiPath = isset($config->zuiPath) ? $config->zuiPath : ($app->getWebRoot() . 'js/zui3/');
+}
diff --git a/lib/zin/core/context.class.php b/lib/zin/core/context.class.php
new file mode 100644
index 0000000000..e9f8a719dc
--- /dev/null
+++ b/lib/zin/core/context.class.php
@@ -0,0 +1,169 @@
+
+ * @package zin
+ * @version $Id
+ * @link https://www.zentao.net
+ */
+
+namespace zin;
+
+require_once dirname(__DIR__) . DS . 'utils' . DS . 'dataset.class.php';
+require_once dirname(__DIR__) . DS . 'utils' . DS . 'flat.func.php';
+
+class context extends \zin\utils\dataset
+{
+ public function addImport()
+ {
+ return $this->addToList('import', func_get_args());
+ }
+
+ public function getImportList()
+ {
+ return $this->getList('import');
+ }
+
+ public function addCSS()
+ {
+ return $this->addToList('css', func_get_args());
+ }
+
+ public function getCSS()
+ {
+ return trim(implode("\n", $this->getList('css')));
+ }
+
+ public function addJS()
+ {
+ return $this->addToList('js', func_get_args());
+ }
+
+ public function addJSVar($name, $value)
+ {
+ return $this->addToList('jsVar', h::createJsVarCode($name, $value));
+ }
+
+ public function addWgWithEvents($wg)
+ {
+ $list = $this->getWgWithEventsList();
+ if(in_array($wg, $list)) return $this;
+ return $this->addToList('wgWithEvents', $wg);
+ }
+
+ public function getWgWithEventsList()
+ {
+ return $this->getList('wgWithEvents');
+ }
+
+ public function addJSCall()
+ {
+ $code = call_user_func_array('\zin\h::createJsCallCode', func_get_args());
+ return $this->addToList('jsCall', $code);
+ }
+
+ public function getEventsBindings()
+ {
+ $wgs = $this->getList('wgWithEvents');
+ $codes = [];
+ foreach($wgs as $wg)
+ {
+ if(!method_exists($wg, 'buildEvents')) continue;
+ $code = $wg->buildEvents();
+ if(!empty($code)) $codes[] = $code;
+ }
+ return $codes;
+ }
+
+ public function getJS()
+ {
+ $js = trim(implode("\n", array_merge($this->getList('jsVar'), $this->getList('js'), $this->getEventsBindings(), $this->getList('jsCall'))));
+ if(empty($js)) return '';
+
+ if(strpos($js, 'setTimeout') !== false) $js = 'function setTimeout(callback, time){return typeof window.registerTimer === "function" ? window.registerTimer(callback, time) : window.setTimeout(callback, time);}' . $js;
+ if(strpos($js, 'setInterval') !== false) $js = 'function setInterval(callback, time){return typeof window.registerTimer === "function" ? window.registerTimer(callback, time, "interval") : window.setInterval(callback, time);}' . $js;
+
+ $methods = array('onPageUnmount', 'beforePageUpdate', 'afterPageUpdate', 'onPageRender');
+ foreach($methods as $method)
+ {
+ if(strpos($js, $method) !== false) $js .= "if(typeof $method === 'function') window.$method = $method;";
+ }
+ return $js;
+ }
+
+ public static $map = array();
+
+ public static function js(/* string ...$code */)
+ {
+ $context = static::current();
+ call_user_func_array(array($context, 'addJS'), \zin\utils\flat(func_get_args()));
+ }
+
+ public static function jsCall(/* string ...$code */)
+ {
+ $context = static::current();
+ call_user_func_array(array($context, 'addJSCall'), func_get_args());
+ }
+
+
+ public static function jsVar($name, $value)
+ {
+ $context = static::current();
+ $context->addJSVar($name, $value);
+ }
+
+ public static function css(/* string ...$code */)
+ {
+ $context = static::current();
+ call_user_func_array(array($context, 'addCSS'), \zin\utils\flat(func_get_args()));
+ }
+
+ public static function import(/* string ...$files */)
+ {
+ $context = static::current();
+ call_user_func_array(array($context, 'addImport'), func_get_args());
+ }
+
+ /**
+ * Get current context.
+ *
+ * @access public
+ * @return context
+ */
+ public static function current(): context
+ {
+ if(empty(static::$map)) static::$map['current'] = new context(null);
+ return static::$map['current'];
+ }
+
+ /**
+ * Create widget context.
+ *
+ * @access public
+ * @param string $gid The widget gid.
+ * @return context
+ */
+ public static function create(string $gid): context
+ {
+ if(isset(static::$map[$gid])) return static::$map[$gid];
+ $context = new context();
+ static::$map[$gid] = $context;
+ return $context;
+ }
+
+ /**
+ * Destroy widget context.
+ *
+ * @access public
+ * @param string $gid The widget gid.
+ * @return void
+ */
+ public static function destroy(string $gid = null): void
+ {
+ if($gid === null) unset(static::$map['current']);
+ elseif(isset(static::$map[$gid])) unset(static::$map[$gid]);
+ }
+}
diff --git a/lib/zin/core/context.func.php b/lib/zin/core/context.func.php
new file mode 100644
index 0000000000..aec0a86f17
--- /dev/null
+++ b/lib/zin/core/context.func.php
@@ -0,0 +1,40 @@
+
+ * @package zin
+ * @version $Id
+ * @link https://www.zentao.net
+ */
+
+namespace zin;
+
+require_once __DIR__ . DS . 'context.class.php';
+
+function js()
+{
+ call_user_func_array('\zin\context::js', func_get_args());
+}
+
+function jsCall()
+{
+ call_user_func_array('\zin\context::jsCall', func_get_args());
+}
+
+function jsVar()
+{
+ call_user_func_array('\zin\context::jsVar', func_get_args());
+}
+
+function css()
+{
+ call_user_func_array('\zin\context::css', func_get_args());
+}
+
+function import()
+{
+ call_user_func_array('\zin\context::import', func_get_args());
+}
diff --git a/lib/zin/core/data.func.php b/lib/zin/core/data.func.php
new file mode 100644
index 0000000000..14fd179a70
--- /dev/null
+++ b/lib/zin/core/data.func.php
@@ -0,0 +1,53 @@
+
+ * @package zin
+ * @version $Id
+ * @link https://www.zentao.net
+ */
+
+namespace zin;
+
+function setPageData($name, $value)
+{
+ if(is_array($value) && empty($name))
+ {
+ foreach ($value as $key => $val) zin::setData($key, $val);
+ return;
+ }
+ zin::setData($name, $value);
+}
+
+function getPageData($name)
+{
+ if(is_array($name))
+ {
+ $values = array();
+ foreach($name as $propName)
+ {
+ $values[] = zin::getData($propName);
+ }
+ return $values;
+ }
+
+ return zin::getData($name);
+}
+
+function data(...$args)
+{
+ if(count($args) >= 2) return setPageData($args[0], $args[1]);
+ return getPageData($args[0]);
+}
+
+/**
+ * Set page data
+ * @deprecated Use data($name, $value) insteadOf useData($name, $value)
+ */
+function useData($name, $value)
+{
+ return setPageData($name, $value);
+}
diff --git a/lib/zin/core/directive.class.php b/lib/zin/core/directive.class.php
new file mode 100644
index 0000000000..0871efe0f1
--- /dev/null
+++ b/lib/zin/core/directive.class.php
@@ -0,0 +1,66 @@
+
+ * @package zin
+ * @version $Id
+ * @link https://www.zentao.net
+ */
+
+namespace zin;
+
+require_once __DIR__ . DS . 'zin.class.php';
+
+class directive
+{
+ public string $type;
+
+ public mixed $data;
+
+ public ?array $options;
+
+ public ?wg $parent = null;
+
+ /**
+ * Construct a directive object
+ * @param string $type
+ * @param mixed $data
+ * @param array $options
+ * @access public
+ */
+ public function __construct(string $type, mixed $data, ?array $options = null)
+ {
+ $this->type = $type;
+ $this->data = $data;
+ $this->options = $options;
+
+ zin::renderInGlobal($this);
+ }
+
+ public function __debugInfo(): array
+ {
+ return array(
+ 'type' => $this->type,
+ 'data' => $this->data,
+ 'options' => $this->options
+ );
+ }
+
+ public static function is(mixed $item, ?string $type = null): bool
+ {
+ return $item instanceof directive && ($type === null || $item->type === $type);
+ }
+}
+
+function directive($type, $data, $options = null): directive
+{
+ return new directive($type, $data, $options);
+}
+
+function isDirective(mixed $item, ?string $type = null): bool
+{
+ return directive::is($item, $type);
+}
diff --git a/lib/zin/core/dom.class.php b/lib/zin/core/dom.class.php
new file mode 100644
index 0000000000..8218c53135
--- /dev/null
+++ b/lib/zin/core/dom.class.php
@@ -0,0 +1,395 @@
+
+ * @package zin
+ * @version $Id
+ * @link https://www.zentao.net
+ */
+
+namespace zin;
+
+use stdClass;
+
+require_once dirname(__DIR__) . DS . 'utils' . DS . 'deep.func.php';
+require_once __DIR__ . DS . 'selector.func.php';
+
+class dom
+{
+ /**
+ * @var wg
+ */
+ public $wg;
+
+ public $children = array();
+
+ public $selectors = null;
+
+ public $renderInner = false;
+
+ public $renderType;
+
+ public $dataGetters = null;
+
+ public $dataCommands;
+
+ public $buildList = null;
+
+ public $buildListInner = false;
+
+ /**
+ * Construct the dom object.
+ *
+ * @param wg $wg
+ * @param array $children
+ * @param array|string|object $selectors
+ * @access public
+ */
+ public function __construct($wg, $children, $selectors = null, $renderType = null, $dataCommands = null)
+ {
+ $this->wg = $wg;
+ $this->renderType = $renderType;
+
+ $this->add($children);
+ $this->addSelectors($selectors);
+ $this->addDataCommands($dataCommands);
+ }
+
+ public function __debugInfo()
+ {
+ return array(
+ 'gid' => $this->wg->gid,
+ 'type' => $this->wg->type(),
+ 'count' => count($this->children),
+ 'renderInner' => $this->renderInner,
+ 'renderType' => $this->renderType,
+ 'dataCommands' => $this->dataCommands,
+ 'selectors' => stringifyWgSelectors($this->selectors)
+ );
+ }
+
+ public function add($children)
+ {
+ if(empty($children)) return;
+
+ if(!is_array($children)) $children = [$children];
+ foreach($children as $child)
+ {
+ if(is_array($child)) $this->add($child);
+ else $this->children[] = $child;
+ }
+ }
+
+ public function addDataCommands($commands)
+ {
+ if(empty($commands)) return;
+
+ if(is_string($commands))
+ {
+ $commandList = explode(',', $commands);
+ $commands = array();
+ foreach($commandList as $command)
+ {
+ $parts = explode(':', $command, 2);
+ $commands[$parts[0]] = count($parts) > 1 ? $parts[1] : $parts[0];
+ }
+ }
+
+ if($this->dataCommands === null) $this->dataCommands = array();
+ $index = 0;
+ foreach($commands as $key => $command)
+ {
+ $this->dataCommands[$index == $key ? $command : $key] = $command;
+ $index++;
+ }
+ }
+
+ public function addSelectors($selectors)
+ {
+ if(empty($selectors)) return;
+
+ if($this->selectors === null) $this->selectors = array();
+ $selectors = parseWgSelectors($selectors);
+ foreach($selectors as $selector)
+ {
+ if(isset($selector->command) && !empty($selector->command)) $this->addDataCommands([$selector->tag => $selector->command]);
+ else $this->selectors[] = $selector;
+ }
+ }
+
+ public function isMatch($selector)
+ {
+ return $this->wg->isMatch($selector);
+ }
+
+ /**
+ * Build the children dom list.
+ * @access public
+ * @return array
+ */
+ public function build()
+ {
+ if($this->buildList !== null && $this->buildListInner === $this->renderInner) return $this->buildList;
+
+ if(empty($this->selectors) && !empty($this->dataCommands))
+ {
+ $this->buildList = array();
+ return $this->buildList;
+ }
+
+ $list = array();
+ $children = $this->renderInner ? $this->wg->children() : $this->children;
+
+ if(empty($children)) return $list;
+
+ foreach($children as $child) $list[] = ($child instanceof wg) ? $child->buildDom() : $child;
+
+ if(!empty($this->selectors)) $list = static::filter($list, $this->selectors);
+
+ $this->buildList = $list;
+ $this->buildListInner = $this->renderInner;
+ return $list;
+ }
+
+ public function render()
+ {
+ if($this->renderType === 'json') return $this->renderJson();
+ if($this->renderType === 'list') return $this->renderList();
+ return $this->renderHtml();
+ }
+
+ /**
+ * Render dom to json object.
+ *
+ * @access public
+ * @return object
+ */
+ public function renderJson(): object
+ {
+ $list = $this->build();
+ $output = new stdClass();
+ foreach($list as $name => $item)
+ {
+ $output->$name = static::renderItemToJson($item);
+ }
+
+ if(!empty($this->dataCommands))
+ {
+ $data = array();
+ foreach($this->dataCommands as $name => $command)
+ {
+ $data[$name] = data($command);
+ }
+ $output->data = $data;
+ }
+
+ return $output;
+ }
+
+ /**
+ * Render dom to html string.
+ *
+ * @access public
+ * @return string
+ */
+ public function renderHtml(): string
+ {
+ $list = $this->build();
+ if(empty($list)) return '';
+
+ $output = array();
+ foreach($list as $item)
+ {
+ $result = static::renderItemToHtml($item);
+ if(!is_string($result)) $result = json_encode($result);
+ $output[] = $result;
+ }
+ return implode('', $output);
+ }
+
+ /**
+ * Render dom to list by given selector.
+ *
+ * @access public
+ * @return array
+ */
+ public function renderList(): array
+ {
+ $list = $this->build();
+ $output = array();
+ foreach($list as $name => $item)
+ {
+ if(is_array($item) && count($item) === 1) $item = $item[0];
+ $renderType = $item instanceof dom ? $item->renderType : 'html';
+ if(empty($renderType)) $renderType = 'html';
+ $output[] = array('name' => $name, 'data' => static::renderDomItem($item, $renderType), 'type' => $renderType);
+ }
+
+ if(!empty($this->dataCommands))
+ {
+ foreach($this->dataCommands as $name => $command)
+ {
+ $output[] = array('name' => $name, 'data' => data($command), 'type' => 'command');
+ }
+ }
+
+ return $output;
+ }
+
+ public static function renderDomItem($item, $defaultType = 'html')
+ {
+ if($item instanceof dom)
+ {
+ $renderType = $item->renderType;
+ if(empty($renderType)) $renderType = $defaultType;
+ if($renderType === 'json') return dom::renderItemToJson($item);
+ return dom::renderItemToHtml($item->build());
+ }
+
+ $renderType = $defaultType;
+ if($renderType === 'json') return static::renderItemToJson($item);
+ return static::renderItemToHtml($item);
+ }
+
+ public static function renderItemToJson($item)
+ {
+ if($item === null || is_bool($item)) return null;
+
+ if(is_array($item))
+ {
+ $output = array();
+ foreach($item as $subItem) $output[] = static::renderItemToJson($subItem);
+ return $output;
+ }
+
+ if($item instanceof dom)
+ {
+ $json = $item->wg->toJsonData();
+ if(!empty($item->dataGetters))
+ {
+ $output = array();
+ $props = explode(',', $item->dataGetters);
+ foreach($props as $prop)
+ {
+ $prop = trim($prop);
+ if(empty($prop)) continue;
+
+ $parts = explode(':', $prop, 2);
+ $name = $parts[0];
+ $namePath = count($parts) > 1 ? $parts[1] : $parts[0];
+ $output[$name] = \zin\utils\deepGet($json, $namePath);
+ }
+ return $output;
+ }
+ return $json;
+ }
+ if($item instanceof wg) return dom::renderDomItem($item, 'json');
+ if(is_string($item)) return $item;
+
+ if(is_object($item))
+ {
+ if(isDirective($item, 'html')) return $item->data;
+ if(isDirective($item, 'text')) return htmlspecialchars($item->data);
+ if(isset($item->html)) return $item->html;
+ if(isset($item->text)) return htmlspecialchars($item->text);
+ if(method_exists($item, 'render')) return $item->render();
+ }
+
+ return strval($item);
+ }
+
+ public static function renderItemToHtml($item)
+ {
+ if($item === null || is_bool($item)) return '';
+
+ if(is_array($item))
+ {
+ $output = array();
+ foreach($item as $subItem) $output[] = static::renderItemToHtml($subItem);
+ return implode('', $output);
+ }
+
+ if($item instanceof dom) return dom::renderItemToHtml($item->build());
+ if($item instanceof wg) return $item->render();
+ if(is_string($item)) return $item;
+
+ if(is_object($item))
+ {
+ if(isDirective($item, 'html')) return $item->data;
+ if(isDirective($item, 'text')) return htmlspecialchars($item->data);
+ if(isset($item->html)) return $item->html;
+ if(isset($item->text)) return htmlspecialchars($item->text);
+ if(method_exists($item, 'render')) return $item->render();
+ }
+
+ return strval($item);
+ }
+
+ /**
+ * Filter the dom list with selector.
+ *
+ * @param array $list
+ * @param object $selector
+ * @param array $filteredList
+ * @access public
+ * @return array
+ */
+ public static function filterList(&$list, $selector, &$filteredList)
+ {
+ if(empty($list) || empty($selector)) return [];
+
+ $results = array();
+ foreach($list as $item)
+ {
+ if(!($item instanceof dom) || in_array($item->wg->gid, $filteredList)) continue;
+
+ if($item->wg->isMatch($selector))
+ {
+ $item->selector = $selector;
+ $item->renderInner = isset($selector->inner) ? $selector->inner : false;
+ $item->renderType = isset($selector->type) ? $selector->type : null;
+ $item->dataGetters = isset($selector->data) ? $selector->data : null;
+
+ $filteredList[] = $item->wg->gid;
+ $results[] = $item;
+ }
+ else
+ {
+ $children = $item->build();
+ if(!empty($children))
+ {
+ $subResults = static::filterList($children, $selector, $filteredList);
+ foreach($subResults as $subItem) $results[] = $subItem;
+ }
+ }
+ if($selector->first && !empty($results)) break;
+ }
+ return $results;
+ }
+
+ /**
+ * Filter the dom list with selectors.
+ *
+ * @param array $domList
+ * @param array $selectors
+ * @access public
+ * @return array
+ */
+ public static function filter(&$domList, $selectors)
+ {
+ if(empty($selectors)) return $domList;
+
+ $list = array();
+ $filteredList = array();
+ foreach($selectors as $selector)
+ {
+ $results = static::filterList($domList, $selector, $filteredList);
+ $list[$selector->name] = $results;
+ }
+
+ return $list;
+ }
+}
diff --git a/lib/zin/core/h.class.php b/lib/zin/core/h.class.php
new file mode 100644
index 0000000000..44f440d755
--- /dev/null
+++ b/lib/zin/core/h.class.php
@@ -0,0 +1,300 @@
+
+ * @package zin
+ * @version $Id
+ * @link https://www.zentao.net
+ */
+
+namespace zin;
+
+require_once dirname(__DIR__) . DS . 'utils' . DS . 'flat.func.php';
+require_once __DIR__ . DS . 'wg.class.php';
+require_once __DIR__ . DS . 'wg.func.php';
+
+class h extends wg
+{
+ protected static array $defineProps = array(
+ 'tagName: string',
+ 'selfClose?: bool'
+ );
+
+ public function getTagName(): string
+ {
+ return $this->props->get('tagName');
+ }
+
+ public function isDomElement(): bool
+ {
+ return true;
+ }
+
+ public function isSelfClose()
+ {
+ $selfClose = $this->props->get('selfClose');
+ if($selfClose !== null) return $selfClose;
+
+ return in_array($this->getTagName(), static::$selfCloseTags);
+ }
+
+ public function build(): array
+ {
+ if($this->isSelfClose()) return array($this->buildSelfCloseTag());
+
+ return array($this->buildTagBegin(), parent::build(), $this->buildTagEnd());
+ }
+
+ public function toJsonData(): array
+ {
+ $data = parent::toJsonData();
+ $data['type'] = 'h:' . $this->getTagName();
+ return $data;
+ }
+
+ public function type(): string
+ {
+ return $this->getTagName();
+ }
+
+ public function shortType(): string
+ {
+ return $this->getTagName();
+ }
+
+ protected function getPropsStr(): string
+ {
+ $propStr = $this->props->toStr(array_keys(static::definedPropsList()));
+ if($this->props->hasEvent() && empty($this->id()) && $this->getTagName() !== 'html') $propStr = "$propStr id='$this->gid'";
+ return empty($propStr) ? '' : " $propStr";
+ }
+
+ protected function buildSelfCloseTag(): string
+ {
+ $tagName = $this->getTagName();
+ $propStr = $this->getPropsStr();
+ return "<$tagName$propStr />";
+ }
+
+ protected function buildTagBegin(): string
+ {
+ $tagName = $this->getTagName();
+ $propStr = $this->getPropsStr();
+ return "<$tagName$propStr>";
+ }
+
+ protected function buildTagEnd(): string
+ {
+ $tagName = $this->getTagName();
+ return "$tagName>";
+ }
+
+ public static function create(): h
+ {
+ $args = func_get_args();
+ $tagName = array_shift($args);
+ return new h(is_string($tagName) ? set('tagName', $tagName) : $tagName, $args);
+ }
+
+ public static function __callStatic(string $tagName, array $args): h
+ {
+ return new h(set('tagName', $tagName), $args);
+ }
+
+ public static function a(): h
+ {
+ $a = static::create('a', func_get_args());
+ if($a->prop('target') === '_blank' && !$a->hasProp('rel')) $a->prop('rel', 'noopener noreferrer');
+ return $a;
+ }
+
+ public static function button()
+ {
+ return static::create('button', set('type', 'button'), func_get_args());
+ }
+
+ public static function input()
+ {
+ return static::create('input', set('type', 'text'), func_get_args());
+ }
+
+ public static function formHidden($name, $value, ...$args)
+ {
+ return static::create('input', set('type', 'hidden'), set::name($name), set::value($value), $args);
+ }
+
+ public static function checkbox()
+ {
+ return static::create('input', set('type', 'checkbox'), func_get_args());
+ }
+
+ public static function radio()
+ {
+ return static::create('input', set('type', 'radio'), func_get_args());
+ }
+
+ public static function date()
+ {
+ return static::create('input', set('type', 'date'), func_get_args());
+ }
+
+ public static function file()
+ {
+ return static::create('input', set('type', 'file'), func_get_args());
+ }
+
+ public static function textarea(...$args)
+ {
+ list($code, $args) = h::splitRawCode($args);
+ return static::create('textarea', $code, ...$args);
+ }
+
+ /**
+ * create a html comment tag
+ *
+ * @access public
+ * @param string $comment
+ * @return directive
+ */
+ public static function comment(string $comment): directive
+ {
+ return html("");
+ }
+
+ public static function importJs($src, ...$args)
+ {
+ return static::create('script', set('src', $src), ...$args);
+ }
+
+ public static function importCss($src, ...$args)
+ {
+ return static::create('link', set('rel', 'stylesheet'), set('href', $src), ...$args);
+ }
+
+ public static function import($file, $type = null, ...$args)
+ {
+ if(is_array($file))
+ {
+ $children = array();
+ foreach($file as $file)
+ {
+ $children[] = static::import($file, $type);
+ }
+ return $children;
+ }
+ if($type === null) $type = pathinfo($file, PATHINFO_EXTENSION);
+ if($type == 'js' || $type == 'cjs') return static::importJs($file, ...$args);
+ if($type == 'css') return static::importCss($file, ...$args);
+ return null;
+ }
+
+ public static function css(...$args)
+ {
+ list($code, $args) = h::splitRawCode($args);
+ if(empty($code)) return null;
+ return static::create('style', html(implode("\n", $code)), ...$args);
+ }
+
+ public static function globalJS(...$args)
+ {
+ list($code, $args) = h::splitRawCode($args);
+ if(empty($code)) return null;
+ return static::create('script', html(implode("\n", $code)), ...$args);
+ }
+
+ public static function js(...$args)
+ {
+
+ list($code, $args) = h::splitRawCode($args);
+ if(empty($code)) return null;
+ return static::create('script', html(h::createJsScopeCode($code)), ...$args);
+ }
+
+ public static function jsVar($name, $value, ...$directives)
+ {
+ return static::js(static::createJsVarCode($name, $value), ...$directives);
+ }
+
+ public static function jsCall($funcName, ...$args)
+ {
+ $funcArgs = [];
+ $directives = [];
+ foreach($args as $arg)
+ {
+ if(isDirective($arg)) $directives[] = $arg;
+ else $funcArgs[] = $arg;
+ }
+ $code = static::createJsCallCode($funcName, $funcArgs);
+ return static::js($code, ...$directives);
+ }
+
+ public static function createJsCallCode($func, $args)
+ {
+ foreach($args as $index => $arg)
+ {
+ $args[$index] = h::encodeJsonWithRawJs($arg, JSON_UNESCAPED_UNICODE);
+ }
+
+ if($func[0] === '~')
+ {
+ $func = substr($func, 1);
+ return "$(() => $func(" . implode(',', $args) . "));";
+ }
+ return $func . '(' . implode(',', $args) . ');';
+ }
+
+ public static function createJsVarCode($name, $value)
+ {
+ $vars = is_string($name) ? array($name => $value) : $name;
+ $jsCode = '';
+ foreach($vars as $var => $val)
+ {
+ if(empty($var)) continue;
+
+ $val = h::encodeJsonWithRawJs($val);
+
+ if(str_starts_with($var, 'window.')) $jsCode .= "$var=" . $val . ';';
+ elseif(str_starts_with($var, '+')) $jsCode .= 'let ' . substr($var, 1) . '=' . $val . ';';
+ else $jsCode .= "const $var=" . $val . ';';
+ }
+ return $jsCode;
+ }
+
+ public static function createJsScopeCode(string|array $codes): string
+ {
+ if(is_array($codes)) $codes = implode("\n", $codes);
+ return ";(function(){\n$codes\n}());";
+ }
+
+ public static function jsRaw(): string
+ {
+ return 'RAWJS<' . implode("\n", func_get_args()) . '>RAWJS';
+ }
+
+ protected static function encodeJsonWithRawJs($data)
+ {
+ $json = json_encode($data, JSON_UNESCAPED_UNICODE);
+ if(empty($json) && (is_array($data) || is_object($data))) return '[]';
+
+ $json = str_replace('"RAWJS<', '', str_replace('>RAWJS"', '', $json));
+ return $json;
+ }
+
+ protected static function splitRawCode($children)
+ {
+ $children = \zin\utils\flat($children);
+ $code = [];
+ $args = [];
+ foreach($children as $key => $child)
+ {
+ if(is_string($child)) $code[] = $child;
+ else $args[] = $child;
+ }
+ return [$code, $args];
+ }
+
+ public static $selfCloseTags = array('area', 'base', 'br', 'col', 'command', 'embed', 'hr', 'img', 'input', 'keygen', 'link', 'meta', 'param', 'source', 'track', 'wbr');
+}
diff --git a/lib/zin/core/h.func.php b/lib/zin/core/h.func.php
new file mode 100644
index 0000000000..ef751faf45
--- /dev/null
+++ b/lib/zin/core/h.func.php
@@ -0,0 +1,47 @@
+
+ * @package zin
+ * @version $Id
+ * @link https://www.zentao.net
+ */
+
+namespace zin;
+
+require_once __DIR__ . DS . 'h.class.php';
+require_once __DIR__ . DS . 'item.class.php';
+require_once __DIR__ . DS . 'wg.func.php';
+require_once __DIR__ . DS . 'set.class.php';
+require_once __DIR__ . DS . 'to.class.php';
+require_once __DIR__ . DS . 'data.func.php';
+require_once __DIR__ . DS . 'on.class.php';
+
+function h(): h {return call_user_func_array('\zin\h::create', func_get_args());}
+
+function div(): h {return call_user_func_array('\zin\h::div', func_get_args());}
+function span(): h {return call_user_func_array('\zin\h::span', func_get_args());}
+function code(): h {return call_user_func_array('\zin\h::code', func_get_args());}
+function canvas(): h {return call_user_func_array('\zin\h::canvas', func_get_args());}
+function br(): h {return call_user_func_array('\zin\h::br', func_get_args());}
+function a(): h {return call_user_func_array('\zin\h::a', func_get_args());}
+function p(): h {return call_user_func_array('\zin\h::p', func_get_args());}
+function img(): h {return call_user_func_array('\zin\h::img', func_get_args());}
+function button(): h {return call_user_func_array('\zin\h::button', func_get_args());}
+function h1(): h {return call_user_func_array('\zin\h::h1', func_get_args());}
+function h2(): h {return call_user_func_array('\zin\h::h2', func_get_args());}
+function h3(): h {return call_user_func_array('\zin\h::h3', func_get_args());}
+function h4(): h {return call_user_func_array('\zin\h::h4', func_get_args());}
+function h5(): h {return call_user_func_array('\zin\h::h5', func_get_args());}
+function h6(): h {return call_user_func_array('\zin\h::h6', func_get_args());}
+function ul(): h {return call_user_func_array('\zin\h::ul', func_get_args());}
+function li(): h {return call_user_func_array('\zin\h::li', func_get_args());}
+function template(): h {return call_user_func_array('\zin\h::template', func_get_args());}
+function formHidden(): h {return call_user_func_array('\zin\h::formHidden', func_get_args());}
+function fieldset(): h {return call_user_func_array('\zin\h::fieldset', func_get_args());}
+function legend(): h {return call_user_func_array('\zin\h::legend', func_get_args());}
+
+function jsRaw(): string {return call_user_func_array('\zin\h::jsRaw', func_get_args());}
diff --git a/lib/zin/core/item.class.php b/lib/zin/core/item.class.php
new file mode 100644
index 0000000000..a7319de451
--- /dev/null
+++ b/lib/zin/core/item.class.php
@@ -0,0 +1,33 @@
+
+ * @package zin
+ * @version $Id
+ * @link https://www.zentao.net
+ */
+
+namespace zin;
+
+require_once __DIR__ . DS . 'wg.class.php';
+require_once __DIR__ . DS . 'wg.func.php';
+
+class item extends wg
+{
+ public function build(): wg
+ {
+ if($this->parent instanceof wg && method_exists($this->parent, 'onBuildItem'))
+ {
+ return call_user_func(array($this->parent, 'onBuildItem'), $this);
+ }
+ return parent::build();
+ }
+}
+
+function item()
+{
+ return new item(func_get_args());
+}
diff --git a/lib/zin/core/on.class.php b/lib/zin/core/on.class.php
new file mode 100644
index 0000000000..b07a15770f
--- /dev/null
+++ b/lib/zin/core/on.class.php
@@ -0,0 +1,24 @@
+
+ * @package zin
+ * @version $Id
+ * @link https://www.zentao.net
+ */
+
+namespace zin;
+
+require_once __DIR__ . DS . 'wg.func.php';
+
+class on
+{
+ public static function __callStatic($name, $args)
+ {
+ list($callback, $options) = array_merge($args, array(null));
+ return on($name, $callback, $options);
+ }
+}
diff --git a/lib/zin/core/portal.class.php b/lib/zin/core/portal.class.php
new file mode 100644
index 0000000000..11cefe2157
--- /dev/null
+++ b/lib/zin/core/portal.class.php
@@ -0,0 +1,27 @@
+
+ * @package zin
+ * @version $Id
+ * @link https://www.zentao.net
+ */
+
+namespace zin;
+
+require_once __DIR__ . DS . 'wg.class.php';
+
+class portal extends wg
+{
+ protected static array $defineProps = array(
+ 'target:string'
+ );
+
+ public static function __callStatic($name, $args)
+ {
+ return new portal(set('target', $name), $args);
+ }
+}
diff --git a/lib/zin/core/props.class.php b/lib/zin/core/props.class.php
new file mode 100644
index 0000000000..bd8478601a
--- /dev/null
+++ b/lib/zin/core/props.class.php
@@ -0,0 +1,284 @@
+
+ * @package zin
+ * @version $Id
+ * @link https://www.zentao.net
+ */
+
+namespace zin;
+
+use zin\utils\classlist;
+use zin\utils\style;
+
+require_once dirname(__DIR__) . DS . 'utils' . DS . 'dataset.class.php';
+require_once dirname(__DIR__) . DS . 'utils' . DS . 'classlist.class.php';
+require_once dirname(__DIR__) . DS . 'utils' . DS . 'style.class.php';
+
+/**
+ * Manage properties for html element and widgets
+ */
+class props extends \zin\utils\dataset
+{
+ /**
+ * Style property
+ *
+ * @access public
+ * @var style
+ */
+ public style $style;
+
+ /**
+ * Class property
+ *
+ * @access public
+ * @var classlist
+ */
+ public classlist $class;
+
+ public static array $booleanAttrs = array('allowfullscreen', 'async', 'autofocus', 'autoplay', 'checked', 'controls', 'default', 'defer', 'disabled', 'formnovalidate', 'inert', 'ismap', 'itemscope', 'loop', 'multiple', 'muted', 'nomodule', 'novalidate', 'open', 'playsinline', 'readonly', 'required', 'reversed', 'selected');
+
+ /**
+ * Create properties instance
+ *
+ * @access public
+ * @param array $props - Properties list array
+ */
+ public function __construct(?array $props = null)
+ {
+ $this->style = new \zin\utils\style();
+ $this->class = new \zin\utils\classlist();
+
+ parent::__construct($props);
+ }
+
+ /**
+ * Method for sub class to modify value on setting it
+ *
+ * @access public
+ * @param string $prop - Property name or properties list
+ * @param mixed $value - Property value
+ */
+ protected function setVal(string $prop, mixed $value): props
+ {
+ if($prop === 'class' || $prop === '.') $this->class->set($value);
+ elseif($prop === 'style' || $prop === '~') $this->style->set($value);
+ elseif(str_starts_with($prop, '~')) $this->style->set(substr($prop, 1), $value);
+ elseif($prop === '--') $this->style->cssVar($value);
+ elseif(str_starts_with($prop, '--')) $this->style->cssVar(substr($prop, 2), $value);
+ elseif($prop === '!') $this->hx($value);
+ elseif(str_starts_with($prop, '!')) $this->hx(substr($prop, 1), $value);
+ elseif(str_starts_with($prop, ':')) $this->set('data-' . substr($prop, 1), $value);
+ elseif($prop === '@') $this->bindEvent($value);
+ elseif(str_starts_with($prop, '@')) $this->bindEvent(substr($prop, 1), $value);
+ else parent::setVal($prop, $value);
+ return $this;
+ }
+
+ protected function getVal(string $prop): mixed
+ {
+ if($prop === 'class' || $prop === '.')
+ {
+ if(!$this->class->count()) return null;
+ return $this->class->toStr();
+ }
+ if($prop === 'style' || $prop === '~')
+ {
+ if(!$this->style->count(true)) return null;
+ return $this->style->toStr();
+ }
+ return parent::getVal($prop);
+ }
+
+ /**
+ * @param string|string[] $name
+ * @param mixed $value
+ */
+ public function reset(array|string $name, mixed $value = null)
+ {
+ if(is_array($name))
+ {
+ foreach($name as $n) $this->reset($n);
+ return;
+ }
+ if($name === 'class') return $this->class->clear();
+ if($name === 'style') return $this->style->clear();
+
+ $this->remove($name);
+ if($value) $this->setVal($name, $value);
+ }
+
+ public function bindEvent($name, $callback = null)
+ {
+ if(is_array($name))
+ {
+ foreach($name as $key => $value) $this->bindEvent($key, $value);
+ return;
+ }
+
+ $events = parent::getVal("@$name") ?? [];
+ if(is_array($callback)) $events = array_merge($events, $callback);
+ else $events[] = $callback;
+
+ parent::setVal("@$name", $events);
+ }
+
+ public function events(): array
+ {
+ $events = array();
+ foreach($this->data as $name => $value)
+ {
+ if(str_starts_with($name, '@')) $events[substr($name, 1)] = $value;
+ }
+
+ return $events;
+ }
+
+ public function hasEvent(): bool
+ {
+ foreach($this->data as $name => $value)
+ {
+ if(str_starts_with($name, '@')) return true;
+ }
+
+ return false;
+ }
+
+ public function hx(array|string $name, ?string $value = null)
+ {
+ if(is_array($name))
+ {
+ foreach($name as $key => $val) $this->set("hx-$key", $val);
+ return;
+ }
+
+ $this->set("hx-$name", $value);
+ }
+
+ /**
+ * Convert props to html string
+ *
+ * Example:
+ *
+ * // Properties data map:
+ * $map = array(
+ * 'id' => 'sayHelloBtn',
+ * 'data-title' => 'Say "Hello"!',
+ * 'data-content' => null,
+ * 'data-show' => true,
+ * );
+ * // Output string: id="sayHelloBtn" data-title="Say "Hello"!" data-show="true"
+ *
+ * @access public
+ */
+ public function toStr(array|string $skipProps = array()): string
+ {
+ if(is_string($skipProps)) $skipProps = explode(',', $skipProps);
+
+ $pairs = array();
+
+ if($this->class->count()) $pairs[] = 'class="' . $this->class->toStr() . '"';
+ if($this->style->count(true)) $pairs[] = 'style="' . $this->style->toStr() . '"';
+
+ foreach($this->data as $name => $value)
+ {
+ /* Handle boolean attributes */
+ if(in_array($name, static::$booleanAttrs)) $value = $value ? true : null;
+
+ /* Skip any null value or events setting */
+ if($value === null || in_array($name, $skipProps) || $name[0] === '@') continue;
+
+ /* Convert non-string to json */
+ if($value === true && !str_starts_with($name, 'data-'))
+ {
+ $pairs[] = $name;
+ }
+ else
+ {
+ if(!is_string($value)) $value = json_encode($value);
+
+ $pairs[] = $name . '="' . htmlspecialchars($value) . '"';
+ }
+ }
+
+ return implode(' ', $pairs);
+ }
+
+ public function toJsonData(bool $skipEvents = false): array
+ {
+ $data = $this->data;
+ if(!empty($this->style->data)) $data['style'] = $this->style->data;
+ if(!empty($this->class->list)) $data['class'] = $this->class->toStr();
+
+ if($skipEvents)
+ {
+ foreach($data as $name => $value)
+ {
+ if(str_starts_with($name, '@')) unset($data[$name]);
+ }
+ }
+ return $data;
+ }
+
+ public function skip(array|string $skipProps = array(), bool $skipFalse = false): array
+ {
+ if(is_string($skipProps)) $skipProps = explode(',', $skipProps);
+
+ $data = $this->toJsonData();
+ foreach($data as $name => $value)
+ {
+ if($value === null || $name[0] === '@' || in_array($name, $skipProps)) unset($data[$name]);
+ if($skipFalse && $value === false) unset($data[$name]);
+ }
+
+ return $data;
+ }
+
+ public function split(array|string $firstListProps = array()): array
+ {
+ if(is_string($firstListProps)) $firstListProps = explode(',', $firstListProps);
+
+ $data = $this->toJsonData();
+ $firstList = array();
+ $restList = array();
+ foreach($data as $name => $value)
+ {
+ if($value === null || $name[0] === '@') continue;
+ if(in_array($name, $firstListProps)) $firstList[$name] = $value;
+ else $restList[$name] = $value;
+ }
+
+ return array($firstList, $restList);
+ }
+
+ public function pick(array|string $pickProps = array()): array
+ {
+ if(is_string($pickProps)) $pickProps = explode(',', $pickProps);
+
+ $data = $this->toJsonData();
+ foreach($data as $name => $value)
+ {
+ if($value === null || !in_array($name, $pickProps)) unset($data[$name]);
+ }
+
+ return $data;
+ }
+
+ /**
+ * Clone a new instance
+ *
+ * @access public
+ * @return props
+ */
+ public function clone(): props
+ {
+ $props = new props($this->data);
+ $props->style = clone $this->style;
+ $props->class = clone $this->class;
+ return $props;
+ }
+}
diff --git a/lib/zin/core/rawcontent.class.php b/lib/zin/core/rawcontent.class.php
new file mode 100644
index 0000000000..023a73f211
--- /dev/null
+++ b/lib/zin/core/rawcontent.class.php
@@ -0,0 +1,23 @@
+
+ * @package zin
+ * @version $Id
+ * @link https://www.zentao.net
+ */
+
+namespace zin;
+
+require_once __DIR__ . DS . 'wg.class.php';
+
+class rawContent extends wg
+{
+ protected function build(): directive
+ {
+ return h::comment('{{RAW_CONTENT}}');
+ }
+}
diff --git a/lib/zin/core/render.func.php b/lib/zin/core/render.func.php
new file mode 100644
index 0000000000..95499dfdbf
--- /dev/null
+++ b/lib/zin/core/render.func.php
@@ -0,0 +1,60 @@
+
+ * @package zin
+ * @link https://www.zentao.net
+ */
+
+namespace zin;
+
+require_once __DIR__ . DS . 'zin.class.php';
+
+/**
+ * 将视图页面声明的所有内容通过一个部件进行渲染,并输出 HTML。
+ * Render page content with a widget to HTML.
+ *
+ * @access public
+ * @param string $wgName
+ * @param array $options
+ * @return void
+ */
+function render(string $wgName = '', array $options = array())
+{
+ /* 获取全局渲染部件实例和指令。 Get global render widgets and directives. */
+ $globalItems = zin::getGlobalRenderList();
+
+ /* 决定部件名称,如果是 Ajax 请求则进行特殊处理。 Decide widget name, if is ajax request, then do special process. */
+ if(empty($wgName))
+ {
+ $wgName = 'page';
+ if(isAjaxRequest('modal')) $wgName = 'modalDialog';
+ else if(isAjaxRequest() && !isAjaxRequest('zin')) $wgName = 'fragment';
+ }
+
+ /* 判断是否渲染为完整页面。 Check if render in full page. */
+ $isFullPage = str_starts_with($wgName, 'page');
+ if($isFullPage) $globalItems[] = set::display(false);
+
+ /* 获取部件渲染选项。 Get widget display options. */
+ if(empty($options) && isset($_SERVER['HTTP_X_ZIN_OPTIONS']) && !empty($_SERVER['HTTP_X_ZIN_OPTIONS']))
+ {
+ $setting = $_SERVER['HTTP_X_ZIN_OPTIONS'];
+ $options = $setting[0] === '{' ? json_decode($setting, true) : array('selector' => $setting);
+ }
+
+ /* 创建部件实例。 Create widget instance. */
+ $wg = createWg($wgName, $globalItems);
+
+ /* 如果不是渲染一个完整页面,则使用 fragment 进行渲染。 If not render in full page, then render all items in a fragment. */
+ if(!$isFullPage && $wgName !== 'fragment') $wg = fragment($wg);
+
+ /* 渲染并输出 HTML。 Render and display html. */
+ $wg->display($options);
+
+ zin::$rendered = true;
+}
diff --git a/lib/zin/core/selector.func.php b/lib/zin/core/selector.func.php
new file mode 100644
index 0000000000..71c8213b48
--- /dev/null
+++ b/lib/zin/core/selector.func.php
@@ -0,0 +1,165 @@
+
+ * @package zin
+ * @version $Id
+ * @link https://www.zentao.net
+ */
+
+namespace zin;
+
+/**
+ * Parse wg selector
+ * @param string|object $selector
+ * @return object|null
+ */
+function parseWgSelector(string|object $selector): ?object
+{
+ if(is_object($selector)) return $selector;
+
+ $selector = trim($selector);
+ $len = strlen($selector);
+
+ if($len < 1) return null;
+
+ $result = array(
+ 'class' => array(),
+ 'id' => null,
+ 'tag' => null,
+ 'inner' => false,
+ 'name' => null,
+ 'first' => false,
+ 'selector' => $selector
+ );
+ if(str_contains($selector, '/'))
+ {
+ $parts = explode('/', $selector, 2);
+ $result['name'] = $parts[0];
+ $selector = $parts[1];
+ $len = strlen($selector);
+ }
+ $selector = str_replace('> *', '>*', $selector);
+ if(substr($selector, strlen($selector) - 2) == '>*')
+ {
+ $result['inner'] = true;
+ $selector = substr($selector, 0, strlen($selector) - 2);
+ $len = strlen($selector);
+ }
+
+ $type = 'tag';
+ $current = '';
+ $updateResult = function(&$result, $current, $type)
+ {
+ if(empty($current)) return;
+
+ if($type === 'class')
+ {
+ $result[$type][] = $current;
+ }
+ elseif($type === 'option')
+ {
+ $options = [];
+ parse_str($current, $options);
+ foreach($options as $key => $value) $result[$key] = empty($value) ? true : $value;
+ }
+ else
+ {
+ $result[$type] = $current;
+ }
+ };
+
+ for($i = 0; $i < $len; $i++)
+ {
+ $c = $selector[$i];
+ $t = '';
+
+ if($c === '#' & $type !== 'option')
+ {
+ $t = 'id';
+ }
+ elseif($c === '.' & $type !== 'option')
+ {
+ $t = 'class';
+ }
+ elseif($c === '(' && $type !== 'option' && str_ends_with($selector, ')'))
+ {
+ $command = substr($selector, $i + 1, -1);
+ if(empty($command)) $command = $current;
+ $result['command'] = $command;
+ break;
+ }
+ elseif($c === ':')
+ {
+ $t = 'option';
+ }
+
+ if(empty($t))
+ {
+ $current .= $c;
+ }
+ else
+ {
+ $updateResult($result, $current, $type);
+ $current = '';
+ $type = $t;
+ }
+ }
+ $updateResult($result, $current, $type);
+
+ if(empty($result['class'])) $result['class'] = null;
+ if(empty($result['name']))
+ {
+ if(!empty($result['id'])) $result['name'] = $result['id'];
+ elseif(!empty($result['tag'])) $result['name'] = $result['tag'];
+ else $result['name'] = $selector;
+ }
+
+ return (object)$result;
+}
+
+/**
+ * Parse wg selectors.
+ * @param object|string|object[]|string[] $selectors
+ * @return object[]
+ */
+function parseWgSelectors(object|string|array $selectors): array
+{
+ if(is_object($selectors)) return array($selectors);
+ if(is_string($selectors)) $selectors = explode(',', trim($selectors));
+ $results = array();
+ foreach($selectors as $selector)
+ {
+ $selector = parseWgSelector($selector);
+ if(is_object($selector)) $results[] = $selector;
+ }
+ return $results;
+}
+
+/**
+ * Stringify wg selectors.
+ * @param object|object[] $selector
+ * @return string
+ */
+function stringifyWgSelectors(array|object $selector): string
+{
+ if(empty($selector)) return '';
+ if(is_array($selector))
+ {
+ $result = [];
+ foreach($selector as $s) $result[] = stringifyWgSelectors($s);
+ return implode(',', $result);
+ }
+
+ $result = '';
+ if(!empty($selector->name) && $selector->name !== $selector->selector) $result .= $selector->name . '/';
+ if(!empty($selector->tag)) $result .= $selector->tag;
+ if(!empty($selector->id)) $result .= '#' . $selector->id;
+ if(!empty($selector->class)) $result .= '.' . implode('.', $selector->class);
+ if(!empty($selector->first)) $result .= ':first';
+ if($selector->inner) $result .= '>*';
+ return $result;
+}
diff --git a/lib/zin/core/set.class.php b/lib/zin/core/set.class.php
new file mode 100644
index 0000000000..80b0ff69c8
--- /dev/null
+++ b/lib/zin/core/set.class.php
@@ -0,0 +1,30 @@
+
+ * @package zin
+ * @version $Id
+ * @link https://www.zentao.net
+ */
+
+namespace zin;
+
+require_once __DIR__ . DS . 'directive.class.php';
+
+class set
+{
+ public static function __callStatic($prop, $args)
+ {
+ $value = array_shift($args);
+ if(is_object($value)) $value = (array)$value;
+ return directive('prop', array($prop => $value));
+ }
+
+ public static function class(...$args)
+ {
+ return directive('prop', array('class' => $args));
+ }
+}
diff --git a/lib/zin/core/to.class.php b/lib/zin/core/to.class.php
new file mode 100644
index 0000000000..f53c6b8446
--- /dev/null
+++ b/lib/zin/core/to.class.php
@@ -0,0 +1,23 @@
+
+ * @package zin
+ * @version $Id
+ * @link https://www.zentao.net
+ */
+
+namespace zin;
+
+require_once __DIR__ . DS . 'wg.func.php';
+
+class to
+{
+ public static function __callStatic($name, $args)
+ {
+ return to($name, $args);
+ }
+}
diff --git a/lib/zin/core/wg.class.php b/lib/zin/core/wg.class.php
new file mode 100644
index 0000000000..d8e814c3e1
--- /dev/null
+++ b/lib/zin/core/wg.class.php
@@ -0,0 +1,752 @@
+
+ * @package zin
+ * @version $Id
+ * @link https://www.zentao.net
+ */
+
+namespace zin;
+
+require_once __DIR__ . DS . 'props.class.php';
+require_once __DIR__ . DS . 'directive.class.php';
+require_once __DIR__ . DS . 'zin.class.php';
+require_once __DIR__ . DS . 'context.class.php';
+require_once __DIR__ . DS . 'selector.func.php';
+require_once __DIR__ . DS . 'dom.class.php';
+
+class wg
+{
+ /**
+ * Define props for the element
+ *
+ * @var array
+ */
+ protected static array $defineProps = array();
+
+ protected static array $defaultProps = array();
+
+ protected static array $defineBlocks = array();
+
+ protected static array $wgToBlockMap = array();
+
+ protected static array $definedPropsMap = array();
+
+ private static array $pageResources = array();
+
+ /**
+ * The props of the element
+ *
+ * @access public
+ * @var props
+ */
+ public props $props;
+
+ public array $blocks = array();
+
+ public ?wg $parent = null;
+
+ public string $gid;
+
+ public bool $displayed = false;
+
+ protected array $renderOptions = array();
+
+ public function __construct(/* string|element|object|array|null ...$args */)
+ {
+ $this->props = new props();
+
+ $this->gid = 'zin_' . uniqid();
+ $this->setDefaultProps(static::getDefaultProps());
+ $this->add(func_get_args());
+ $this->created();
+
+ zin::renderInGlobal($this);
+ static::checkPageResources();
+
+ $this->checkErrors();
+ }
+
+ public function __debugInfo(): array
+ {
+ return $this->toJsonData();
+ }
+
+ public function isDomElement(): bool
+ {
+ return false;
+ }
+
+ /**
+ * Check if the element is match any of the selectors
+ * @param string|array|object $selectors
+ */
+ public function isMatch(string|array|object $selectors): bool
+ {
+ $list = parseWgSelectors($selectors);
+ foreach($list as $selector)
+ {
+ if(isset($selector->command)) continue;
+ if(!empty($selector->id) && $this->id() !== $selector->id) continue;
+ if(!empty($selector->tag) && $this->shortType() !== $selector->tag) continue;
+ if(!empty($selector->class) && !$this->props->class->has($selector->class)) continue;
+ return true;
+ }
+ return false;
+ }
+
+ /**
+ * Build dom object
+ * @return dom
+ */
+ public function buildDom(): dom
+ {
+ $before = $this->buildBefore();
+ $children = $this->build();
+ $after = $this->buildAfter();
+ $options = $this->renderOptions;
+ $selectors = (!empty($options) && isset($options['selector'])) ? $options['selector'] : null;
+
+ return new dom
+ (
+ $this,
+ [$before, $children, $after],
+ $selectors,
+ (!empty($options) && isset($options['type'])) ? $options['type'] : 'html', // TODO: () may not work in lower php
+ (!empty($options) && isset($options['data'])) ? $options['data'] : null,
+ );
+ }
+
+ /**
+ * Render widget to html
+ * @return string
+ */
+ public function render(): string
+ {
+ $dom = $this->buildDom();
+ $result = $dom->render();
+
+ return is_string($result) ? $result : json_encode($result);
+ }
+
+ public function display(array $options = array()): wg
+ {
+ zin::disableGlobalRender();
+ $this->renderOptions = $options;
+
+ $dom = $this->buildDom();
+ $result = $dom->render();
+ $context = context::current();
+ $css = $context->getCSS();
+ $js = $context->getJS();
+
+ global $app, $config;
+ $zinDebug = null;
+ if($config->debug && (!isAjaxRequest() || isAjaxRequest('zin')))
+ {
+ $zinDebug = data('zinDebug');
+ if(is_array($zinDebug))
+ {
+ $zinDebug['basePath'] = $app->getBasePath();
+ if(isset($app->zinErrors)) $zinDebug['errors'] = $app->zinErrors;
+ }
+ }
+
+ $rawContent = ob_get_contents();
+ if(!is_string($rawContent)) $rawContent = '';
+ ob_end_clean();
+
+ if(is_object($result))
+ {
+ if($zinDebug && isset($result['zinDebug'])) $result['zinDebug'] = $zinDebug;
+ $result = json_encode($result);
+ }
+ elseif(is_array($result))
+ {
+ foreach($result as $name => $item)
+ {
+ if(!isset($item['type']) || $item['type'] !== 'html') continue;
+
+ $item['data'] = str_replace('/*{{ZIN_PAGE_CSS}}*/', $css, $item['data']);
+ $item['data'] = str_replace('/*{{ZIN_PAGE_JS}}*/', $js, $item['data']);
+ $item['data'] = str_replace('', $rawContent, $item['data']);
+
+ $result[$name]['data'] = $item['data'];
+ }
+ if($zinDebug && isset($result['zinDebug'])) $result['zinDebug'] = $zinDebug;
+ $result = json_encode($result);
+ }
+ else
+ {
+ if($zinDebug) $js .= h::createJsVarCode('window.zinDebug', $zinDebug);
+ $result = str_replace('/*{{ZIN_PAGE_CSS}}*/', $css, $result);
+ $result = str_replace('/*{{ZIN_PAGE_JS}}*/', $js, $result);
+ $result = str_replace('', $rawContent, $result);
+ }
+
+ ob_start();
+ echo $result;
+
+ $this->displayed = true;
+ context::destroy();
+ return $this;
+ }
+
+ protected function created() {}
+
+ protected function buildBefore(): array
+ {
+ return $this->block('before');
+ }
+
+ protected function buildAfter(): array
+ {
+ return $this->block('after');
+ }
+
+ protected function build(): array|wg|directive
+ {
+ return $this->children();
+ }
+
+ public function buildEvents(): ?string
+ {
+ $events = $this->props->events();
+ if(empty($events)) return null;
+
+ $id = $this->id();
+ $code = array($this->shortType() === 'html' ? 'const ele = document;' : 'const ele = document.getElementById("' . (empty($id) ? $this->gid : $id) . '");if(!ele)return;const $ele = $(ele); const events = new Set(($ele.attr("data-zin-events") || "").split(" ").filter(Boolean));');
+ foreach($events as $event => $bindingList)
+ {
+ $code[] = "\$ele.on('$event.on.zin', function(e){";
+ foreach($bindingList as $binding)
+ {
+ if(is_string($binding)) $binding = (object)array('handler' => $binding);
+ $selector = isset($binding->selector) ? $binding->selector : null;
+ $handler = isset($binding->handler) ? trim($binding->handler) : '';
+ $stop = isset($binding->stop) ? $binding->stop : null;
+ $prevent = isset($binding->prevent) ? $binding->prevent : null;
+ $self = isset($binding->self) ? $binding->self : null;
+
+ $code[] = '(function(){';
+ if($selector) $code[] = "const target = e.target.closest('$selector');if(!target) return;";
+ else $code[] = "const target = ele;";
+ if($self) $code[] = "if(ele !== e.target) return;";
+ if($stop) $code[] = "e.stopPropagation();";
+ if($prevent) $code[] = "e.preventDefault();";
+
+ if(preg_match('/^[$A-Z_][0-9A-Z_$\[\]."\']*$/i', $handler)) $code[] = "($handler).call(target,e);";
+ else $code[] = $handler;
+
+ $code[] = '})();';
+ }
+ $code[] = "});events.add('$event');";
+ }
+ $code[] = '$ele.attr("data-zin-events", Array.from(events).join(" "));';
+ return h::createJsScopeCode($code);
+ }
+
+
+ protected function onAddBlock(array|string|wg|directive $child, string $name)
+ {
+ return $child;
+ }
+
+ protected function onAddChild(array|string|wg|directive $child)
+ {
+ return $child;
+ }
+
+ protected function onSetProp(array|string $prop, mixed $value)
+ {
+ if($prop === 'id' && $value === '$GID') $value = $this->gid;
+ if($prop[0] === '@')
+ {
+ $this->setDefaultProps(array('id' => $this->gid));
+ context::current()->addWgWithEvents($this);
+ }
+ $this->props->set($prop, $value);
+ }
+
+ protected function onGetProp(string $prop, mixed $defaultValue): mixed
+ {
+ return $this->props->get($prop, $defaultValue);
+ }
+
+ public function add($item, string $blockName = 'children')
+ {
+ if($item === null || is_bool($item)) return $this;
+
+ if(is_array($item))
+ {
+ foreach($item as $child) $this->add($child, $blockName);
+ return $this;
+ }
+
+ zin::disableGlobalRender();
+
+ if($item instanceof wg) $this->addToBlock($blockName, $item);
+ elseif(is_string($item)) $this->addToBlock($blockName, htmlentities($item));
+ elseif(isDirective($item)) $this->directive($item, $blockName);
+ else $this->addToBlock($blockName, htmlentities(strval($item)));
+
+ zin::enableGlobalRender();
+
+ return $this;
+ }
+
+ public function addToBlock(array|string $name, array|string|null|wg|directive $child = null)
+ {
+ if(is_array($name))
+ {
+ foreach($name as $blockName => $blockChildren)
+ {
+ $this->addToBlock($blockName, $blockChildren);
+ }
+ return;
+ }
+ if(is_array($child))
+ {
+ foreach($child as $blockChild)
+ {
+ $this->addToBlock($name, $blockChild);
+ }
+ return;
+ }
+
+ if($child instanceof wg && empty($child->parent)) $child->parent = &$this;
+
+ if($name === 'children' && $child instanceof wg)
+ {
+ $blockName = static::getBlockNameForWg($child);
+ if($blockName !== null) $name = $blockName;
+ }
+
+ $result = $name === 'children' ? $this->onAddChild($child) : $this->onAddBlock($child, $name);
+
+ if($result === false) return;
+ if($result !== null && $result !== true) $child = $result;
+
+ if(isset($this->blocks[$name])) $this->blocks[$name][] = $child;
+ else $this->blocks[$name] = array($child);
+ }
+
+ public function children(): array
+ {
+ return $this->block('children');
+ }
+
+ public function block(string $name): array
+ {
+ $list = array();
+ if(isset($this->blocks[$name]))
+ {
+ $blocks = $this->blocks[$name];
+ foreach($blocks as $block)
+ {
+ $isWg = $block instanceof wg && $block->shortType() === 'wg';
+ $block = $isWg ? $block->children() : $block;
+ if(is_array($block)) $list = array_merge($list, $block);
+ else $list[] = $block;
+ }
+ }
+ return $list;
+ }
+
+ public function hasBlock(string $name): bool
+ {
+ return isset($this->blocks[$name]);
+ }
+
+ /**
+ * Apply directive
+ */
+ public function directive(directive &$directive, array|string $blockName)
+ {
+ $data = $directive->data;
+ $type = $directive->type;
+ $directive->parent = &$this;
+
+ if($type === 'prop')
+ {
+ $this->setProp($data);
+ return;
+ }
+ if($type === 'class' || $type === 'style')
+ {
+ $this->setProp($type, $data);
+ return;
+ }
+ if($type === 'cssVar')
+ {
+ $this->setProp('--', $data);
+ return;
+ }
+ if($type === 'html')
+ {
+ $this->addToBlock($blockName, $directive);
+ return;
+ }
+ if($type === 'text')
+ {
+ $this->addToBlock($blockName, htmlspecialchars($data));
+ return;
+ }
+ if($type === 'block')
+ {
+ foreach($data as $blockName => $blockChildren)
+ {
+ $this->add($blockChildren, $blockName);
+ }
+ }
+ }
+
+ public function prop(array|string $name, mixed $defaultValue = null): mixed
+ {
+ if(is_array($name))
+ {
+ $values = array();
+ foreach($name as $index => $propName)
+ {
+ $values[] = $this->onGetProp($propName, is_array($defaultValue) ? (isset($defaultValue[$propName]) ? $defaultValue[$propName] : $defaultValue[$index]) : $defaultValue);
+ }
+ return $values;
+ }
+
+ return $this->onGetProp($name, $defaultValue);
+ }
+
+ /**
+ * Set property, an array can be passed to set multiple properties
+ *
+ * @access public
+ * @param props|array|string $prop - Property name or properties list
+ * @param mixed $value - Property value
+ */
+ public function setProp(props|array|string $prop, mixed $value = null)
+ {
+ if($prop instanceof props) $prop = $prop->toJsonData();
+
+ if(is_array($prop))
+ {
+ foreach($prop as $name => $value) $this->setProp($name, $value);
+ return $this;
+ }
+
+ if(!is_string($prop) || empty($prop)) return $this;
+
+ if($prop[0] === '#')
+ {
+ $this->add($value, substr($prop, 1));
+ return $this;
+ }
+
+ $this->onSetProp($prop, $value);
+ return $this;
+ }
+
+ public function hasProp(): bool
+ {
+ $names = func_get_args();
+ if(empty($names)) return false;
+ foreach($names as $name)
+ {
+ if(!$this->props->has($name)) return false;
+ }
+ return true;
+ }
+
+ public function setDefaultProps(array $props)
+ {
+ if(!is_array($props) || empty($props)) return;
+
+ foreach($props as $name => $value)
+ {
+ if($this->props->has($name)) continue;
+ $this->setProp($name, $value);
+ }
+ }
+
+ public function getRestProps(): array
+ {
+ return $this->props->skip(array_keys(static::definedPropsList()));
+ }
+
+ public function getDefinedProps(): array
+ {
+ return $this->props->pick(array_keys(static::definedPropsList()));
+ }
+
+ public function type(): string
+ {
+ return get_called_class();
+ }
+
+ public function shortType(): string
+ {
+ $type = $this->type();
+ $pos = strrpos($type, '\\');
+ return $pos === false ? $type : substr($type, $pos + 1);
+ }
+
+ public function id(): ?string
+ {
+ return $this->prop('id');
+ }
+
+ public function toJsonData(): array
+ {
+ $data = array();
+ $data['gid'] = $this->gid;
+ $data['props'] = $this->props->toJsonData();
+
+ $data['type'] = $this->type();
+ if(str_starts_with($data['type'], 'zin\\')) $data['type'] = substr($data['type'], 4);
+
+ $data['blocks'] = array();
+ foreach($this->blocks as $key => $value)
+ {
+ foreach($value as $index => $child)
+ {
+ if($child instanceof wg || (is_object($child) && method_exists($child, 'toJsonData')))
+ {
+ $value[$index] = $child->toJsonData();
+ }
+ elseif(isDirective($child, 'html'))
+ {
+ $value[$index] = $child->data;
+ }
+ }
+ if($key === 'children')
+ {
+ unset($data['blocks'][$key]);
+ $data['children'] = $value;
+ }
+ else
+ {
+ $data['blocks'][$key] = $value;
+ }
+ }
+
+ if(empty($data['blocks'])) unset($data['blocks']);
+
+ if(!empty($this->parent)) $data['parent'] = $this->parent->gid;
+
+ return $data;
+ }
+
+ /**
+ * Check errors in debug mode.
+ *
+ * @access protected
+ * @return void
+ */
+ protected function checkErrors()
+ {
+ global $config;
+ if(!isset($config->debug) || !$config->debug) return;
+
+ $definedProps = static::definedPropsList();
+ foreach($definedProps as $name => $definition)
+ {
+ if($this->hasProp($name)) continue;
+ if(isset($definition['default']) && $definition['default'] !== null) continue;
+ if(isset($definition['optional']) && $definition['optional']) continue;
+
+ trigger_error("[ZIN] The property \"$name: {$definition['type']}\" of widget \"{$this->type()}#$this->gid\" is required.", E_USER_ERROR);
+ }
+
+ $wgErrors = $this->onCheckErrors();
+ if(empty($wgErrors)) return;
+
+ foreach($wgErrors as $error)
+ {
+ if(is_array($error)) trigger_error("[ZIN] $error[0]", count($error) > 1 ? $error[1] : E_USER_WARNING);
+ else trigger_error("[ZIN] $error", E_USER_ERROR);
+ }
+ }
+
+ /**
+ * The lifecycle method for checking errors in debug mode.
+ *
+ * @access protected
+ * @return array|null
+ */
+ protected function onCheckErrors(): array|null
+ {
+ return null;
+ }
+
+ public static function getPageCSS(): string|false
+ {
+ return false; // No css
+ }
+
+ public static function getPageJS(): string|false
+ {
+ return false; // No js
+ }
+
+ protected static function checkPageResources()
+ {
+ $name = get_called_class();
+ if(isset(static::$pageResources[$name])) return;
+
+ static::$pageResources[$name] = true;
+
+ $pageCSS = static::getPageCSS();
+ $pageJS = static::getPageJS();
+
+ if(!empty($pageCSS)) context::css($pageCSS);
+ if(!empty($pageJS)) context::js($pageJS);
+ }
+
+ public static function wgBlockMap(): array
+ {
+ $wgName = get_called_class();
+ if(!isset(wg::$wgToBlockMap[$wgName]))
+ {
+ $wgBlockMap = array();
+ if(!empty(static::$defineBlocks))
+ {
+ foreach(static::$defineBlocks as $blockName => $setting)
+ {
+ if(!isset($setting['map'])) continue;
+ $map = $setting['map'];
+ if(is_string($map)) $map = explode(',', $map);
+ foreach($map as $name) $wgBlockMap[$name] = $blockName;
+ }
+ }
+ wg::$wgToBlockMap[$wgName] = $wgBlockMap;
+ }
+ return wg::$wgToBlockMap[$wgName];
+ }
+
+ public static function getBlockNameForWg(wg|string $wg): ?string
+ {
+ $wgType = ($wg instanceof wg) ? $wg->type() : $wg;
+ $wgBlockMap = static::wgBlockMap();
+ if(str_starts_with($wgType, 'zin\\')) $wgType = substr($wgType, 4);
+ return isset($wgBlockMap[$wgType]) ? $wgBlockMap[$wgType] : null;
+ }
+
+ protected static function definedPropsList(?string $wgName = null): array
+ {
+ if($wgName === null) $wgName = get_called_class();
+
+ if(!isset(wg::$definedPropsMap[$wgName]) && $wgName === get_called_class())
+ {
+ wg::$definedPropsMap[$wgName] = static::parsePropsDefinition(static::$defineProps);
+ }
+ return wg::$definedPropsMap[$wgName];
+ }
+
+ protected static function getDefaultProps(?string $wgName = null): array
+ {
+ $defaultProps = array();
+ foreach(static::definedPropsList($wgName) as $name => $definition)
+ {
+ if(!isset($definition['default'])) continue;
+ $defaultProps[$name] = $definition['default'];
+ }
+ return $defaultProps;
+ }
+
+ /**
+ * Parse props definition
+ * @param $definition
+ * @example
+ *
+ * $definition = array('name', 'desc:string', 'title?:string|element', 'icon?:string="star"');
+ * $definition = array('name' => 'mixed', 'desc' => 'string', 'title' => array('type' => 'string|element', 'optional' => true), 'icon' => array('type' => 'string', 'default' => 'star', 'optional' => true))))
+ */
+ private static function parsePropsDefinition(array $definition): array
+ {
+ $parentClass = get_parent_class(get_called_class());
+ /**
+ * @var array
+ */
+ $props = $parentClass ? call_user_func("$parentClass::definedPropsList") : array();
+
+ if($parentClass !== false && $definition === $parentClass::$defineProps)
+ {
+ if(!empty(static::$defaultProps) && static::$defaultProps !== $parentClass::$defaultProps)
+ {
+ foreach($props as $name => $value)
+ {
+ if(isset(static::$defaultProps[$name]))
+ {
+ $value['default'] = static::$defaultProps[$name];
+ $props[$name] = $value;
+ }
+ }
+ }
+ return $props;
+ }
+
+ foreach($definition as $name => $value)
+ {
+ $optional = false;
+ $type = 'mixed';
+ $default = (isset($props[$name]) && isset($props[$name]['default'])) ? $props[$name]['default'] : null;
+
+ if(is_int($name) && is_string($value))
+ {
+ $value = trim($value);
+ if(!str_contains($value, ':'))
+ {
+ $name = $value;
+ $value = '';
+ }
+ else
+ {
+ list($name, $value) = explode(':', $value, 2);
+ }
+ $name = trim($name);
+ if($name[strlen($name) - 1] === '?')
+ {
+ $name = substr($name, 0, strlen($name) - 1);
+ $optional = true;
+ }
+ }
+
+ if(is_array($value))
+ {
+ $type = isset($value['type']) ? $value['type'] : $type;
+ $default = isset($value['default']) ? $value['default'] : $default;
+ $optional = isset($value['optional'])? $value['optional']: $optional;
+ }
+ else if(is_string($value))
+ {
+ if(!str_contains($value, '='))
+ {
+ $type = $value;
+ $default = null;
+ }
+ else
+ {
+ list($type, $default) = explode('=', $value, 2);
+ }
+ $type = trim($type);
+
+ if(is_string($default)) $default = json_decode(trim($default));
+ }
+
+ $props[$name] = array('type' => empty($type) ? 'mixed' : $type, 'default' => $default, 'optional' => $default !== null || $optional);
+ }
+
+ if(static::$defaultProps && (!$parentClass || static::$defaultProps !== $parentClass::$defaultProps))
+ {
+ foreach(static::$defaultProps as $name => $value)
+ {
+ if(!isset($props[$name])) continue;
+ $props[$name]['default'] = $value;
+ }
+ }
+ return $props;
+ }
+}
diff --git a/lib/zin/core/wg.func.php b/lib/zin/core/wg.func.php
new file mode 100644
index 0000000000..e0c2f450cb
--- /dev/null
+++ b/lib/zin/core/wg.func.php
@@ -0,0 +1,305 @@
+
+ * @package zin
+ * @link http://www.zentao.net
+ */
+namespace zin;
+
+require_once dirname(__DIR__) . DS . 'utils' . DS . 'flat.func.php';
+require_once __DIR__ . DS . 'props.class.php';
+require_once __DIR__ . DS . 'directive.class.php';
+require_once __DIR__ . DS . 'rawcontent.class.php';
+require_once __DIR__ . DS . 'wg.class.php';
+require_once __DIR__ . DS . 'context.func.php';
+
+/**
+ * Create an new widget.
+ *
+ * @return wg
+ */
+function wg(): wg
+{
+ return new wg(func_get_args());
+}
+
+/**
+ * Set widget properties.
+ *
+ * @param string|array|props|null $name
+ * @param mixed $value
+ * @return directive|null
+ */
+function set(string|array|props|null $name, mixed $value = null): ?directive
+{
+ if($name === null) return null;
+
+ $props = null;
+ if($name instanceof props) $props = $name;
+ else if(is_array($name)) $props = $name;
+ else if(is_object($name)) $props = (array)$name;
+ else if(is_string($name)) $props = array($name => $value);
+ return $props ? directive('prop', $props) : null;
+}
+
+/**
+ * Set widget CSS class attribute.
+ *
+ * @param array|string|null ...$classList
+ * @return directive
+ */
+function setClass(/* array|string|null ...$classList */): directive
+{
+ return directive('class', func_get_args());
+}
+
+/**
+ * Set widget style attribute.
+ *
+ * @return directive
+ */
+function setStyle(array|string $name, ?string $value = null): directive
+{
+ return directive('style', is_array($name) ? $name : array($name => $value));
+}
+
+/**
+ * Set widget CSS variable.
+ *
+ * @return directive
+ */
+function setCssVar(array|string $name, ?string $value = null): directive
+{
+ return directive('cssVar', is_array($name) ? $name : array($name => $value));
+}
+
+/**
+ * Set widget ID attribute.
+ *
+ * @return ?directive
+ */
+function setID(?string $id = null): directive
+{
+ return set('id', $id);
+}
+
+/**
+ * Set widget element tag name.
+ *
+ * @return directive
+ */
+function setTag(string $id): directive
+{
+ return set('tagName', $id);
+}
+
+/**
+ * Set widget data-* attribute.
+ *
+ * @param string|array $name
+ * @param mixed $value
+ * @return directive
+ */
+function setData(string|array $name, mixed $value = null): directive
+{
+ $map = is_array($name) ? $name : array($name => $value);
+ $attrs = array();
+ foreach($map as $key => $value)
+ {
+ $name = "data-$key";
+ if(is_bool($value)) $attrs[$name] = $value ? 'true' : 'false';
+ else if(is_array($value)) $attrs[$name] = json_encode($value);
+ else $attrs[$name] = $value;
+ }
+ return set($attrs);
+}
+
+/**
+ * Add event listener to widget element.
+ *
+ * @param string $name
+ * @param bool|string|array $handler
+ * @param array $options
+ */
+function on(string $name, bool|string|array $handler, array|string|bool $options = null): directive
+{
+ if(is_string($options) && is_string($handler))
+ {
+ $options = array('selector' => $handler, 'handler' => $options);
+ }
+ elseif(is_bool($options))
+ {
+ $options = array('capture' => $options, 'handler' => $handler);
+ }
+ elseif(is_array($options))
+ {
+ $options['handler'] = $handler;
+ }
+ else
+ {
+ $options = array('handler' => $handler);
+ }
+ if(str_contains($name, '__'))
+ {
+ list($name, $flags) = explode('__', $name);
+ if(str_contains($flags, 'capture')) $options['capture'] = true;
+ if(str_contains($flags, 'stop')) $options['stop'] = true;
+ if(str_contains($flags, 'prevent')) $options['prevent'] = true;
+ if(str_contains($flags, 'self')) $options['self'] = true;
+ }
+ return set("@$name", (object)$options);
+}
+
+/**
+ * Create html content.
+ *
+ * @param string ...$lines
+ * @return directive
+ */
+function html(/* string ...$lines */): directive
+{
+ return directive('html', implode("\n", \zin\utils\flat(func_get_args())));
+}
+
+/**
+ * Create text content.
+ *
+ * @param string ...$lines
+ * @return directive
+ */
+function text(/* string ...$lines */): directive
+{
+ return directive('text', implode("\n", \zin\utils\flat(func_get_args())));
+}
+
+/**
+ * Create block content.
+ *
+ * @param string $name
+ * @param mixed ...$wgs
+ * @return directive
+ */
+function to(/* string $name, mixed ...$wgs */): directive
+{
+ $args = func_get_args();
+ $name = array_shift($args);
+ $wg = new wg(count($args) > 1 ? $args : $args[0]);
+ return directive('block', array($name => $wg));
+}
+
+/**
+ * Create content for block "before".
+ *
+ * @param string $wgs
+ * @return directive
+ */
+function before(/* mixed ...$wgs */): directive
+{
+ return to('before', func_get_args());
+}
+
+/**
+ * Create content for block "after".
+ *
+ * @param string $wgs
+ * @return directive
+ */
+function after(): directive
+{
+ return to('after', func_get_args());
+}
+
+/**
+ * Create widget contents inherited from the given widget.
+ *
+ * @param wg|array $item
+ * @return array
+ */
+function inherit(wg|array $item): array
+{
+ if(!($item instanceof wg)) $item = new wg($item);
+ return array(set($item->props), directive('block', $item->blocks), $item->children());
+}
+
+/**
+ * Divorce widget from parent.
+ *
+ * @param wg|array $item
+ * @return array
+ */
+function divorce(wg|array $item): wg|array
+{
+ if($item instanceof wg)
+ {
+ $item->parent = null;
+ }
+ else if(is_array($item))
+ {
+ foreach($item as $i) divorce($i);
+ }
+ return $item;
+}
+
+/**
+ * Check if the given widget list has the given widget type.
+ *
+ * @param wg|array $items
+ * @param string $type
+ * @return bool
+ */
+function hasWgInList(wg|array $items, string $type): bool
+{
+ if(!is_array($items)) $items = array($items);
+ foreach($items as $item)
+ {
+ if($item instanceof wg && $item->type() == $type) return true;
+ }
+ return false;
+}
+
+/**
+ * Group widgets by type.
+ *
+ * @param wg|array $items
+ * @param string $types
+ * @return array
+ */
+function groupWgInList(wg|array $items, string|array $types): array
+{
+ if(is_string($types)) $types = explode(',', $types);
+ $typesMap = array();
+ $restList = array();
+
+ foreach($types as $type) $typesMap[$type] = array();
+
+ foreach($items as $item)
+ {
+ if(!($item instanceof wg)) continue;
+
+ $type = $item->shortType();
+ if(isset($typesMap[$type])) $typesMap[$type][] = $item;
+ else $restList[] = $item;
+ }
+
+ $groups = array();
+ foreach($types as $index => $type) $groups[] = $typesMap[$type];
+ $groups[] = $restList;
+ return $groups;
+}
+
+/**
+ * Create raw content placeholder.
+ *
+ * @return rawContent
+ */
+function rawContent(): rawContent
+{
+ zin::$rawContentCalled = true;
+
+ return new rawContent();
+}
diff --git a/lib/zin/core/zin.class.php b/lib/zin/core/zin.class.php
new file mode 100644
index 0000000000..bfb653bfe7
--- /dev/null
+++ b/lib/zin/core/zin.class.php
@@ -0,0 +1,76 @@
+
+ * @package zin
+ * @version $Id
+ * @link https://www.zentao.net
+ */
+
+namespace zin;
+
+require_once dirname(__DIR__) . DS . 'utils' . DS . 'deep.func.php';
+
+class zin
+{
+ public static array $globalRenderList = array();
+
+ public static bool $enabledGlobalRender = true;
+
+ public static array $data = array();
+
+ public static bool $rendered = false;
+
+ public static bool $rawContentCalled = false;
+
+ public static function getData(string $namePath, mixed $defaultValue = null): mixed
+ {
+ return \zin\utils\deepGet(static::$data, $namePath, $defaultValue);
+ }
+
+ public static function setData(string $namePath, mixed $value)
+ {
+ \zin\utils\deepSet(static::$data, $namePath, $value);
+ }
+
+ public static function enableGlobalRender()
+ {
+ static::$enabledGlobalRender = true;
+ }
+
+ public static function disableGlobalRender()
+ {
+ static::$enabledGlobalRender = false;
+ }
+
+ public static function renderInGlobal(): bool
+ {
+ if(!static::$enabledGlobalRender) return false;
+
+ static::$globalRenderList = array_merge(static::$globalRenderList, func_get_args());
+ return true;
+ }
+
+ public static function getGlobalRenderList(bool $clear = true): array
+ {
+ $globalItems = array();
+
+ foreach(static::$globalRenderList as $item)
+ {
+ if(is_object($item))
+ {
+ if((isset($item->parent) && $item->parent) || ($item instanceof wg && $item->shortType() === 'wg'))
+ continue;
+ }
+ $globalItems[] = $item;
+ }
+
+ /* Clear globalRenderList. */
+ if($clear) static::$globalRenderList = array();
+
+ return $globalItems;
+ }
+}
diff --git a/lib/zin/func.php b/lib/zin/func.php
new file mode 100644
index 0000000000..7fe5866774
--- /dev/null
+++ b/lib/zin/func.php
@@ -0,0 +1,1691 @@
+
+ * @package zin
+ * @version $Id
+ * @link https://www.zentao.net
+ */
+
+namespace zin;
+
+require_once __DIR__ . DS . 'core' . DS . 'h.func.php';
+require_once __DIR__ . DS . 'core' . DS . 'render.func.php';
+require_once __DIR__ . DS . 'zui' . DS . 'zui.func.php';
+require_once __DIR__ . DS . 'zentao' . DS . 'zentao.func.php';
+require_once __DIR__ . DS . 'zentao' . DS . 'bind.class.php';
+
+/* Form */
+
+/**
+ * Html input.
+ *
+ * string name
+ * ?string type='text'
+ * ?string id
+ * ?string class='form-control'
+ * ?string value
+ * ?bool required
+ * ?string placeholder
+ * ?bool autofocus
+ * ?bool autocomplete=false
+ * ?bool disabled
+ */
+function input(): input
+{
+ return createWg('input', func_get_args());
+}
+
+/**
+ * Html textarea.
+ *
+ * string name
+ * int rows
+ * int cols
+ * ?string id
+ * ?string class='form-control'
+ * ?bool required
+ * ?string placeholder
+ */
+function textarea(): textarea
+{
+ return createWg('textarea', func_get_args());
+}
+
+/**
+ * Radio widget.
+ *
+ * string id
+ * ?string text
+ * ?bool checked
+ * ?string name
+ * ?bool primary=true
+ * ?bool disabled
+ * ?string value
+ * ?string typeClass
+ * ?string rootClass
+ */
+function radio(): radio
+{
+ return createWg('radio', func_get_args());
+}
+
+/**
+ * Switcher widget.
+ *
+ * string id
+ * string value
+ * ?string text
+ * ?bool checked
+ * ?string name
+ * ?bool primary=true
+ * ?bool disabled
+ * ?string typeClass
+ * ?string rootClass
+ */
+function switcher(): switcher
+{
+ return createWg('switcher', func_get_args());
+}
+
+/**
+ * Checkbox widget.
+ *
+ * string id
+ * ?string text
+ * ?bool checked
+ * ?string name
+ * ?bool primary=true
+ * ?bool disabled
+ * ?string value
+ * ?string typeClass
+ * ?string rootClass
+ * ?string labelClass
+ */
+function checkbox(): checkbox
+{
+ return createWg('checkbox', func_get_args());
+}
+
+/**
+ * Checkbox group widget.
+ *
+ * array title
+ * array items
+ */
+function checkboxGroup(): checkboxGroup
+{
+ return createWg('checkboxGroup', func_get_args());
+}
+
+/**
+ * Base form widget.
+ *
+ * ?string id='$GID'
+ * ?string method='post'
+ * ?string url
+ * ?array actions
+ * ?string actionsClass
+ * ?string target
+ * ?string submitBtnText
+ * ?string cancelBtnText
+ */
+function formBase(): formBase
+{
+ return createWg('formBase', func_get_args());
+}
+
+/**
+ * Form widget.
+ *
+ * ?string id='$GID'
+ * ?string method='post'
+ * ?string url
+ * ?array actions
+ * ?string actionsClass
+ * ?string target
+ * ?string submitBtnText
+ * ?string cancelBtnText
+ * ?bool grid
+ * ?int labelWidth
+ */
+function form(): form
+{
+ return createWg('form', func_get_args());
+}
+
+/**
+ * Form panel widget.
+ *
+ * ?string method
+ * ?string url
+ * ?array actions
+ * ?string target
+ * ?array items
+ * ?bool grid
+ * ?int labelWidth
+ */
+function formPanel(): formPanel
+{
+ return createWg('formPanel', func_get_args());
+}
+
+/**
+ * Zentao form batch wg.
+ *
+ * ?string id='$GID'
+ * ?string method='post'
+ * ?string url
+ * ?array actions
+ * ?string actionsClass
+ * ?string target
+ * ?array items
+ * ?int minRows=1
+ * ?int maxRows=100
+ * ?array data
+ * ?string mode='add'
+ */
+function formBatch(): formBatch
+{
+ return createWg('formBatch', func_get_args());
+}
+
+/**
+ * Zentao form batch item wg.
+ *
+ * ?string name
+ * ?string|bool label
+ * ?string labelClass
+ * ?string labelProps
+ * ?bool|string required="auto"
+ * ?array|string control
+ * ?string width
+ * ?string|array value
+ * ?bool disabled
+ * ?array items
+ * ?string placeholder
+ * ?bool hidden=false
+ */
+function formBatchItem(): formBatchItem
+{
+ return createWg('formBatchItem', func_get_args());
+}
+
+/**
+ * Form panel widget.
+ *
+ * ?string method
+ * ?string url
+ * ?array actions
+ * ?string target
+ * ?array items
+ * ?bool grid
+ * ?int labelWidth
+ * ?int minRows=1
+ * ?int maxRows=100
+ * ?array data
+ * ?string mode='add'
+ */
+function formBatchPanel(): formBatchPanel
+{
+ return createWg('formBatchPanel', func_get_args());
+}
+
+/**
+ * Batch actions: add, delete.
+ */
+function batchActions(): batchActions
+{
+ return createWg('batchActions', func_get_args());
+}
+
+/**
+ * Control widget.
+ * Dynamically create html input.
+ *
+ * string type - it can be text, password, email, number, date, time, datetime, month, url, search, tel, color, picker, select, checkbox, radio, checkboxList, radioList, checkboxListInline, radioListInline, file, textarea.
+ * string name
+ * ?string id
+ * ?string value
+ * ?bool required
+ * ?string placeholder
+ * ?bool disabled
+ * ?string form
+ * ?array items
+ */
+function control(): control
+{
+ return createWg('control', func_get_args());
+}
+
+/**
+ * Html select.
+ *
+ * string name
+ * ?string id
+ * ?string class="form-control"
+ * ?string value
+ * ?bool required
+ * ?bool disabled
+ * ?bool multiple
+ * ?array items
+ * ?int size
+ */
+function select(): select
+{
+ return createWg('select', func_get_args());
+}
+
+/**
+ * Html label which use id form.
+ *
+ * ?string text
+ * ?bool required
+ * ?string for
+ */
+function formLabel(): formLabel
+{
+ return createWg('formLabel', func_get_args());
+}
+
+/**
+ * Form group widget.
+ *
+ * ?string name
+ * ?string labelClass
+ * ?string tip
+ * ?array tipProps
+ * ?string width
+ * ?bool strong
+ * ?bool disabled
+ * ?array items
+ * ?string placeholder
+ * bool|string|null required='auto'
+ * string|array|null tipClass
+ * string|bool|null label
+ * string|array|null value
+ * array|string|null control
+ */
+function formGroup(): formGroup
+{
+ return createWg('formGroup', func_get_args());
+}
+
+/**
+ * Form row widget.
+ *
+ * ?string width
+ * ?array items
+ * ?bool hidden
+ */
+function formRow(): formRow
+{
+ return createWg('formRow', func_get_args());
+}
+
+/**
+ * Form row group widget.
+ *
+ * ?string width
+ * ?array items
+ * ?bool hidden
+ */
+function formRowGroup(): formRowGroup
+{
+ return createWg('formRowGroup', func_get_args());
+}
+
+/**
+ * Html input with prefix or suffix.
+ *
+ * mixed prefix
+ * mixed suffix
+ * string|int prefixWidth
+ * string|int suffixWidth
+ */
+function inputControl(): inputControl
+{
+ return createWg('inputControl', func_get_args());
+}
+
+/**
+ * Input group widget.
+ *
+ * ?array items
+ * ?bool seg
+ */
+function inputGroup(): inputGroup
+{
+ return createWg('inputGroup', func_get_args());
+}
+
+/**
+ * Input group addon widget.
+ */
+function inputGroupAddon(): inputGroupAddon
+{
+ return createWg('inputGroupAddon', func_get_args());
+}
+
+/**
+ * Checkbox list widget.
+ *
+ * ?string name
+ * ?bool primary=true
+ * ?array items
+ * ?bool inline
+ * string|array|null value
+ */
+function checkList(): checkList
+{
+ return createWg('checkList', func_get_args());
+}
+
+/**
+ * Radio list widget.
+ *
+ * ?string name
+ * ?bool primary=true
+ * ?array items
+ * ?bool inline
+ * string|array|null value
+ */
+function radioList(): radioList
+{
+ return createWg('radioList', func_get_args());
+}
+
+/**
+ * Color picker widget which extends input.
+ *
+ * ?string heading
+ * ?string icon
+ * ?bool closeBtn=true
+ * ?string syncText
+ * ?string syncColor
+ * ?string syncBackground
+ * ?string syncBorder
+ */
+function colorPicker(): colorPicker
+{
+ return createWg('colorPicker', func_get_args());
+}
+
+/**
+ * Date picker widget which extends input.
+ *
+ * string name
+ * ?string id
+ * ?string class
+ * ?string value
+ * ?bool required
+ * ?string placeholder
+ * ?bool autofocus
+ * ?bool disabled
+ * ?bool autocomplete=false
+ */
+function datePicker(): datePicker
+{
+ return createWg('datePicker', func_get_args());
+}
+
+/**
+ * Datetime picker widget which extends input.
+ *
+ * string name
+ * ?string id
+ * ?string class
+ * ?string value
+ * ?bool required
+ * ?string placeholder
+ * ?bool autofocus
+ * ?bool disabled
+ * ?bool autocomplete=false
+ */
+function datetimePicker(): datetimePicker
+{
+ return createWg('datetimePicker', func_get_args());
+}
+
+/**
+ * Time picker widget which extends input.
+ *
+ * string name
+ * ?string id
+ * ?string class
+ * ?string value
+ * ?bool required
+ * ?string placeholder
+ * ?bool autofocus
+ * ?bool disabled
+ * ?bool autocomplete=false
+ */
+function timePicker(): timePicker
+{
+ return createWg('timePicker', func_get_args());
+}
+
+/**
+ * Html file input which extends input.
+ *
+ * string name
+ * ?string id
+ * ?string class
+ * ?string value
+ * ?bool required
+ * ?string placeholder
+ * ?bool autofocus
+ * ?bool disabled
+ * ?bool autocomplete=false
+ */
+function fileInput(): fileInput
+{
+ return createWg('fileInput', func_get_args());
+}
+
+/**
+ * Page form widget which extends page.
+ *
+ * ?array formPanel
+ * ?string title
+ * ?array bodyProps
+ * ?bool zui=true
+ * ?bool display=true
+ * array|string|null bodyClass
+ * string|array|null metas=array('', '', '', '')
+ *
+ * ====== blocks ======
+ * head = array()
+ * header = array('map' => 'header')
+ * main = array('map' => 'main')
+ * footer = array()
+ * ====================
+ */
+function pageForm(): pageForm
+{
+ return createWg('pageForm', func_get_args());
+}
+
+/**
+ * Icon widget.
+ *
+ * string name
+ * string|int|null size
+ */
+function icon(): icon
+{
+ return createWg('icon', func_get_args());
+}
+
+/**
+ * Button widget.
+ *
+ * ?string icon
+ * ?string text
+ * ?bool square
+ * ?bool disabled
+ * ?bool active
+ * ?string url
+ * ?string target
+ * ?string trailingIcon
+ * ?string hint
+ * ?string type
+ * ?string btnType
+ * string|int|null size
+ * string|bool|null caret
+ */
+function btn(): btn
+{
+ return createWg('btn', func_get_args());
+}
+
+/**
+ * Page base widget.
+ *
+ * ?string title
+ * ?array bodyProps
+ * ?bool zui=false
+ * ?bool display=true
+ * array|string|null bodyClass
+ * string|array|null metas=array('', '', '', '')
+ */
+function pageBase(): pageBase
+{
+ return createWg('pageBase', func_get_args());
+}
+
+/**
+ * Page widget.
+ *
+ * ?string title
+ * ?array bodyProps
+ * ?array|string bodyClass
+ * ?bool zui=true
+ * ?bool display=true
+ * string|array|null metas=array('', '', '', '')
+ *
+ * ====== blocks ======
+ * head = array()
+ * header = array('map' => 'header')
+ * main = array('map' => 'main')
+ * footer = array()
+ * ====================
+ */
+function page(): page
+{
+ return createWg('page', func_get_args());
+}
+
+/**
+ * Fragment widget.
+ * Let you group elements without a wrapper node.
+ */
+function fragment(): fragment
+{
+ return createWg('fragment', func_get_args());
+}
+
+/**
+ * Button group widget.
+ *
+ * ?array items
+ * ?bool disabled
+ * ?string size
+ */
+function btnGroup(): btnGroup
+{
+ return createWg('btnGroup', func_get_args());
+}
+
+/**
+ * Zentao main menu widget.
+ *
+ * ?array statuses
+ * ?array btnGroup
+ * ?array others
+ */
+function mainMenu(): mainMenu
+{
+ return createWg('mainMenu', func_get_args());
+}
+
+/**
+ * Row widget.
+ *
+ * ?string justify
+ * ?string align
+ */
+function row(): row
+{
+ return createWg('row', func_get_args());
+}
+
+/**
+ * Col widget.
+ *
+ * ?string justify
+ * ?string align
+ */
+function col(): col
+{
+ return createWg('col', func_get_args());
+}
+
+/**
+ * Center widget.
+ */
+function center(): center
+{
+ return createWg('center', func_get_args());
+}
+
+/**
+ * Cell widget.
+ * Flex item.
+ *
+ * int order
+ * int grow
+ * string shrink
+ * string|int width 'auto'|'flex-start'|'flex-end'|'center'|'baseline'|'stretch'
+ * string align
+ * string flex
+ */
+function cell(): cell
+{
+ return createWg('cell', func_get_args());
+}
+
+/**
+ * Action item widget.
+ *
+ * ?string name='action'
+ * ?string type='item'
+ * ?string outerTag='li'
+ * ?string tagName='a'
+ * ?string icon
+ * ?string text
+ * ?string url
+ * ?string target
+ * ?bool active
+ * ?bool disabled
+ * ?string trailingIcon
+ * ?array outerProps
+ * ?string outerClass
+ * ?props array
+ * string|array|object|null badge
+ */
+function actionItem(): actionItem
+{
+ return createWg('actionItem', func_get_args());
+}
+
+/**
+ * Nav widget.
+ *
+ * ?array items
+ */
+function nav(): nav
+{
+ return createWg('nav', func_get_args());
+}
+
+/**
+ * Label widget.
+ *
+ * ?string text
+ */
+function label(): label
+{
+ return createWg('label', func_get_args());
+}
+
+/**
+ * DTable widget.
+ *
+ * ?string className
+ * ?string id
+ * ?bool customCols
+ * ?array cols
+ * ?string module
+ */
+function dtable(): dtable
+{
+ return createWg('dtable', func_get_args());
+}
+
+/**
+ * Menu widget.
+ *
+ * ?array items
+ */
+function menu(): menu
+{
+ return createWg('menu', func_get_args());
+}
+
+/**
+ * Dropdown widget.
+ *
+ * ?array items
+ * ?string placement
+ * ?string strategy
+ * ?int offset
+ * ?bool flip
+ * ?string arrow
+ * ?string trigger
+ * ?array menu
+ * ?string target
+ * ?string id
+ * ?string menuClass
+ * ?bool hasIcons
+ * ?bool staticMenu
+ */
+function dropdown(): dropdown
+{
+ return createWg('dropdown', func_get_args());
+}
+
+/**
+ * Header widget.
+ *
+ * ====== blocks ======
+ * heading = array('map' => 'toolbar')
+ * navbar = array('map' => 'nav')
+ * toolbar = array('map' => 'btn')
+ * ====================
+ */
+function header(): header
+{
+ return createWg('header', func_get_args());
+}
+
+/**
+ * Heading widget.
+ *
+ * array items
+ * ?bool showAppName=true
+ */
+function heading(): heading
+{
+ return createWg('heading', func_get_args());
+}
+
+/**
+ * Navbar widget.
+ *
+ * ?array items
+ */
+function navbar(): navbar
+{
+ return createWg('navbar', func_get_args());
+}
+
+/**
+ * Dropmenu widget.
+ *
+ * ?string id // ID,当页面有多个 dropmenu 时确保有唯一的 ID。
+ * ?string tab // 应用名。
+ * ?string module // 模块名。
+ * ?string method // 方法名。
+ * ?string objectID // 当前选中项的 ID。
+ * ?string extra // 额外参数。
+ * ?string url // 异步获取下拉菜单选项数据的 URL。
+ * ?string text // 选择按钮上显示的文本。
+ * ?bool|int cache // 是否启用缓存。
+ * ?array data // 手动指定数据。
+ * ?string menuID // 指定下拉菜单的ID。
+ */
+function dropmenu(): dropmenu
+{
+ return createWg('dropmenu', func_get_args());
+}
+
+/**
+ * Main widget.
+ *
+ * ====== blocks ======
+ * menu = array('map' => 'featureBar,nav,toolbar')
+ * sidebar = array('map' => 'sidebar')
+ * ====================
+ */
+function main(): main
+{
+ return createWg('main', func_get_args());
+}
+
+/**
+ * Zentao sidebar widget.
+ *
+ * ?string side='left'
+ * ?bool showToggle=true
+ */
+function sidebar(): sidebar
+{
+ return createWg('sidebar', func_get_args());
+}
+
+/**
+ * Zentao feature bar widget.
+ *
+ * ?array items
+ * ?string current
+ * ?string link
+ * ?string linkParams
+ * ?string module
+ * ?string method
+ *
+ * ====== blocks ======
+ * nav = array('map' => 'nav')
+ * leading = array()
+ * trailing = array()
+ * ====================
+ */
+function featureBar(): featureBar
+{
+ return createWg('featureBar', func_get_args());
+}
+
+/**
+ * Avatar widget.
+ *
+ * ?string className
+ * ?array style
+ * ?int size=32
+ * ?bool circle=true
+ * ?string|int rounded
+ * ?string background
+ * ?string foreColor
+ * ?string text
+ * ?string code
+ * ?int maxTextLength=2
+ * ?int hueDistance=43
+ * ?int saturation=0.4
+ * ?int lightness=0.6
+ * ?string src
+ */
+function avatar(): avatar
+{
+ return createWg('avatar', func_get_args());
+}
+
+/**
+ * Zentao user avatar widget.
+ *
+ * string className?
+ * array style?
+ * int size=32
+ * bool circle=true
+ * string|int rounded
+ * string background
+ * string foreColor
+ * string text
+ * string code?
+ * int maxTextLength=2
+ * int hueDistance=43
+ * int saturation=0.4
+ * int lightness=0.6
+ * string src?
+ * string avatar?
+ * string account?
+ * string realname?
+ * array|object user?
+ */
+function userAvatar(): userAvatar
+{
+ return createWg('userAvatar', func_get_args());
+}
+
+/**
+ * Pager widget.
+ */
+function pager(): pager
+{
+ return createWg('pager', func_get_args());
+}
+
+/**
+ * Modal widget.
+ *
+ * ?string id="$GID"
+ * ?array modalProps=array()
+ */
+function modal(): modal
+{
+ return createWg('modal', func_get_args());
+}
+
+/**
+ * Modal trigger widget.
+ *
+ * ?string target
+ * ?bool keyboard
+ * ?bool moveable
+ * ?bool animation
+ * ?int transTime
+ * ?bool responsive
+ * ?string type
+ * ?string loadingText
+ * ?int loadTimeout
+ * ?string failedTip
+ * ?string timeoutTip
+ * ?string title
+ * ?string content
+ * ?object custom
+ * ?string url
+ * ?object request
+ * ?string dataType
+ * bool|string|null backdrop
+ * string|int|object|null size
+ * string|int|object|function|null position
+ *
+ * ====== blocks ======
+ * trigger = array('map' => 'btn,a')
+ * modal = array('map' => 'modal')
+ * ====================
+ */
+function modalTrigger(): modalTrigger
+{
+ return createWg('modalTrigger', func_get_args());
+}
+
+/**
+ * Modal header widget.
+ *
+ * ?string title
+ * ?string entityText
+ * ?int entityID
+ */
+function modalHeader(): modalHeader
+{
+ return createWg('modalHeader', func_get_args());
+}
+
+/**
+ * Modal dialog widget.
+ *
+ * ?string title
+ * ?int itemID
+ * ?string headerClass
+ * ?array headerProps
+ * ?array actions
+ * ?array footerActions
+ * ?string footerClass
+ * ?array footerProps
+ * bool|array|null closeBtn=true
+ */
+function modalDialog(): modalDialog
+{
+ return createWg('modalDialog', func_get_args());
+}
+
+/**
+ * Tabs widget.
+ *
+ * ?string direction='h'
+ * ?bool collapse=false
+ */
+function tabs(): tabs
+{
+ return createWg('tabs', func_get_args());
+}
+
+/**
+ * Tab pane widget.
+ *
+ * ?bool active
+ * string key
+ * string title
+ *
+ * ====== blocks ======
+ * prefix = array()
+ * suffix = array()
+ * ====================
+ */
+function tabPane(): tabPane
+{
+ return createWg('tabPane', func_get_args());
+}
+
+/**
+ * Panel widget.
+ *
+ * ?string class='rounded shadow ring-0 canvas'
+ * ?string size
+ * ?string title
+ * ?string titleClass
+ * ?array titleProps
+ * ?string headingClass
+ * ?array headingProps
+ * ?array headingActions
+ * ?string bodyClass
+ * ?array bodyProps
+ * ?array footerActions
+ * ?string footerClass
+ * ?array footerProps
+ */
+function panel(): panel
+{
+ return createWg('panel', func_get_args());
+}
+
+function pasteDialog(): pasteDialog
+{
+ return createWg('pasteDialog', func_get_args());
+}
+
+/**
+ * Tooltip widget.
+ */
+function tooltip(): tooltip
+{
+ return createWg('tooltip', func_get_args());
+}
+
+/**
+ * Toolbar widget.
+ *
+ * ?array items
+ * ?string btnClass
+ * ?array btnProps
+ */
+function toolbar(): toolbar
+{
+ return createWg('toolbar', func_get_args());
+}
+
+/**
+ * Zentao search form widget.
+ */
+function searchForm(): searchForm
+{
+ return createWg('searchForm', func_get_args());
+}
+
+/**
+ * Zentao search toggle widget.
+ *
+ * ?bool open
+ */
+function searchToggle(): searchToggle
+{
+ return createWg('searchToggle', func_get_args());
+}
+
+/**
+ * Zentao program menu widget.
+ *
+ * ?array programs
+ * ?string activeClass
+ * ?string activeIcon
+ * ?string activeKey
+ * ?string closeLink
+ */
+function programMenu(): programMenu
+{
+ return createWg('programMenu', func_get_args());
+}
+
+/**
+ * Zentao product menu widget.
+ *
+ * ?string title
+ * ?array items
+ * ?string activeKey
+ * ?string link
+ */
+function productMenu(): productMenu
+{
+ return createWg('productMenu', func_get_args());
+}
+
+/**
+ * Zentao module menu widget.
+ *
+ * array modules
+ * int activeKey
+ * string closeLink
+ */
+function moduleMenu(): moduleMenu
+{
+ return createWg('moduleMenu', func_get_args());
+}
+
+/**
+ * Zentao doc module menu widget.
+ *
+ * array modules
+ * int activeKey
+ * string closeLink
+ */
+function docMenu(): docMenu
+{
+ return createWg('docMenu', func_get_args());
+}
+
+/**
+ * Zentao tree widget.
+ *
+ * ?array items
+ */
+function tree(): Tree
+{
+ return createWg('tree', func_get_args());
+}
+
+/**
+ * Zentao file list widget.
+ *
+ * ?array files
+ * ?int objectID
+ * ?string objectType
+ */
+function fileList(): fileList
+{
+ return createWg('fileList', func_get_args());
+}
+
+/**
+ * Zentao history records widget.
+ *
+ * ?array actions
+ * ?array users
+ * ?string methodName
+ * ?bool commentBtn
+ */
+function history(): history
+{
+ return createWg('history', func_get_args());
+}
+
+/**
+ * Zentao float toolbar widget.
+ *
+ * ?array prefix btns props array.
+ * ?array main btns props array.
+ * ?array suffix btns props array.
+ * ?object object
+ *
+ * ====== blocks ======
+ * dropdowns = array()
+ * ====================
+ */
+function floatToolbar(): floatToolbar
+{
+ return createWg('floatToolbar', func_get_args());
+}
+
+/**
+ * Zentao customize form item dropdown.
+ *
+ * ?string method
+ * ?string url
+ * ?array actions
+ * ?string target
+ * ?array items
+ * ?array value
+ */
+function formItemDropdown(): formItemDropdown
+{
+ return createWg('formItemDropdown', func_get_args());
+}
+
+/**
+ * Zentao editor wg.
+ *
+ * ?bool createInput=false
+ * ?string uploadUrl=''
+ * ?string placeholder=''
+ * ?bool fullscreenable=false
+ * ?bool resizable=false
+ * ?bool exposeEditor=true
+ * ?string size='sm'
+ * ?bool hideMenubar=false
+ * ?bool bubbleMenu=false
+ */
+function editor(): editor
+{
+ return createWg('editor', func_get_args());
+}
+
+/**
+ * Zentao comment button wg.
+ *
+ * ?string dataTarget
+ * ?string dataUrl
+ * ?string dataType
+ * ?string icon
+ * ?string text
+ * ?bool square
+ * ?bool disabled
+ * ?bool active
+ * ?string url
+ * ?string target
+ * ?string trailingIcon
+ * ?string hint
+ * ?string type
+ * ?string btnType
+ * string|int|null size
+ * string|bool|null caret
+ */
+function commentBtn(): commentBtn
+{
+ return createWg('commentBtn', func_get_args());
+}
+
+/**
+ *
+ * Zentao comment dialog wg.
+ *
+ * ?string title,
+ * ?string url
+ * ?string name='comment'
+ * ?string method='POST'
+ */
+function commentDialog(): commentDialog
+{
+ return createWg('commentDialog', func_get_args());
+}
+
+/**
+ * Zentao comment form wg.
+ *
+ * ?string url
+ * ?string name='comment'
+ * ?string method='POST'
+ */
+function commentForm(): commentForm
+{
+ return createWg('commentForm', func_get_args());
+}
+
+/**
+ * Zentao priority number wg.
+ *
+ * int pri
+ */
+function priLabel(): priLabel
+{
+ return createWg('priLabel', func_get_args());
+}
+
+/**
+ * Zentao risk label wg.
+ *
+ * ?string text
+ * ?string level 'h'|'m'|'l'
+ */
+function riskLabel(): riskLabel
+{
+ return createWg('riskLabel', func_get_args());
+}
+
+/**
+ * Zentao severity label wg.
+ *
+ * ?string text
+ * ?int|string level 1|2|3|4
+ */
+function severityLabel(): severityLabel
+{
+ return createWg('severityLabel', func_get_args());
+}
+
+/**
+ * Zentao dashboard widget.
+ *
+ * ?bool responsive 是否启用响应式。
+ * array blocks 区块列表。
+ * ?int grid 栅格数。
+ * ?int gap 间距。
+ * ?int leftStop 区块水平停靠间隔。
+ * ?int cellHeight 网格高度。
+ * ?stringunction|array blockFetch 区块数据获取 url 或选项。
+ * ?array blockDefaultSize 区块默认大小。
+ * array blockSizeMap 区块大小映射。
+ * ?array blockMenu 区块菜单。
+ * ?function onLayoutChange 布局变更事件。
+ */
+function dashboard(): dashboard
+{
+ return createWg('dashboard', func_get_args());
+}
+
+/**
+ * Dashboard panel widget.
+ */
+function blockPanel(): blockPanel
+{
+ return createWg('blockPanel', func_get_args());
+}
+
+/**
+ * Zentao detail page section widget.
+ *
+ * string title
+ * string|array|null content
+ * ?bool useHtml=false
+ *
+ * ====== blocks ======
+ * subTitle => array()
+ * actions => array()
+ * ====================
+ */
+function section(): section
+{
+ return createWg('section', func_get_args());
+}
+
+/**
+ * Zentao detail page section card widget.
+ *
+ * ====== blocks ======
+ * title => array('map' => 'entityLabel')
+ * ====================
+ */
+function sectionCard(): sectionCard
+{
+ return createWg('sectionCard', func_get_args());
+}
+
+/**
+ * Zentao detail page section list widget.
+ */
+function sectionList(): sectionList
+{
+ return createWg('sectionList', func_get_args());
+}
+
+/**
+ * Zentao entity label widget.
+ *
+ * string|int|null entityID
+ * string|int|null level
+ * string text
+ *
+ * ====== blocks ======
+ * suffix = array()
+ * ====================
+ */
+function entityLabel(): entityLabel
+{
+ return createWg('entityLabel',func_get_args());
+}
+
+/**
+ * Zentao table data widget.
+ */
+function tableData(): tableData
+{
+ return createWg('tableData',func_get_args());
+}
+
+/**
+ * Zentao detail page header widget.
+ *
+ * ====== blocks ======
+ * prefix => array()
+ * title => array()
+ * suffix => array()
+ * ====================
+ */
+function detailHeader(): detailHeader
+{
+ return createWg('detailHeader', func_get_args());
+}
+
+/**
+ * Zentao detail page side widget.
+ */
+function detailSide(): detailSide
+{
+ return createWg('detailSide', func_get_args());
+}
+
+/**
+ * Zentao detail page body widget.
+ */
+function detailBody(): detailBody
+{
+ return createWg('detailBody', func_get_args());
+}
+
+/**
+ * ECharts widget.
+ */
+function echarts(): echarts
+{
+ return createWg('echarts', func_get_args());
+}
+
+/**
+ * Popovers widget.
+ *
+ * ?string placement='bottom'
+ * ?string strategy='fixed'
+ * ?bool flip=true
+ * ?array|bool shift=array('padding' => 5)
+ * ?bool arrow=false
+ * ?int offset=1
+ *
+ * ====== blocks ======
+ * trigger = array()
+ * target = array()
+ * ====================
+ */
+function popovers(): popovers
+{
+ return createWg('popovers', func_get_args());
+}
+
+/**
+ * Draggable ul widget.
+ */
+function dragUl(): dragUl
+{
+ return createWg('dragUl', func_get_args());
+}
+
+/**
+ * Back btn widget.
+ *
+ * ?string back
+ */
+function backBtn(): backBtn
+{
+ return createWg('backBtn', func_get_args());
+}
+
+/**
+ * Collapse btn widget.
+ *
+ * string target
+ * string parent
+ */
+function collapseBtn(): collapseBtn
+{
+ return createWg('collapseBtn', func_get_args());
+}
+
+/**
+ * Main navbar widget.
+ *
+ * ?array items
+ */
+function mainNavbar(): mainNavbar
+{
+ return createWg('mainNavbar', func_get_args());
+}
+
+/**
+ * Zentao float Pre and Next Button widget.
+ *
+ * ?string preLink link of pre-button.
+ * ?string nextLink link of next-button.
+ */
+function floatPreNextBtn(): floatPreNextBtn
+{
+ return createWg('floatPreNextBtn', func_get_args());
+}
+
+/**
+ * Upload widget.
+ *
+ * string name
+ * ?string icon
+ * ?bool showIcon=true
+ * ?bool showSize=true
+ * ?bool multiple=true
+ * ?string listPosition="bottom"
+ * ?string uploadText
+ * ?string uploadIcon
+ * ?bool renameBtn=true
+ * ?string renameIcon
+ * ?string renameText
+ * ?string renameClass
+ * ?bool deleteBtn=true
+ * ?string deleteText
+ * ?string deleteIcon
+ * ?string deleteClass
+ * ?string confirmText
+ * ?string cancelText
+ * ?bool useIconBtn=true
+ * ?string tip
+ * ?string btnClass
+ * ?callable onAdd
+ * ?callable onDelete
+ * ?callable onRename
+ * ?callable onSizeChange
+ * ?bool draggable
+ * ?int limitCount
+ * ?string accept
+ * ?object[] defaultFileList
+ * false|string|null limitSize=false
+ * ?string duplicatedHint
+ * ?string exceededSizeHint
+ * ?string exceededCountHint
+ */
+function upload(): upload
+{
+ return createWg('upload', func_get_args());
+}
+
+/**
+ * Upload images widget.
+ *
+ * string name
+ * ?bool showSize=true
+ * ?bool multiple=true
+ * ?string uploadText
+ * ?string uploadIcon
+ * ?bool renameBtn=true
+ * ?string renameIcon
+ * ?string renameText
+ * ?string renameClass
+ * ?bool deleteBtn=true
+ * ?string deleteIcon
+ * ?string deleteText
+ * ?string deleteClass
+ * ?string tip
+ * ?string btnClass
+ * ?callable onAdd
+ * ?callable onDelete
+ * ?callable onRename
+ * ?callable onSizeChange
+ * ?int limitCount
+ * ?string accept
+ * ?object[] defaultFileList
+ * false|string|null limitSize=false
+ * ?string duplicatedHint
+ * ?string exceededSizeHint
+ * ?string exceededCountHint
+ * ?string totalCountText
+ */
+function uploadImgs(): uploadImgs
+{
+ return createWg('uploadImgs', func_get_args());
+}
+
+/**
+ * Burn widget.
+ *
+ * ?string|array data
+ * ?bool referenceLine
+ */
+function burn(): burn
+{
+ return createWg('burn', func_get_args());
+}
+
+/**
+ * Monaco widget.
+ *
+ * string id
+ * ?string action
+ * ?string options
+ * ?string diffContent
+ * ?string onMouseDown
+ */
+function monaco(): monaco
+{
+ return createWg('monaco', func_get_args());
+}
+
+/**
+ * Dynamic widget.
+ *
+ * ?array dynamics
+ * ?array users
+ * ?string className
+ */
+function dynamic(): dynamic
+{
+ return createWg('dynamic', func_get_args());
+}
+
+/**
+ * Form setting button.
+ *
+ * ?array customFields
+ * ?string urlParams
+ */
+function formSettingBtn(): formSettingBtn
+{
+ return createWg('formSettingBtn', func_get_args());
+}
+
+/**
+ * Overview block widget.
+ *
+ * string id
+ * string title
+ */
+function overviewBlock(): overviewBlock
+{
+ return createWg('overviewBlock', func_get_args());
+}
+
+/**
+ * Picker widget.
+ */
+function picker(): picker
+{
+ return createWg('picker', func_get_args());
+}
+
+/**
+ * Pri picker widget.
+ *
+ * ?string placeholder
+ * ?string[]|object[]|object|array items
+ */
+function priPicker(): priPicker
+{
+ return createWg('priPicker', func_get_args());
+}
+
+/**
+ * Severity picker widget.
+ *
+ * ?string placeholder
+ * ?string[]|object[]|object|array items
+ */
+function severityPicker(): severityPicker
+{
+ return createWg('severityPicker', func_get_args());
+}
+
+function hr(): hr
+{
+ return createWg('hr', func_get_args());
+}
+
+/**
+ * Global search widget.
+ *
+ * string commonSearchText
+ * string commonSearchUrl
+ * array searchItems
+ */
+function globalSearch(): globalSearch
+{
+ return createWg('globalSearch', func_get_args());
+}
+
+/**
+ * Steps editor widget.
+ */
+function stepsEditor(): stepsEditor
+{
+ return createWg('stepsEditor', func_get_args());
+}
+
+/**
+ * table and chart widget.
+ */
+function tableChart(): tableChart
+{
+ return createWg('tableChart', func_get_args());
+}
diff --git a/lib/zin/helper.php b/lib/zin/helper.php
new file mode 100644
index 0000000000..2e9d749dcd
--- /dev/null
+++ b/lib/zin/helper.php
@@ -0,0 +1,131 @@
+
+ * @package zin
+ * @version $Id
+ * @link https://www.zentao.net
+ */
+
+namespace zin;
+
+require_once __DIR__ . DS . 'config.php';
+
+function setWgVer($ver, $names = null)
+{
+ global $config;
+ $zinConfig = $config->zin;
+
+ if(is_string($names)) $names = explode(',', $names);
+ if(!is_array($names)) return;
+
+ foreach($names as $name)
+ {
+ $name = trim($name);
+ if(!empty($name)) continue;
+
+ $zinConfig->wgVerMap[$name] = $ver;
+ }
+}
+
+function getWgVer($name)
+{
+ global $config;
+
+ return isset($config->zin->verMap[$name]) ? $config->zin->verMap[$name] : $config->zin->wgVer;
+}
+
+function createWg($name, $args): wg
+{
+ $name = strtolower($name);
+ $wgVer = getWgVer($name);
+
+ include_once __DIR__ . DS . 'wg' . DS . $name . DS . "v$wgVer.php";
+
+ $wgName = "\\zin\\$name";
+
+ return class_exists($wgName) ? (new $wgName($args)) : $wgName($args);
+}
+
+if(!function_exists('str_contains'))
+{
+ /**
+ * Determine if a string contains a given substring
+ *
+ * @param string $haystack
+ * @param string $needle
+ * @return bool
+ */
+ function str_contains($haystack, $needle)
+ {
+ return strpos($haystack, $needle) !== false;
+ }
+}
+else
+{
+ function str_contains($haystack, $needle)
+ {
+ return \str_contains($haystack, $needle);
+ }
+}
+
+if(!function_exists('str_starts_with'))
+{
+ /**
+ * Checks if a string starts with a given substring
+ *
+ * @param string $haystack
+ * @param string $needle
+ * @return bool
+ */
+ function str_starts_with($haystack, $needle)
+ {
+ return strpos($haystack, $needle) === 0;
+ }
+}
+else
+{
+ function str_starts_with($haystack, $needle)
+ {
+ return \str_starts_with($haystack, $needle);
+ }
+}
+
+if(!function_exists('str_ends_with'))
+{
+ /**
+ * Checks if a string starts with a given substring.
+ *
+ * @param string $haystack
+ * @param string $needle
+ * @return bool
+ */
+ function str_ends_with($haystack, $needle)
+ {
+ $length = strlen($needle);
+ if ($length === 0) return true;
+
+ $position = strpos($haystack, $needle);
+ return $position !== false && $position === strlen($haystack) - $length;
+ }
+}
+else
+{
+ function str_ends_with($haystack, $needle)
+ {
+ return \str_ends_with($haystack, $needle);
+ }
+}
+
+function uncamelize(string $camelCaps, string $separator = '-'): string
+{
+ return strtolower(preg_replace('/([a-z])([A-Z])/', "$1" . $separator . "$2", $camelCaps));
+}
+
+function isHTML(string $string): bool
+{
+ return $string !== strip_tags($string) ? true : false;
+}
diff --git a/lib/zin/utils/classlist.class.php b/lib/zin/utils/classlist.class.php
new file mode 100644
index 0000000000..4332cf9eff
--- /dev/null
+++ b/lib/zin/utils/classlist.class.php
@@ -0,0 +1,314 @@
+
+ * @package zin
+ * @version $Id
+ * @link https://www.zentao.net
+ */
+
+namespace zin\utils;
+
+/**
+ * Manage classname list for html element and widgets
+ */
+class classlist
+{
+ /**
+ * Store classname list, key => value
+ *
+ * @access public
+ * @var array
+ */
+ public $list = array();
+
+ /**
+ * Create classname instance
+ *
+ * @access public
+ * @param array ...$list - A string or a class name list
+ */
+ public function __construct(/* ...$list */)
+ {
+ $list = func_get_args();
+ if(!empty($list)) $this->set($list);
+ }
+
+ /**
+ * Convert classnames to string
+ *
+ * @access public
+ * @return string
+ */
+ public function __toString()
+ {
+ return $this->toStr();
+ }
+
+ /**
+ * Override __invoke
+ *
+ * Example:
+ *
+ * $classlist = classlist::create('btn primary');
+ * echo $classlist(); // Output: "btn primary"
+ *
+ * @access public
+ * @param array $list - Class name list
+ * @return string
+ */
+ public function __invoke()
+ {
+ $list = func_get_args();
+ if(empty($list)) return $this->toStr();
+ return $this->set($list);
+ }
+
+ /**
+ * Override __call to invoke toggle method conveniently
+ *
+ * Example:
+ *
+ * $classlist = classlist::new();
+ *
+ * // Add "primary" class
+ * $classlist->primary();
+ *
+ * // Remove "primary" class
+ * $classlist->primary(false);
+ *
+ * @access public
+ * @return classlist
+ */
+ public function __call($name, $args)
+ {
+ return $this->toggle($name, !count($args) || $args[0]);
+ }
+
+ /**
+ * Create classname instance
+ *
+ * Example:
+ *
+ * // Set class names
+ * $classlist = new classlist();
+ * $classlist->set('btn primary rounded');
+ *
+ * // Set multiple classnames by string list
+ * $classlist->set(array('btn', 'primary', 'rounded'));
+ *
+ * // Set multiple classnames by a mapped array
+ * $classlist->set(array('btn' => true, 'primary' => true, 'rounded' => $isRounded));
+ *
+ * @access public
+ * @param string|array $list - A string or a class name list
+ * @param bool $reset
+ * @return classlist
+ */
+ public function set($list, $reset = false)
+ {
+ if(is_string($list)) $list = explode(' ', $list);
+
+ if(is_array($list))
+ {
+ if($reset) $this->list = array();
+
+ $expectedKey = 0;
+ foreach($list as $index => $value)
+ {
+ if(is_array($value))
+ {
+ $this->set($value);
+ continue;
+ }
+
+ /* If $index is expected numberic key and the $value is string, then use the $value as the name */
+ if($expectedKey === $index && is_string($value))
+ {
+ $value = trim($value);
+ if(strlen($value) > 0) $this->list[$value] = true;
+ }
+ /* If index is string, then set $index as name */
+ else if(is_string($index))
+ {
+ $index = trim($index);
+ if(strlen($index) === 0) continue;
+
+ $this->list[$index] = boolval($value);
+ }
+ $expectedKey++;
+ }
+ }
+
+ return $this;
+ }
+
+ /**
+ * Add classnames
+ *
+ * Example:
+ *
+ * $classlist = new classlist();
+ * $classlist->add('btn primary rounded');
+ *
+ * // Add multiple classnames by string list
+ * $classlist->add('btn', 'primary', 'rounded');
+ *
+ * @access public
+ * @param array ...$list - classname string joined by space or string array
+ * @return classlist
+ */
+ public function add(/* ...$list */)
+ {
+ return $this->set(func_get_args());
+ }
+
+ /**
+ * Remove classnames
+ *
+ * Example:
+ *
+ * $classlist = new classlist('btn primary rounded');
+ * $classlist->remove('btn primary');
+ *
+ * // Add multiple classnames by string list
+ * $classlist->remove('btn', 'primary');
+ *
+ * @access public
+ * @param array|string $list - classname string joined by space or string array
+ * @return classlist
+ */
+ public function remove($list)
+ {
+ if(is_string($list)) $list = explode(' ', $list);
+
+ foreach($list as $name)
+ {
+ if(!is_string($name)) continue;
+ $name = trim($name);
+ if(!strlen($name)) continue;
+
+ $this->list[$name] = false;
+ }
+ return $this;
+ }
+
+ /**
+ * Toggle classname
+ *
+ * Example:
+ *
+ * $classlist = new classlist('btn');
+ * $classlist->toggle('btn'); // class list is ""
+ *
+ * // Toggle class name by flag
+ * $classlist->toggle('primary', true); // class list is "primary"
+ *
+ * @access public
+ * @param string $name - classname string
+ * @return classlist
+ */
+ public function toggle($name, $toggle = null)
+ {
+ $name = trim($name);
+ if(strlen($name))
+ {
+ if($toggle === null) $toggle = !$this->has($name);
+ $this->list[$name] = $toggle;
+ }
+ return $this;
+ }
+
+ /**
+ * Check whether has specific class name
+ *
+ * Example:
+ *
+ * $classlist = new classlist('btn primary rounded');
+ * echo $classlist->has('btn'); // Output true
+ *
+ * // Check multiple names
+ * echo $classlist->has('btn primary'); // Output true
+ */
+ public function has($list)
+ {
+ if(is_string($list)) $list = explode(' ', $list);
+
+ foreach($list as $name)
+ {
+ if(!is_string($name)) continue;
+ $name = trim($name);
+ if(!strlen($name)) continue;
+
+ if(!isset($this->list[$name]) || !$this->list[$name]) return false;
+ }
+ return true;
+ }
+
+ public function clear()
+ {
+ $this->list = array();
+ }
+
+ /**
+ * Convert classnames to string
+ *
+ * @access public
+ * @return string
+ */
+ public function toStr(): string
+ {
+ $names = array();
+ foreach($this->list as $name => $toggle)
+ {
+ if(!$toggle) continue;
+
+ $name = trim($name);
+ if(!strlen($name)) continue;
+
+ $names[] = $name;
+ }
+ return implode(' ', $names);
+ }
+
+ /**
+ * Get class names count
+ *
+ * @access public
+ * @return int
+ */
+ public function count()
+ {
+ return count($this->list);
+ }
+
+ /**
+ * Create an classlist instance
+ *
+ * @param string|array $names - A string or a class name list
+ * @return classlist
+ */
+ static public function new($names = null)
+ {
+ return (new classlist($names));
+ }
+
+ /**
+ * Stringify class list
+ *
+ * @param string|array $names - A string or a class name list
+ * @return string
+ */
+ static public function str($names)
+ {
+ return (new classlist($names))->toStr();
+ }
+
+ public function toJSON()
+ {
+ return $this->list;
+ }
+}
diff --git a/lib/zin/utils/data.class.php b/lib/zin/utils/data.class.php
new file mode 100644
index 0000000000..1f34a87a83
--- /dev/null
+++ b/lib/zin/utils/data.class.php
@@ -0,0 +1,84 @@
+
+ * @package zin
+ * @version $Id
+ * @link https://www.zentao.net
+ */
+
+namespace zin\utils;
+
+require_once __DIR__ . DS . 'dataset.class.php';
+
+/**
+ * Manage data for html element and widgets
+ */
+class data extends dataset
+{
+ public function __constructor()
+ {
+ $list = func_get_args();
+
+ foreach($list as $data) $this->set($data);
+ }
+
+ /**
+ * Method for sub class to modify value on setting it
+ *
+ * @access public
+ * @param array|string $prop - Property name or properties list
+ * @param mixed $value - Property value
+ * @param bool $removeEmpty - Whether to remove empty value
+ * @return dataset
+ */
+ protected function setVal($prop, $value, $removeEmpty = false)
+ {
+ if($prop[0] === '$') $prop = substr($prop, 1);
+
+ if($value === null || ($removeEmpty && empty($value))) return $this->remove($prop);
+
+ $names = explode('.', $prop);
+ $lastName = array_pop($names);
+ $data = &$this->data;
+ if(!empty($names))
+ {
+ foreach($names as $name)
+ {
+ if(!is_array($data))
+ {
+ return $this;
+ }
+
+ if(!isset($data[$name])) $data[$name] = array();
+ $data = &$data[$name];
+ }
+ }
+
+ if($value === null || ($removeEmpty && empty($value)))
+ {
+ if(isset($data[$lastName])) unset($data[$lastName]);
+ return $this;
+ }
+
+ $data[$lastName] = $value;
+ return $this;
+ }
+
+ protected function getVal($prop)
+ {
+ if($prop[0] === '$') $prop = substr($prop, 1);
+
+ $names = explode('.', $prop);
+ $data = &$this->data;
+ foreach($names as $name)
+ {
+ if(!is_array($data)) return null;
+ $data = &$data[$name];
+ }
+ return $data;
+ }
+}
diff --git a/lib/zin/utils/dataset.class.php b/lib/zin/utils/dataset.class.php
new file mode 100644
index 0000000000..5658f9189e
--- /dev/null
+++ b/lib/zin/utils/dataset.class.php
@@ -0,0 +1,288 @@
+
+ * @package zin
+ * @version $Id
+ * @link https://www.zentao.net
+ */
+
+namespace zin\utils;
+
+/**
+ * Manage dataset properties for html element and widgets
+ */
+class dataset
+{
+ /**
+ * Store dataset properties list in an array
+ *
+ * @var array
+ * @access public
+ */
+ public array $data = array();
+
+ /**
+ * Create an instance, the initialed data can be passed
+ *
+ * @access public
+ * @param array $data - Properties list array
+ */
+ public function __construct(?array $data = null)
+ {
+ if($data !== null) $this->set($data);
+ }
+
+ /**
+ * Override __set
+ *
+ * @access public
+ * @param string $prop - Property name
+ * @param mixed $value - Property value
+ * @return void
+ */
+ public function __set(string $name, mixed $value)
+ {
+ $this->set($name, $value);
+ }
+
+ /**
+ * Override __get
+ *
+ * @access public
+ * @param string $prop - Property name
+ * @return mixed
+ */
+ public function __get(string $name)
+ {
+ $this->get($name);
+ }
+
+ /**
+ * Override __isset
+ *
+ * @access public
+ * @param string $prop - Property name
+ * @return bool
+ */
+ public function __isset(string $name): bool
+ {
+ return $this->has($name);
+ }
+
+ /**
+ * Override __unset
+ *
+ * @access public
+ * @param string $prop - Property name
+ * @return void
+ */
+ public function __unset(string $name)
+ {
+ $this->remove($name);
+ }
+
+ /**
+ * Convert dataset to json string
+ *
+ * @access public
+ * @return string
+ */
+ public function __toString(): string
+ {
+ return $this->toStr();
+ }
+
+ /**
+ * Override __invoke
+ *
+ * @access public
+ * @return string
+ */
+ public function __invoke(string|array $name = null, mixed $value = null): string
+ {
+ if($value !== null || is_array($name)) return $this->set($name, $value);
+ if(is_string($name)) return $this->get($name);
+
+ return $this->toStr();
+ }
+
+ /**
+ * Override __call for setting property conveniently
+ *
+ * Example:
+ *
+ * $dataset = dataset::new();
+ *
+ * // Set color property
+ * $dataset->color('red');
+ *
+ * // Get color property
+ * echo $dataset->color(); // Output "Red"
+ *
+ * @access public
+ * @return mixed
+ */
+ public function __call(string $name, array $args): mixed
+ {
+ if(count($args)) return $this->set($name, $args[0]);
+
+ return $this->get($name);
+ }
+
+ /**
+ * Method for sub class to modify value on setting it
+ *
+ * @access protected
+ * @param string $prop - Property name or properties list
+ * @param mixed $value - Property value
+ * @return dataset
+ */
+ protected function setVal(string $prop, mixed $value): dataset
+ {
+ $this->data[$prop] = $value;
+ return $this;
+ }
+
+ protected function getVal(string $prop): mixed
+ {
+ return isset($this->data[$prop]) ? $this->data[$prop] : null;
+ }
+
+ /**
+ * Get properties count
+ *
+ * @access public
+ * @param bool $skipEmpty - Whether to skip to count empty value
+ * @return int
+ */
+ public function count($skipEmpty = false): int
+ {
+ if(!$skipEmpty) return count($this->data);
+
+ $count = 0;
+ foreach($this->data as $value)
+ {
+ if($value !== null) $count++;
+ }
+ return $count;
+ }
+
+ /**
+ * Convert dataset to json string
+ *
+ * @access public
+ * @return string
+ */
+ public function toStr(): string
+ {
+ return json_encode($this->toJsonData());
+ }
+
+ public function toJsonData(): array
+ {
+ return $this->data;
+ }
+
+ /**
+ * Set property, an array can be passed to set multiple properties
+ *
+ * @access public
+ * @param array|string $prop - Property name or properties list
+ * @param mixed $value - Property value
+ * @return dataset
+ */
+ public function set(array|string $prop, mixed $value = null): dataset
+ {
+ if(is_array($prop))
+ {
+ foreach($prop as $name => $val) $this->set($name, $val);
+ return $this;
+ }
+
+ return $this->setVal($prop, $value);
+ }
+
+ /**
+ * Get property value by name
+ *
+ * @access public
+ * @param string $prop - Property name
+ * @param mixed $defaultValue - Optional default value if actual value is null
+ * @return mixed
+ */
+ public function get($prop, $defaultValue = null)
+ {
+ $val = $this->getVal($prop);
+ return $val === null ? $defaultValue : $val;
+ }
+
+ public function addToList($prop, $values)
+ {
+ if(!is_array($values)) $values = array($values);
+
+ $list = $this->getList($prop);
+ $this->set($prop, array_merge($list, $values));
+ }
+
+ public function getList($prop)
+ {
+ return $this->get($prop, array());
+ }
+
+ public function list($prop, $values = null)
+ {
+ if($values === null) return $this->getList($prop);
+ return $this->setList($prop, $values);
+ }
+
+ /**
+ * Delete property by name
+ *
+ * @access public
+ * @param string $prop - Property name
+ * @return dataset
+ */
+ public function remove($prop)
+ {
+ return $this->setVal($prop, null);
+ }
+
+ public function clear()
+ {
+ $this->data = array();
+ }
+
+ /**
+ * Check whether has specified property
+ *
+ * @access public
+ * @param string $prop - Property name
+ * @return boolean
+ */
+ public function has($prop)
+ {
+ return $this->getVal($prop) !== null;
+ }
+
+ /**
+ * Clone a new instance
+ *
+ * @access public
+ * @return object
+ */
+ public function clone()
+ {
+ $className = get_called_class();
+ return new $className($this->data);
+ }
+
+ public function merge($data)
+ {
+ if(is_object($data) && isset($data->data)) return $this->set($data->data);
+ return $this->set($data);
+ }
+}
diff --git a/lib/zin/utils/debug.func.php b/lib/zin/utils/debug.func.php
new file mode 100644
index 0000000000..eedc48a7d3
--- /dev/null
+++ b/lib/zin/utils/debug.func.php
@@ -0,0 +1,45 @@
+
+ * @package zin
+ * @version $Id
+ * @link https://www.zentao.net
+ */
+
+namespace zin\utils;
+
+$logs = array();
+
+function log($type, $msg = null, $file)
+{
+ global $config;
+
+ if(!$config->debug) return;
+
+ if($msg === null)
+ {
+ $msg = $type;
+ $type = 'i';
+ }
+
+ if(is_array($msg))
+ {
+ $msgLines = array();
+ foreach($msg as $m) $msgLines[] = strval($m);
+ $msg = implode(' ', $msgLines);
+ }
+ else
+ {
+ $msg = strval($msg);
+ }
+
+ $logs[] = array(array('type' => strtolower($type), 'msg' => $msg));
+}
+
+function logInfo($msg, $file = null) {log('i', $msg, $file);};
+function logWarn($msg, $file = null) {log('w', $msg, $file);};
+function logError($msg, $file = null) {log('e', $msg, $file);};
diff --git a/lib/zin/utils/deep.func.php b/lib/zin/utils/deep.func.php
new file mode 100644
index 0000000000..cf67d59820
--- /dev/null
+++ b/lib/zin/utils/deep.func.php
@@ -0,0 +1,38 @@
+$name)) return $defaultValue;
+ $data = &$data->$name;
+ continue;
+ }
+ if(!is_array($data) || !isset($data[$name])) return $defaultValue;
+ $data = &$data[$name];
+ }
+ return $data === null ? $defaultValue : $data;
+}
+
+function deepSet(array &$data, string $namePath, mixed $value)
+{
+ $names = explode('.', $namePath);
+ $lastName = array_pop($names);
+ if(!empty($names))
+ {
+ foreach($names as $name)
+ {
+ if(!is_array($data)) return;
+
+ if(!isset($data[$name])) $data[$name] = array();
+ $data = &$data[$name];
+ }
+ }
+
+ $data[$lastName] = $value;
+}
diff --git a/lib/zin/utils/flat.func.php b/lib/zin/utils/flat.func.php
new file mode 100644
index 0000000000..f597fbf17b
--- /dev/null
+++ b/lib/zin/utils/flat.func.php
@@ -0,0 +1,20 @@
+ $value)
+ {
+ if(is_array($value))
+ {
+ $result = array_merge($result, flat($value, $prefix . $key . $separator));
+ }
+ else
+ {
+ $result[$prefix . $key] = $value;
+ }
+ }
+ return $result;
+}
diff --git a/lib/zin/utils/hx.class.php b/lib/zin/utils/hx.class.php
new file mode 100644
index 0000000000..231504b0c8
--- /dev/null
+++ b/lib/zin/utils/hx.class.php
@@ -0,0 +1,126 @@
+
+ * @package zin
+ * @version $Id
+ * @link https://www.zentao.net
+ */
+
+namespace zin\utils;
+
+require_once __DIR__ . DS . 'dataset.class.php';
+
+/**
+ * Manage hx for html element and widgets
+ *
+ * Example:
+ *
+ * // Create a hx object an convert to str string
+ * $hx = hx::new()->boost();
+ *
+ * echo $hx(); // Output 'hx-boost="true"'
+ *
+ * @see https://htmx.org/
+ * @todo @sunhao: Validate hx properties on modifying
+ */
+class hx extends dataset
+{
+ /**
+ * Method for sub class to modify value on setting it
+ *
+ * @access public
+ * @param array|string $prop - Property name or properties list
+ * @param mixed $value - Property value
+ * @param bool $removeEmpty - Whether to remove empty value
+ * @return hx
+ */
+ protected function setVal($prop, $value, $removeEmpty = false)
+ {
+ if(str_starts_with($prop, 'hx-')) $prop = substr($prop, 3);
+ return parent::setVal($prop, $value);
+ }
+
+ /**
+ * Set ajax request
+ *
+ * @access public
+ * @param string $url - The request url
+ * @param string $trigger - The trigget
+ * @param string $target - A css selector to specific a element to load remote content
+ * @param string $method - The request method, default value is "get"
+ * @return hx
+ * @see https://htmx.org/docs/#ajax
+ */
+ public function ajax($url, $trigger = '', $target = '', $method = 'get')
+ {
+ if(is_array($url)) return $this->set($url);
+
+ return $this->set(array('url' => $url, 'trigger' => $trigger, 'target' => $target, 'method' => $method));
+ }
+
+ /**
+ * Set ajax post request
+ *
+ * @access public
+ * @param string $url - The request url
+ * @param string $trigger - The trigget
+ * @param string $target - A css selector to specific a element to load remote content
+ * @return hx
+ * @see https://htmx.org/docs/#ajax
+ */
+ public function post($url, $trigger = '', $target = '')
+ {
+ return $this->ajax($url, $trigger, $target, 'post');
+ }
+
+ /**
+ * Convert hx properties to str string
+ *
+ * @access public
+ * @return string
+ */
+ public function toStr()
+ {
+ $pairs = array();
+
+ foreach($this->data as $name => $value)
+ {
+ /* Skip any null value */
+ if($value === null) continue;
+
+ /* Convert non-string to json */
+ if(!is_string($value)) $value = json_encode($value);
+
+ $pairs[] = 'hx-' . $name . '="' . htmlspecialchars($value) . '"';
+ }
+
+ return implode(' ', $pairs);
+ }
+
+ /**
+ * Create an instance
+ *
+ * @param string $hx - CSS hx list
+ * @return hx
+ */
+ static public function new($hx)
+ {
+ return new hx($hx);
+ }
+
+ /**
+ * Create properties string from hx list
+ *
+ * @access public
+ * @param string $hx - CSS hx list
+ * @return string
+ */
+ static public function str($props)
+ {
+ return (new hx($props))->toStr();
+ }
+}
diff --git a/lib/zin/utils/style.class.php b/lib/zin/utils/style.class.php
new file mode 100644
index 0000000000..19b8b7607c
--- /dev/null
+++ b/lib/zin/utils/style.class.php
@@ -0,0 +1,174 @@
+
+ * @package zin
+ * @version $Id
+ * @link https://www.zentao.net
+ */
+
+namespace zin\utils;
+
+require_once __DIR__ . DS . 'dataset.class.php';
+
+/**
+ * Manage style for html element and widgets
+ *
+ * Example:
+ *
+ * // Create a style object an convert to css string
+ * $style = style::create(array('color' => 'red'));
+ * echo $style(); // Output "color:red"
+ *
+ * // Above example same as:
+ * echo style::css(array('color' => 'red'));
+ *
+ * // Modifier style
+ * $style = style::create(array('color' => 'red'));
+ * $style->set('background', 'green');
+ *
+ * // Modifier style with property name directly
+ * $style->background = 'green';
+ *
+ * // Get style value
+ * echo $style->get('background'); // Output "green"
+ *
+ * // Get style value with property name directly
+ * echo $style->background; // Output "green"
+ *
+ * @todo @sunhao: Validate style properties on modifying
+ */
+class style extends dataset
+{
+ /**
+ * Set or get css variable, an array can be passed to set multiple variables
+ * If only pass variable name, then the variable value will be returned
+ * If no params passed, then return all setted variables with an array
+ *
+ * Notice: no need to prepend prefix '--' to variable name, the method will prepend it automatically, if prepended already, the method will skip to prepend smartly
+ *
+ * Example:
+ *
+ * // Create a style object and set
+ * $style = new style();
+ * $style->cssVar('text-size', '14px');
+ *
+ * // Set multiple variables
+ * $style->cssVar(array('text-color' => 'yellow', 'background-image' => 'none'));
+ *
+ * // Get variable value
+ * echo $style->cssVar('text-size'); // Output "14px"
+ *
+ * // Get all variables value
+ * echo $style->cssVar();
+ * // Output array('text-size' => '14px', 'color' => 'yellow', 'background' => 'none');
+ *
+ * // Remove variable by setting value with an empty string
+ * $style->cssVar('text-color', '');
+ *
+ * @access public
+ * @param array|string $name - Variable name or variables list
+ * @param mixed $value - Property value
+ * @return mixed
+ */
+ public function cssVar(array|string $name = '', ?string $value = null): style|array|string
+ {
+ /* Support for setting multiple variables by an array */
+ if(is_array($name))
+ {
+ foreach($name as $n => $value) $this->set(style::formatVarName($n), $value);
+ return $this;
+ }
+
+ /* Return all setted variables without passed any params */
+ if(empty($name))
+ {
+ $vars = array();
+ foreach ($this->data as $prop => $value)
+ {
+ if(!str_starts_with($name, '--')) continue;
+ $vars[substr($prop, 2)] = $value;
+ }
+ return $vars;
+ }
+
+ $varName = style::formatVarName($name);
+
+ /* Return the specific variable value by name */
+ if($value === null) return $this->get($varName);
+
+ /* Set the specific variable value and return style object self */
+ $this->set($varName, $value === '' ? null : $value);
+ return $this;
+ }
+
+ /**
+ * Convert to string
+ *
+ * @access public
+ * @return string
+ */
+ public function toStr(): string
+ {
+ return $this->toCss();
+ }
+
+ /**
+ * Convert style to css string
+ *
+ * @access public
+ * @return string
+ */
+ public function toCss(): string
+ {
+ $pairs = array();
+
+ foreach($this->data as $prop => $value)
+ {
+ /* Skip any empty value */
+ if($value === null || $value === '') continue;
+
+ $pairs[] = $prop . ': ' . strval($value) . ';';
+ }
+
+ return implode(' ', $pairs);
+ }
+
+ /**
+ * Create an instance
+ *
+ * @param ?array $style - CSS style list
+ * @return style
+ */
+ public static function new(?array $style = null): style
+ {
+ return new style($style);
+ }
+
+ /**
+ * Create css from style list
+ *
+ * @access public
+ * @param ?array $style - CSS style list
+ * @return string
+ */
+ public static function css(?array $style): string
+ {
+ return (new style($style))->toCss();
+ }
+
+ /**
+ * Format CSS variable name with prefix "--"
+ *
+ * @access public
+ * @param string $name - CSS variable name
+ * @return string
+ */
+ public static function formatVarName(string $name): string
+ {
+ return \zin\str_starts_with($name, '--') ? $name : "--$name";
+ }
+}
diff --git a/lib/zin/wg/actionitem/v1.php b/lib/zin/wg/actionitem/v1.php
new file mode 100644
index 0000000000..6750cd7457
--- /dev/null
+++ b/lib/zin/wg/actionitem/v1.php
@@ -0,0 +1,139 @@
+prop(array('icon', 'text', 'trailingIcon', 'textClass'));
+
+ return h::div
+ (
+ set($this->props->skip(array_keys(actionItem::definedPropsList()))),
+ set($this->prop('props')),
+ $icon ? icon($icon) : null,
+ empty($text) ? null : span($text, setClass('text', $textClass)),
+ $this->children(),
+ $trailingIcon ? icon($trailingIcon) : null,
+ );
+ }
+
+ protected function buildDropdownItem()
+ {
+ list($dropdown, $items, $icon, $text, $trailingIcon, $active, $disabled, $badge, $props, $caret, $textClass) = $this->prop(array('dropdown', 'items', 'icon', 'text', 'trailingIcon', 'active', 'disabled', 'badge', 'props', 'caret', 'textClass'));
+
+ if(is_string($badge))
+ {
+ $badge = label($badge);
+ }
+ elseif(is_array($badge))
+ {
+ $badge = label(set($badge));
+ }
+
+ $dropdown = new dropdown
+ (
+ set::items($items),
+ set($dropdown),
+ h::a(
+ setClass(array('active' => $active, 'disabled' => $disabled)),
+ set($this->getRestProps()),
+ set($props),
+ $icon ? icon($icon) : null,
+ span($text, setClass('text', $textClass)),
+ $badge,
+ $this->children(),
+ $trailingIcon ? icon($trailingIcon) : null,
+ h::span(setClass(is_string($caret) ? "caret-$caret" : 'caret'))
+ )
+ );
+ return $dropdown;
+ }
+
+ protected function buildBtnItem()
+ {
+ return new btn($this->props->skip('tagName,type,name,outerTag,outerProps,props'), set($this->prop('props')),$this->children());
+ }
+
+ protected function buildCheckboxItem()
+ {
+ return new checkbox($this->props->skip('tagName,type,name,outerTag,outerProps,props'), set($this->prop('props')),$this->children());
+ }
+
+ protected function buildBtnGroupItem()
+ {
+ return new btnGroup($this->props->skip('tagName,type,name,outerTag,outerProps,props'), set($this->prop('props')),$this->children());
+ }
+
+ protected function buildItem()
+ {
+ $type = $this->prop('type');
+ $methodName = "build{$type}Item";
+ if(method_exists($this, $methodName)) return $this->$methodName();
+
+ list($tagName, $icon, $text, $trailingIcon, $url, $target, $active, $disabled, $badge, $textClass) = $this->prop(array('tagName', 'icon', 'text', 'trailingIcon', 'url', 'target', 'active', 'disabled', 'badge', 'textClass'));
+
+ if(is_string($badge)) $badge = label($badge);
+ else if(is_array($badge)) $badge = label(set($badge));
+
+ return h::create
+ (
+ $tagName,
+ set($tagName === 'a' ? array('href' => $url, 'target' => $target) : array('data-url' => $url, 'data-target' => $target)),
+ setClass(array('active' => $active, 'disabled' => $disabled)),
+ set($this->getRestProps()),
+ set($this->prop('props')),
+ $icon ? icon($icon) : null,
+ span($text, setClass('text', $textClass)),
+ $badge,
+ $this->children(),
+ $trailingIcon ? icon($trailingIcon) : null,
+ );
+ }
+
+ protected function build(): wg
+ {
+ list($name, $type, $outerTag, $outerProps, $outerClass) = $this->prop(array('name', 'type', 'outerTag', 'outerProps', 'outerClass'));
+
+ return h::create
+ (
+ $outerTag,
+ setClass(($type !== 'item' && $type !== 'divider') ? 'nav-item' : '', "$name-$type", $outerClass),
+ set($outerProps),
+ $this->buildItem()
+ );
+ }
+}
diff --git a/lib/zin/wg/avatar/v1.php b/lib/zin/wg/avatar/v1.php
new file mode 100644
index 0000000000..41a534f294
--- /dev/null
+++ b/lib/zin/wg/avatar/v1.php
@@ -0,0 +1,297 @@
+ 20, 'sm' => 24, 'lg' => 48, 'xl' => 80);
+ private $actualSize = 32;
+ private $finalClass = array('avatar');
+ private $finalStyle;
+
+ protected function onAddChild($child)
+ {
+ if(is_string($child) && !$this->props->has('text'))
+ {
+ $this->setProp('text', $child);
+ return false;
+ }
+
+ return $child;
+ }
+
+ protected function build(): wg
+ {
+ /* Attach classes. */
+ $this->finalClass[] = $this->prop('className');
+
+ /* Init style. */
+ $this->finalStyle = new stdClass();
+ $this->finalStyle->background = $this->prop('background');
+ $this->finalStyle->color = $this->prop('foreColor');
+
+ foreach($this->props->style->data as $attr => $val) $this->finalStyle->{$attr} = $val;
+
+ /* Init avatar size. */
+ $this->initSize();
+ /* Init avatar shape. */
+ $this->initShape();
+
+ $content = $this->getContent();
+ $finalStyle = json_decode(json_encode($this->finalStyle), true);
+ return h::div
+ (
+ setClass($this->finalClass),
+ setStyle($finalStyle),
+ set($this->getRestProps()),
+ $content,
+ $this->children()
+ );
+ }
+
+ private function initSize()
+ {
+ $size = $this->prop('size');
+ $this->actualSize = $size;
+
+ if(!$size) return;
+
+ if(is_numeric($size))
+ {
+ $fontSize = intval($size/2) > 12 ? intval($size/2) : 12;
+ $this->finalStyle->width = "{$size}px";
+ $this->finalStyle->height = "{$size}px";
+ $this->finalStyle->{'font-size'} = "{$fontSize}px";
+
+ return;
+ }
+
+ $this->finalClass[] = "size-{$size}";
+ $this->actualSize = isset($this->sizeMap[$size]) ? $this->sizeMap[$size] : 20;
+ }
+
+ private function initShape()
+ {
+ $circle = $this->prop('circle');
+ $rounded = $this->prop('rounded');
+
+ /* Set circle. */
+ if($circle)
+ {
+ $this->finalClass[] = 'rounded-full';
+ }
+ else if($rounded)
+ {
+ if(is_numeric($rounded)) $this->finalStyle->{'border-radius'} = "{$rounded}px";
+ else $this->finalClass[] = "rounded-{$rounded}";
+ }
+ }
+
+ private function getAvatarText()
+ {
+ $maxTextLen = intval($this->prop('maxTextLength'));
+ $text = strtoupper($this->prop('text', ''));
+ $this->textLen = strlen($text);
+
+ if(preg_match('/[\x{4e00}-\x{9fa5}\s]+$/u', $text))
+ {
+ $this->textLen = mb_strlen($text);
+ $text = $this->textLen <= $maxTextLen ? $text : mb_substr($text, $this->textLen - $maxTextLen);
+ $this->displayTextLen = mb_strlen($text);
+ return $text;
+ }
+
+ if(preg_match('/[A-Za-z\d\s]+$/', $text))
+ {
+ $this->displayTextLen = 1;
+ return substr($text, 0, 1);
+ }
+
+ return $this->textLen <= $maxTextLen ? $text : substr($text, 0, $maxTextLen);
+ }
+
+ /**
+ * Convert HSL values to RGB value.
+ *
+ * @param int $h
+ * @param int $s
+ * @param int $l
+ * @access private
+ * @return array
+ */
+ private function hslToRgb($h, $s, $l)
+ {
+ $h = ($h % 360) / 360;
+ $s = ($s > 0 ? $s : 0);
+ $s = ($s > 255) ? 255 : $s;
+ $l = ($l > 0 ? $l : 0);
+ $l = ($l > 255) ? 255 : $l;
+
+ $m2 = ($l <= 0.5) ? ($l * ($s + 1)) : ($l + $s - $l * $s);
+ $m1 = $l * 2 - $m2;
+
+ $hueFn = function($val, $m1, $m2)
+ {
+ $val = $val < 0 ? $val + 1 : ($val > 1 ? $val - 1 : $val);
+
+ if($val * 6 < 1) return $m1 + ($m2 - $m1) * $val * 6;
+ elseif($val * 2 < 1) return $m2;
+ elseif($val * 3 < 2) return $m1 + ($m2 - $m1) * (2/3 - $val) * 6;
+
+ return $m1;
+ };
+
+ return array(
+ 'r' => $hueFn($h + 1/3, $m1, $m2) * 255,
+ 'g' => $hueFn($h, $m1, $m2) * 255,
+ 'b' => $hueFn($h - 1/3, $m1, $m2) * 255
+ );
+ }
+
+ private function hex2Rgb($hex)
+ {
+ if(!str_starts_with($hex, '#') || !preg_match('/#[0-9A-F]{3,6}$/', $hex)) throw new \Exception('incorrect data format');
+
+ $r = 0;
+ $g = 0;
+ $b = 0;
+ if(strlen($hex) == 4) list($r, $g, $b) = sscanf($hex, "#%01x%01x%01x");
+ elseif(strlen($hex) == 7) list($r, $g, $b) = sscanf($hex, "#%02x%02x%02x");
+ else throw new \Exception('incorrect RGB value');
+
+ return array(
+ 'r' => $r,
+ 'g' => $g,
+ 'b' => $b
+ );
+ }
+
+ /*
+ * Get contrast color.
+ *
+ * @param array|string $rgb
+ * @param string $theme dark|light
+ * @access private
+ * @return string
+ */
+ private function contrastColor($rgb, $themeDark = null, $themeLight = null)
+ {
+ $rgb = is_array($rgb) ? $rgb : $this->hex2Rgb($rgb);
+
+ $r = $rgb['r'];
+ $g = $rgb['g'];
+ $b = $rgb['b'];
+ if(($r * 0.299 + $g * 0.587 + $b * 0.114) > 186)
+ {
+ /* Is light color. */
+ return $themeDark ? $themeDark : '#333333';
+ }
+
+ return $themeLight ? $themeLight : '#ffffff';
+ }
+
+ private function getTextStyle()
+ {
+ $hueDistance = intval($this->prop('hueDistance'));
+ $saturation = $this->prop('saturation');
+ $lightness = $this->prop('lightness');
+ $background = $this->prop('background');
+ $foreColor = $this->prop('foreColor');
+ $code = $this->prop('code');
+ $avatarCode = $code ? $code : $this->prop('text');
+
+ if(!$background)
+ {
+ $val = 0;
+ if(is_numeric($avatarCode))
+ {
+ $val = intval($avatarCode);
+ }
+ else
+ {
+ for($i = 0; $i < strlen($avatarCode); $i++) $val += ord($avatarCode[$i]);
+ }
+
+ $hue = $val * $hueDistance % 360;
+ $actualSat = $saturation * 100;
+ $actualLight = $lightness * 100;
+ $this->finalStyle->background = "hsl({$hue}, {$actualSat}%, {$actualLight}%)";
+
+ if(!$foreColor)
+ {
+ $rgb = $this->hslToRgb($hue, $saturation, $lightness);
+ $this->finalStyle->color = $this->contrastColor($rgb);
+ }
+ }
+ elseif (!$foreColor && $background)
+ {
+ $this->finalStyle->color = $this->contrastColor($background);
+ }
+
+ $textStyle = array();
+ if($this->actualSize and $this->actualSize < (14 * $this->displayTextLen))
+ {
+ $textStyle = array(
+ 'transform' => 'scale(' . $this->actualSize / (14 * $this->displayTextLen) . ')',
+ 'white-space' => 'nowrap'
+ );
+ }
+
+ return $textStyle;
+ }
+
+ private function getContent()
+ {
+ $src = $this->prop('src');
+ $text = $this->prop('text');
+
+ /* With avatar. */
+ if($src)
+ {
+ $this->finalClass[] = 'has-img';
+
+ return h::img
+ (
+ setClass('avatar-img'),
+ set('src', $src ),
+ set('alt', $text)
+ );
+ }
+
+ /* Without text and image. */
+ if(!$text) return null;
+
+ $displayText = $this->getAvatarText();
+
+ $this->finalClass[] = 'has-text';
+ $this->finalClass[] = 'has-text-' . $this->textLen;
+
+ $textStyle = $this->getTextStyle();
+ return h::div
+ (
+ setClass('avatar-text'),
+ set('data-actualSize', $this->actualSize),
+ $textStyle ? setStyle($textStyle) : null,
+ $displayText
+ );
+ }
+}
diff --git a/lib/zin/wg/backbtn/v1.php b/lib/zin/wg/backbtn/v1.php
new file mode 100644
index 0000000000..8e53e04d60
--- /dev/null
+++ b/lib/zin/wg/backbtn/v1.php
@@ -0,0 +1,101 @@
+
+ * @package zin
+ * @link http://www.zentao.net
+ */
+
+namespace zin;
+
+require_once dirname(__DIR__) . DS . 'btn' . DS . 'v1.php';
+
+/**
+ * 后退按钮(backBtn)部件类。
+ * The back button widget class.
+ *
+ * @author Hao Sun
+ */
+class backBtn extends btn
+{
+ /**
+ * Define widget properties.
+ *
+ * @var array
+ * @access protected
+ */
+ protected static array $defineProps = array(
+ 'back?: string="APP"' // 定义返回行为,可以为 `'APP'`(默认值,返回打开当前页面时的上一个历史记录)、 `'GLOBAL'`(返回上一个全局历史记录)、`'moduleName-methodName'`(从历史记录中向后查找符合指定路径的历史记录)。
+ );
+
+ /**
+ * Override the getProps method.
+ *
+ * @access protected
+ * @return array
+ */
+ protected function getProps(): array
+ {
+ global $app;
+
+ $backs = array(
+ 'task' => 'execution-task,my-work,my-contribute,',
+ 'story' => 'product-browse,projectstory-story,execution-story,my-work,my-contribute,productplan-view',
+ 'bug' => 'bug-browse,project-bug,my-work,my-contribute,',
+ 'testcase' => 'testcase-browse,project-testcase,my-work,my-contribute,',
+ 'testsuite' => 'testsuite-browse,testsuite-view,',
+ 'testtask' => 'testtask-browse,testtask-cases,',
+ 'testreport' => 'testreport-browse,project-testreport',
+ 'tree' => 'product-browse,project-browse,execution-task,bug-browse,projectstory-story',
+ 'doc' => 'doc-mySpace,doc-productSpace,doc-projectSpace,doc-teamSpace',
+ 'design' => 'design-browse',
+ 'release' => 'release-browse,release-view',
+ 'projectrelease' => 'projectrelease-browse',
+ 'build' => 'execution-build,build-view',
+ 'projectbuild' => 'projectbuild-browse,projectbuild-view',
+ 'mr' => 'mr-browse',
+ 'repo' => 'repo-log,repo-browse',
+ 'compile' => 'compile-browse',
+ );
+
+ $props = parent::getProps();
+ $back = $this->prop('back');
+ if($back != 'APP')
+ {
+ $props['data-back'] = $back;
+ }
+ elseif(isset($backs[$app->rawModule]))
+ {
+ $props['data-back'] = $backs[$app->rawModule];
+
+ if(!$this->prop('url'))
+ {
+ $backLinks = explode(',', $backs[$app->rawModule]);
+ $props['data-url'] = $backLinks[0];
+ }
+ }
+ else
+ {
+ $props['data-back'] = empty($back) ? 'APP' : $back;
+ }
+
+ return $props;
+ }
+
+ /**
+ * Override the getClassList method.
+ *
+ * @access protected
+ * @return array
+ */
+ protected function getClassList(): array
+ {
+ $classList = parent::getClassList();
+ $classList['open-url'] = true;
+ return $classList;
+ }
+}
diff --git a/lib/zin/wg/batchactions/js/v1.js b/lib/zin/wg/batchactions/js/v1.js
new file mode 100644
index 0000000000..c83bd1e1e5
--- /dev/null
+++ b/lib/zin/wg/batchactions/js/v1.js
@@ -0,0 +1,72 @@
+/**
+ * Add new item.
+ *
+ * @param obj e
+ * @access public
+ * @return void
+ */
+function addItem(e)
+{
+ const obj = e.target
+ const newItem = $(obj).closest('.form-row').clone();
+ let index = 0;
+
+ newItem.find('.add-btn').on('click', addItem);
+ newItem.find('.del-btn').on('click', removeItem);
+
+ let inputName = newItem.find('input').length > 0 ? newItem.find('input').first().attr('name') : newItem.find('select').first().attr('name');
+ inputName = inputName.slice(0, inputName.indexOf('['));
+ $('form').find("[name^='" + inputName + "']").each(function() {
+ let $name = $(this).attr('name');
+
+ let id = parseInt($name.slice($name.indexOf('[')+1, $name.indexOf(']')));
+ if(isNumeric(id) && id >= index) index = id + 1;
+ })
+
+ /* Fix id and value. */
+ newItem.addClass('newItem');
+ newItem.find('.form-label').html('');
+ newItem.find('input').each(function()
+ {
+ let name = $(this).attr('name');
+ name = name.slice(0, name.indexOf('[')+1) + String(index) + name.slice(name.indexOf(']'));
+ $(this).attr('name', name);
+ $(this).attr('id', name);
+ $(this).val('');
+ });
+ newItem.find('select').each(function()
+ {
+ let name = $(this).attr('name');
+ name = name.slice(0, name.indexOf('[')+1) + String(index) + name.slice(name.indexOf(']'));
+ $(this).attr('name', name);
+ $(this).attr('id', name);
+ $(this).val('');
+ });
+
+ $(obj).closest('.form-row').after(newItem);
+}
+
+/**
+ * Remove item.
+ *
+ * @param obj e
+ * @access public
+ * @return void
+ */
+function removeItem(e)
+{
+ const obj = e.target
+
+ /* Dsiabled btn can't remove line. */
+ if($(obj).closest('.btn').hasClass('disabled')) return false;
+
+ $(obj).closest('.form-row').remove();
+
+ let chosenProducts = 0;
+ $("select[name^='products']").each(function()
+ {
+ if($(this).val() > 0) chosenProducts ++;
+ });
+
+ (chosenProducts.length > 1 && (model == 'waterfall' || model == 'waterfallplus')) ? $('.stageBy').removeClass('hide') : $('.stageBy').addClass('hide');
+}
diff --git a/lib/zin/wg/batchactions/v1.php b/lib/zin/wg/batchactions/v1.php
new file mode 100644
index 0000000000..a751a69def
--- /dev/null
+++ b/lib/zin/wg/batchactions/v1.php
@@ -0,0 +1,39 @@
+prop('actionClass')),
+ btn
+ (
+ icon('plus', set::size('lg')),
+ setClass('bg-white ring-0 rounded bg-opacity-20 add-btn'),
+ on::click('addItem'),
+ ),
+ btn
+ (
+ icon('close', set::size('lg')),
+ setClass('bg-white ring-0 rounded bg-opacity-20 del-btn'),
+ on::click('removeItem'),
+ ),
+ )
+ );
+ }
+}
diff --git a/lib/zin/wg/blockpanel/v1.php b/lib/zin/wg/blockpanel/v1.php
new file mode 100644
index 0000000000..2322911cef
--- /dev/null
+++ b/lib/zin/wg/blockpanel/v1.php
@@ -0,0 +1,77 @@
+
+ * @package zin
+ * @link http://www.zentao.net
+ */
+
+namespace zin;
+
+require_once dirname(__DIR__) . DS . 'panel' . DS . 'v1.php';
+
+/**
+ * 仪表盘区块面板(blockPanel)部件类。
+ * The block panel widget class.
+ *
+ * @author Hao Sun
+ */
+class blockPanel extends panel
+{
+ protected static array $defineProps = array
+ (
+ 'class?: string="rounded bg-canvas panel-block"', // 类名。
+ 'id?: string', // ID。
+ 'name?: string', // 区块内部名称。
+ 'block?: object|array', // 区块对象。
+ 'title?: string', // 标题。
+ 'headingClass?: string="border-b"', // 标题栏类名。
+ 'moreLink?: string' // 更多链接。
+ );
+
+ protected function created()
+ {
+ global $lang;
+ $props = array();
+
+ $name = $this->prop('name');
+ $block = $this->prop('block', data('block'));
+
+ if(is_array($block)) $block = (object)$block;
+ if(empty($name) && !empty($block))
+ {
+ $name = $block->code;
+ $props['name'] = $name;
+
+ if(empty($this->prop('id'))) $props['id'] = $block->module . '-' . $block->code . '-' . $block->id;
+ }
+
+ $moreLink = $this->prop('moreLink');
+ if(empty($moreLink) && !empty($block) && isset($block->moreLink)) $moreLink = $block->moreLink;
+ if(empty($this->prop('headingActions')) && !empty($moreLink))
+ {
+ $props['headingActions'] = array(array('type' => 'ghost', 'url' => $moreLink, 'text' => $lang->more, 'caret' => 'right', 'size' => 'sm'));
+ }
+
+ if(empty($this->prop('title'))) $props['title'] = empty($block) ? $lang->block->titleList[$name] : $block->title;
+
+ $this->setProp($props);
+ }
+
+ protected function buildProps(): array
+ {
+ $props = parent::buildProps();
+ $name = $this->prop('name');
+ if(!empty($name))
+ {
+ $props[] = setData('block', $name);
+ $props[] = setClass("block-{$name}");
+ $props[] = setID($this->prop('id'));
+ }
+ return $props;
+ }
+}
diff --git a/lib/zin/wg/btn/v1.php b/lib/zin/wg/btn/v1.php
new file mode 100644
index 0000000000..e2ef19c5ce
--- /dev/null
+++ b/lib/zin/wg/btn/v1.php
@@ -0,0 +1,105 @@
+props->has('text'))
+ {
+ $this->props->set('text', $child);
+ return false;
+ }
+ }
+
+ protected function getProps()
+ {
+ $url = $this->prop('url');
+ $target = $this->prop('target');
+ $props = array_merge($this->getRestProps(), array('title' => $this->prop('hint')));
+
+ if(empty($url))
+ {
+ $props['type'] = $this->prop('btnType');
+ if(!isset($props['data-target'])) $props['data-target'] = $target;
+ return $props;
+ }
+
+ $props['tagName'] = 'a';
+ if(!isset($props['href'])) $props['href'] = $url;
+ if(!isset($props['target'])) $props['target'] = $target;
+ return $props;
+ }
+
+ private function getChildren()
+ {
+ list($caret, $text, $icon, $iconClass, $trailingIcon, $trailingIconClass) = $this->prop(array('caret', 'text', 'icon', 'iconClass', 'trailingIcon', 'trailingIconClass'));
+
+ $children = array();
+ if(!empty($icon)) $children[] = icon($icon, setClass($iconClass));
+ if(!empty($text)) $children[] = h::span($text, setClass('text'));
+ $children[] = parent::build();
+ if(!empty($trailingIcon)) $children[] = icon($trailingIcon, setClass($trailingIconClass));
+ if(!empty($caret)) $children[] = h::span(setClass(is_string($caret) ? "caret-$caret" : 'caret'));
+
+ return $children;
+ }
+
+ protected function getClassList()
+ {
+ list($url, $type, $caret, $text, $icon, $trailingIcon) = $this->prop(array('url', 'type', 'caret', 'text', 'icon', 'trailingIcon'));
+ $onlyCaret = empty($text) && !empty($caret) && empty($icon) && empty($trailingIcon);
+ $classList = array(
+ 'btn' => true,
+ 'disabled' => $this->prop('disabled'),
+ 'active' => $this->prop('active'),
+ 'btn-caret' => $onlyCaret,
+ 'square' => $this->prop('square')
+ );
+
+ if(empty($type) && !empty($url)) $type = 'btn-default';
+ else if($type === 'link') $type = 'btn-link';
+ else if($type === 'default') $type = 'btn-default';
+ if(!empty($type)) $classList[$type] = true;
+
+ if(empty($text) && !empty($icon) && !isset($classList['square'])) $classList['square'] = true;
+
+ $size = $this->prop('size');
+ if(!empty($size)) $classList["size-$size"] = true;
+
+ return $classList;
+ }
+
+ protected function build(): wg
+ {
+ $props = $this->getProps();
+ $children = $this->getChildren();
+ $classList = $this->getClassList();
+
+ return button
+ (
+ set($props),
+ setClass($classList),
+ $children
+ );
+ }
+}
diff --git a/lib/zin/wg/btngroup/v1.php b/lib/zin/wg/btngroup/v1.php
new file mode 100644
index 0000000000..6bdb96898d
--- /dev/null
+++ b/lib/zin/wg/btngroup/v1.php
@@ -0,0 +1,44 @@
+prop('disabled');
+ $size = $this->prop('size');
+
+ $className = 'btn-group';
+ if(!empty($disabled)) $className .= ' disabled';
+ if(!empty($size)) $className .= " size-$size";
+
+ return $className;
+ }
+
+ protected function build(): wg
+ {
+ $items = $this->prop('items');
+ $className = $this->getclassName();
+
+ return div
+ (
+ setClass($className),
+ set($this->getRestProps()),
+ is_array($items) ? array_map(array($this, 'onBuildItem'), $items) : null,
+ $this->children()
+ );
+ }
+}
diff --git a/lib/zin/wg/burn/v1.php b/lib/zin/wg/burn/v1.php
new file mode 100644
index 0000000000..bb1c038e53
--- /dev/null
+++ b/lib/zin/wg/burn/v1.php
@@ -0,0 +1,41 @@
+
+ * @package zin
+ * @link http://www.zentao.net
+ */
+
+namespace zin;
+
+/**
+ * 仪表盘(burn)部件类。
+ * The burn widget class.
+ *
+ * @author Hao Sun
+ */
+class burn extends wg
+{
+ /**
+ * Define widget properties.
+ *
+ * @var array
+ * @access protected
+ */
+ protected static array $defineProps = array(
+ 'data?: string|array', // 数据源
+ 'referenceLine?: bool=false' // 参考线
+ );
+
+ /**
+ * Build widget.
+ */
+ protected function build(): zui
+ {
+ return zui::burn(inherit($this));
+ }
+}
diff --git a/lib/zin/wg/cell/v1.php b/lib/zin/wg/cell/v1.php
new file mode 100644
index 0000000000..3914ea6ee1
--- /dev/null
+++ b/lib/zin/wg/cell/v1.php
@@ -0,0 +1,49 @@
+prop('width');
+ $flex = $this->prop('flex');
+ if(!empty($width))
+ {
+ $basis = $width;
+ if(is_numeric($width)) $basis = $width . 'px';
+ elseif(preg_match('/^(\d+)\/(\d+)$/', $width, $matches) !== 0) $basis = ((int)$matches[1] / (int)$matches[2] * 100) . '%';
+ }
+ if(!empty($flex))
+ {
+ if(strpos($flex, ' ') !== false) $style['flex'] = $flex;
+ else $class[] = "flex-$flex";
+ }
+
+ $style = array();
+ $style['order'] = $this->prop('order');
+ $style['flex-grow'] = $this->prop('grow');
+ $style['flex-shrink'] = $this->prop('shrink');
+ $style['flex-basis'] = $basis;
+ $style['align-self'] = $this->prop('align');
+
+ return div
+ (
+ setClass($class),
+ setStyle($style),
+ set($this->getRestProps()),
+ $this->children()
+ );
+ }
+}
diff --git a/lib/zin/wg/center/v1.php b/lib/zin/wg/center/v1.php
new file mode 100644
index 0000000000..74255b09e9
--- /dev/null
+++ b/lib/zin/wg/center/v1.php
@@ -0,0 +1,16 @@
+getRestProps()),
+ $this->children()
+ );
+ }
+}
diff --git a/lib/zin/wg/checkbox/v1.php b/lib/zin/wg/checkbox/v1.php
new file mode 100644
index 0000000000..c1cb7af0e5
--- /dev/null
+++ b/lib/zin/wg/checkbox/v1.php
@@ -0,0 +1,75 @@
+props->has('text'))
+ {
+ $this->props->set('text', $child);
+ return false;
+ }
+ }
+
+ protected function buildPrimary()
+ {
+ list($id, $text, $name, $checked, $disabled, $type, $typeClass, $rootClass, $labelClass, $value) = $this->prop(array('id', 'text', 'name', 'checked', 'disabled', 'type', 'typeClass', 'rootClass', 'labelClass', 'value'));
+
+ if(empty($typeClass)) $typeClass = $type;
+ if(empty($id)) $id = $name . '_' . $value;
+
+ return div
+ (
+ setClass("$typeClass-primary", $rootClass, array('disabled' => $disabled)),
+ h::input
+ (
+ set::type($type),
+ set::id($id),
+ set::name($name),
+ set::checked($checked),
+ set($this->props->skip('text,primary,typeClass,rootClass,id,labelClass')),
+ ),
+ h::label
+ (
+ set::for($id),
+ setClass($labelClass),
+ $text,
+ ),
+ $this->children()
+ );
+ }
+
+ protected function build(): wg
+ {
+ if($this->prop('primary')) return $this->buildPrimary();
+ list($text, $type, $typeClass) = $this->prop(array('text', 'type', 'typeClass'));
+
+ return h::label
+ (
+ setClass(empty($typeClass) ? $type : $typeClass),
+ h::input
+ (
+ set::type($type),
+ set($this->props->skip('text,primary,typeClass')),
+ ),
+ is_string($text) ? span($text, set::class('text')) : $text,
+ $this->children()
+ );
+ }
+}
diff --git a/lib/zin/wg/checkboxgroup/css/v1.css b/lib/zin/wg/checkboxgroup/css/v1.css
new file mode 100644
index 0000000000..5c16e7b8ea
--- /dev/null
+++ b/lib/zin/wg/checkboxgroup/css/v1.css
@@ -0,0 +1 @@
+.checkbox-list {border-left: 1px solid var(--color-gray-400);}
diff --git a/lib/zin/wg/checkboxgroup/js/v1.js b/lib/zin/wg/checkboxgroup/js/v1.js
new file mode 100644
index 0000000000..d54bafadf8
--- /dev/null
+++ b/lib/zin/wg/checkboxgroup/js/v1.js
@@ -0,0 +1,41 @@
+window.handleCheckboxGroupClick = function(event)
+{
+ const $target = $(event.target);
+ const $checkboxGroup = $target.closest('.checkbox-group');
+ if($target.closest('.checkbox-title').length > 0)
+ {
+ const $checkboxTitle = $target.closest('.checkbox-title');
+ $checkboxGroup
+ .find('.checkbox-child')
+ .prop('checked', $checkboxTitle.prop('checked'));
+ return;
+ }
+
+ if($target.closest('.checkbox-child').length > 0)
+ {
+ let checkedCount = 0;
+ const $checkboxChildren = $checkboxGroup.find('.checkbox-child');
+ $checkboxChildren.each((_i, input) =>
+ {
+ if(input.checked === true) checkedCount++;
+ });
+
+ const checkboxTitle = $checkboxGroup.find('.checkbox-title')[0];
+ if(checkedCount === 0)
+ {
+ checkboxTitle.checked = false;
+ checkboxTitle.indeterminate = false;
+ }
+ else if(checkedCount === $checkboxChildren.length)
+ {
+ $checkboxGroup.find('.checkbox-title').prop('checked', true);
+ checkboxTitle.checked = true;
+ checkboxTitle.indeterminate = false;
+ }
+ else
+ {
+ checkboxTitle.checked = false;
+ checkboxTitle.indeterminate = true;
+ }
+ }
+}
diff --git a/lib/zin/wg/checkboxgroup/v1.php b/lib/zin/wg/checkboxgroup/v1.php
new file mode 100644
index 0000000000..be6cb382a6
--- /dev/null
+++ b/lib/zin/wg/checkboxgroup/v1.php
@@ -0,0 +1,67 @@
+ false,
+ 'disabled' => false,
+ );
+
+ public static function getPageCSS(): string|false
+ {
+ return file_get_contents(__DIR__ . DS . 'css' . DS . 'v1.css');
+ }
+
+ public static function getPageJS(): string|false
+ {
+ return file_get_contents(__DIR__ . DS . 'js' . DS . 'v1.js');
+ }
+
+ private function buildTitle(): wg
+ {
+ $title = array_merge(self::$checkboxProps, $this->prop('title'));
+ return checkbox(set($title), setClass('checkbox-title'));
+ }
+
+ private function buildCheckboxList(): wg
+ {
+ $items = $this->prop('items');
+ $title = array_merge(self::$checkboxProps, $this->prop('title'));
+ $list = ul(setClass('flex', 'flex-wrap', 'ml-1.5', 'checkbox-list', 'pl-3'));
+ foreach($items as $item)
+ {
+ $item = array_merge(self::$checkboxProps, $item);
+ if($title['checked'] === true) $item['checked'] = true;
+ if($title['disabled'] === true) $item['disabled'] = true;
+ $list->add
+ (
+ li
+ (
+ setClass('basis-1/2'),
+ checkbox(set($item), setClass('checkbox-child'))
+ )
+ );
+ }
+ return $list;
+ }
+
+ public function build(): wg
+ {
+ return div
+ (
+ set('data-on', 'click'),
+ set('data-call', 'window.handleCheckboxGroupClick'),
+ set('data-params', 'event'),
+ setClass('checkbox-group'),
+ $this->buildTitle(),
+ $this->buildCheckboxList(),
+ );
+ }
+}
diff --git a/lib/zin/wg/checklist/v1.php b/lib/zin/wg/checklist/v1.php
new file mode 100644
index 0000000000..8470b3735a
--- /dev/null
+++ b/lib/zin/wg/checklist/v1.php
@@ -0,0 +1,66 @@
+prop('value');
+ if(is_null($value)) return array();
+
+ if($this->prop('type') === 'checkbox') return is_array($value) ? $value : explode(',', $value);
+ return [$value];
+ }
+
+ public function onBuildItem($item): checkbox
+ {
+ if($item instanceof item) $item = $item->props->toJsonData();
+
+ if(!isset($item['checked']))
+ {
+ $value = isset($item['value']) ? $item['value'] : '';
+ $valueList = $this->getValueList();
+
+ $item['checked'] = in_array($value, $valueList);
+ }
+
+ $props = $this->props->pick(['primary', 'type', 'name']);
+ return new checkbox(set($props), set($item));
+ }
+
+ protected function build(): wg
+ {
+ list($items, $inline) = $this->prop(['items', 'inline']);
+
+ if(!empty($items))
+ {
+ $valueList = $this->getValueList();
+ foreach($items as $key => $item)
+ {
+ if(!is_array($item)) $item = array('text' => $item, 'value' => $key);
+ if(!isset($item['checked'])) $item['checked'] = in_array($item['value'], $valueList);
+ $items[$key] = $this->onBuildItem($item);
+ }
+ }
+
+ return div
+ (
+ setClass($inline ? 'check-list-inline' : 'check-list'),
+ set($this->getRestProps()),
+ $items,
+ $this->children()
+ );
+ }
+}
diff --git a/lib/zin/wg/col/v1.php b/lib/zin/wg/col/v1.php
new file mode 100644
index 0000000000..cfa83ee973
--- /dev/null
+++ b/lib/zin/wg/col/v1.php
@@ -0,0 +1,26 @@
+prop(array('justify', 'align'));
+ if(!empty($justify)) $classList .= ' justify-' . $justify;
+ if(!empty($align)) $classList .= ' items-' . $align;
+
+ return div
+ (
+ setClass($classList),
+ set($this->getRestProps()),
+ $this->children()
+ );
+ }
+}
diff --git a/lib/zin/wg/collapsebtn/v1.php b/lib/zin/wg/collapsebtn/v1.php
new file mode 100644
index 0000000000..9d5b3665cb
--- /dev/null
+++ b/lib/zin/wg/collapsebtn/v1.php
@@ -0,0 +1,39 @@
+prop('target');
+ $parent = $this->prop('parent');
+
+ return btn
+ (
+ setClass('btn-link', 'collapse-btn'),
+ set($this->getRestProps()),
+ set::icon('angle-down'),
+ on::click
+ (
+ <<'))
+ {
+ $before = explode('', $action->comment);
+ $after = explode('', $before[1]);
+ $htmlCode = $after[0];
+ return $before[0] . htmlspecialchars($htmlCode) . $after[1];
+ }
+
+ return strip_tags($action->comment) === $action->comment
+ ? nl2br($action->comment)
+ : $action->comment;
+ }
+
+ private function comment(object $action): wg
+ {
+ $comment = $this->getComment($action);
+ $canEdit = $this->checkEditCommentPriv($action);
+ return div
+ (
+ setClass('article-content comment relative'),
+ $canEdit ? $this->editCommentBtn() : null,
+ div
+ (
+ setClass('comment-content mt-2 ml-6 p-2.5'),
+ isHTML($comment) ? html($comment) : $comment,
+ ),
+ );
+ }
+
+ private function commentEditForm(object $action): wg
+ {
+ global $lang;
+
+ return form
+ (
+ setClass('comment-edit-form hidden mt-2 ml-6'),
+ set::method('post'),
+ set::action(createLink('action', 'editComment', "actionID=$action->id")),
+ editor
+ (
+ set::name('lastComment'),
+ isHTML($action->comment) ? html($action->comment) : $action->comment
+ ),
+ set::actions(array(
+ 'submit',
+ array('text' => $lang->close, 'id' => 'btn-close-form')
+ ))
+ );
+ }
+
+ private function historyList(): wg
+ {
+ $actions = $this->prop('actions') !== null ? $this->prop('actions') : data('actions');
+ $users = $this->prop('users') !== null ? $this->prop('users') : data('users');
+ $historiesListView = h::ol(setClass('history-list col relative'));
+
+ $i = 0;
+ foreach($actions as $action)
+ {
+ if($action->action === 'assigned' || $action->action === 'toaudit') $action->extra = zget($users, $action->extra);
+ $action->actor = zget($users, $action->actor);
+ if(str_contains($action->actor, ':')) $action->actor = substr($action->actor, strpos($action->actor, ':') + 1);
+
+ $i++;
+ $actionItemView = $this->actionItem($action, $i);
+
+ if(!empty($action->history))
+ {
+ $actionItemView->add($this->expandBtn());
+ $actionItemView->add($this->historyChanges($action));
+ }
+ if(strlen(trim(($action->comment))) !== 0)
+ {
+ $actionItemView->add($this->comment($action));
+
+ $canEditComment = $this->checkEditCommentPriv($action);
+ if($canEditComment) $actionItemView->add($this->commentEditForm($action));
+ }
+ $historiesListView->add($actionItemView);
+ }
+
+ return $historiesListView;
+ }
+
+ private function reverseBtn(): wg
+ {
+ global $lang;
+ return btn
+ (
+ setClass('btn-reverse btn-mini px-0 ml-3'),
+ set::title($lang->reverse),
+ set::icon('arrow-up'),
+ on::click('reverseList')
+ );
+ }
+
+ private function expandAllBtn(): wg
+ {
+ global $lang;
+ return btn
+ (
+ setClass('btn-mini px-0 btn-expand-all ml-2'),
+ set::title($lang->switchDisplay),
+ set::icon('plus'),
+ on::click('expandAll')
+ );
+ }
+
+ private function commentBtn(): ?wg
+ {
+ global $app, $lang;
+ $methodName = $this->prop('methodName') !== null ? $this->prop('methodName') : $app->rawMethod;
+ $showCommentBtn = $this->prop('commentBtn', false);
+ if(!$showCommentBtn && !str_contains(',view,objectlibs,viewcard,', ",$methodName,")) return null;
+ return commentBtn
+ (
+ set::dataTarget('#comment-dialog'),
+ setClass('btn-comment ml-4 size-sm ghost'),
+ set::icon('chat-line'),
+ set::iconClass('text-primary'),
+ set::text($lang->action->create)
+ );
+ }
+
+ protected function build(): wg
+ {
+ global $lang;
+
+ $commentUrl = $this->prop('commentUrl');
+ $isInModal = isAjaxRequest('modal');
+ $px = $isInModal ? 'px-3' : 'px-6';
+ $pb = $isInModal ? 'pb-3' : 'pb-6';
+
+ return new section
+ (
+ setClass('history', 'pt-4', $px, $pb, 'canvas'),
+ set::title($lang->history),
+ to::actions
+ (
+ div
+ (
+ setClass('flex items-center'),
+ $this->reverseBtn(),
+ $this->expandAllBtn(),
+ $this->commentBtn(),
+ )
+ ),
+ div(setClass('mt-3'), $this->historyList()),
+ commentDialog
+ (
+ set::name('comment'),
+ set::url($commentUrl),
+ )
+ );
+ }
+}
diff --git a/lib/zin/wg/hr/v1.php b/lib/zin/wg/hr/v1.php
new file mode 100644
index 0000000000..9dbf422fc5
--- /dev/null
+++ b/lib/zin/wg/hr/v1.php
@@ -0,0 +1,11 @@
+props->has('name'))
+ {
+ $this->props->set('name', $child);
+ return false;
+ }
+ }
+
+ protected function build(): wg
+ {
+ list($name, $size) = $this->prop(array('name', 'size'));
+ return h::i
+ (
+ setClass('icon', empty($name) ? null : "icon-$name"),
+ is_numeric($size)
+ ? setStyle('font-size', "{$size}px")
+ : (is_string($size)
+ ? setClass("icon-$size")
+ : null),
+ set($this->props->skip(array_keys(icon::definedPropsList()))),
+ $this->children()
+ );
+ }
+}
diff --git a/lib/zin/wg/input/v1.php b/lib/zin/wg/input/v1.php
new file mode 100644
index 0000000000..02ac3bdd77
--- /dev/null
+++ b/lib/zin/wg/input/v1.php
@@ -0,0 +1,33 @@
+ 'text',
+ 'class' => 'form-control',
+ );
+
+ protected function build(): wg
+ {
+ $props = $this->props->skip('required');
+ $required = $this->prop('required');
+ if(!$this->hasProp('id') && isset($props['name'])) $props['id'] = $props['name'];
+ if(is_bool($props['autocomplete'])) $props['autocomplete'] = $props['autocomplete'] ? 'on' : 'off';
+ return h::input(set($props), $required ? setClass('is-required') : null);
+ }
+}
diff --git a/lib/zin/wg/inputcontrol/v1.php b/lib/zin/wg/inputcontrol/v1.php
new file mode 100644
index 0000000000..f5d12719da
--- /dev/null
+++ b/lib/zin/wg/inputcontrol/v1.php
@@ -0,0 +1,72 @@
+ array(),
+ 'suffix' => array(),
+ );
+
+ protected function build(): wg
+ {
+ list($prefix, $suffix, $prefixWidth, $suffixWidth) = $this->prop(['prefix', 'suffix', 'prefixWidth', 'suffixWidth']);
+
+ if(empty($prefix)) $prefix = $this->block('prefix');
+ if(empty($suffix)) $suffix = $this->block('suffix');
+
+ $class = array('input-control');
+ $vars = array();
+ if(!empty($prefix))
+ {
+ if(is_numeric($prefixWidth))
+ {
+ $vars['input-control-prefix'] = $prefixWidth . 'px';
+ $class[] = 'has-prefix';
+ }
+ elseif(!empty($prefixWidth))
+ {
+ $class[] = "has-prefix-$prefixWidth";
+ }
+ else
+ {
+ $class[] = 'has-prefix';
+ }
+ }
+ if(!empty($suffix))
+ {
+ if(is_numeric($suffixWidth))
+ {
+ $vars['input-control-suffix'] = $suffixWidth . 'px';
+ $class[] = 'has-suffix';
+ }
+ elseif(!empty($suffixWidth))
+ {
+ $class[] = "has-suffix-$suffixWidth";
+ }
+ else
+ {
+ $class[] = 'has-suffix';
+ }
+ }
+
+ return div
+ (
+ setClass($class),
+ empty($vars) ? null : setCssVar($vars),
+ $this->children(),
+ empty($prefix) ? null : div(setClass('input-control-prefix'), $prefix),
+ empty($suffix) ? null : div(setClass('input-control-suffix'), $suffix)
+ );
+ }
+}
diff --git a/lib/zin/wg/inputgroup/v1.php b/lib/zin/wg/inputgroup/v1.php
new file mode 100644
index 0000000000..fd7dd7e9ad
--- /dev/null
+++ b/lib/zin/wg/inputgroup/v1.php
@@ -0,0 +1,53 @@
+ 'addon', 'text' => $item)));
+ elseif(is_array($item)) $item = new item(set($item));
+ elseif($item instanceof wg) return $item;
+
+ $type = $item->prop('type');
+
+ if($type === 'addon') return h::span(setClass('input-group-addon'), set($item->props->skip('type,text')), $item->prop('text'));
+ if($type === 'btn') return new btn(set($item->props->skip('type')));
+
+ if($type)
+ {
+ $propNames = array_keys(inputControl::definedPropsList());
+ return new inputControl
+ (
+ set($item->props->pick($propNames)),
+ new input(set($item->props->skip(array_merge($propNames, ['type']))))
+ );
+ }
+
+ return new input(inherit($item));
+ }
+
+ protected function build(): wg
+ {
+ list($items, $seg) = $this->prop(['items', 'seg']);
+ $children = $this->children();
+
+ return div
+ (
+ setClass('input-group', $seg ? 'input-group-segment' : null),
+ set($this->getRestProps()),
+ is_array($items) ? array_map(array($this, 'onBuildItem'), $items) : null,
+ is_array($children) ? array_map(array($this, 'onBuildItem'), $children) : null,
+ );
+ }
+}
diff --git a/lib/zin/wg/inputgroupaddon/v1.php b/lib/zin/wg/inputgroupaddon/v1.php
new file mode 100644
index 0000000000..4da97ef37c
--- /dev/null
+++ b/lib/zin/wg/inputgroupaddon/v1.php
@@ -0,0 +1,27 @@
+
+ * @package zin
+ * @link http://www.zentao.net
+ */
+
+namespace zin;
+
+/**
+ * 输入框附加部分(inputGroupAddon)部件类。
+ * The inputGroupAddon widget class.
+ *
+ * @author Hao Sun
+ */
+class inputGroupAddon extends wg
+{
+ protected function build(): wg
+ {
+ return h::span(setClass('input-group-addon'), set($this->props), $this->children());
+ }
+}
diff --git a/lib/zin/wg/label/v1.php b/lib/zin/wg/label/v1.php
new file mode 100644
index 0000000000..8e1ea8c562
--- /dev/null
+++ b/lib/zin/wg/label/v1.php
@@ -0,0 +1,30 @@
+props->has('text'))
+ {
+ $this->props->set('text', $child);
+ return false;
+ }
+ }
+
+ public function build(): wg
+ {
+ return span
+ (
+ setClass('label'),
+ set($this->getRestProps()),
+ $this->prop('text'),
+ $this->children()
+ );
+ }
+}
diff --git a/lib/zin/wg/main/v1.php b/lib/zin/wg/main/v1.php
new file mode 100644
index 0000000000..5c094745f3
--- /dev/null
+++ b/lib/zin/wg/main/v1.php
@@ -0,0 +1,134 @@
+
+ * @package zin
+ * @link http://www.zentao.net
+ */
+namespace zin;
+
+require_once dirname(__DIR__) . DS . 'pagebase' . DS . 'v1.php';
+require_once dirname(__DIR__) . DS . 'featurebar' . DS . 'v1.php';
+require_once dirname(__DIR__) . DS . 'mainnavbar' . DS . 'v1.php';
+
+/**
+ * 主要内容部件类。
+ * The main widget class.
+ *
+ * @author Hao Sun
+ */
+class main extends wg
+{
+ /**
+ * Define the blocks.
+ *
+ * @var array
+ * @access protected
+ */
+ protected static array $defineBlocks = array
+ (
+ 'navbar' => array('map' => 'mainNavbar'),
+ 'menu' => array('map' => 'featureBar,nav,toolbar'),
+ 'sidebar' => array('map' => 'sidebar')
+ );
+
+ /**
+ * Define the properties.
+ *
+ * @access protected
+ * @return wg
+ */
+ protected function buildMenu(): wg|null
+ {
+ $menuBlocks = $this->block('menu');
+ if(empty($menuBlocks)) return div();
+
+ list($featureBarList, $navList, $toolbarList, $restList) = groupWgInList($menuBlocks, array('featureBar', 'nav', 'toolbar'));
+
+ $featureBar = null;
+ if(!empty($featureBarList)) $featureBar = $featureBarList[0];
+ elseif(!empty($navList)) $featureBar = new featureBar($navList);
+
+ $toolbar = null;
+ if(!empty($toolbarList)) $toolbar = $toolbarList[0];
+ if($toolbar instanceof wg && !$toolbar->hasProp('id')) $toolbar->setProp('id', 'actionBar');
+
+ return div
+ (
+ set::id('mainMenu'),
+ $featureBar,
+ $toolbar,
+ $restList
+ );
+ }
+
+ /**
+ * Build main content.
+ *
+ * @access protected
+ * @return wg
+ */
+ protected function buildContent()
+ {
+ $leftSides = array();
+ $rightSides = array();
+ $sidebars = $this->block('sidebar');
+
+ if(!empty($sidebars))
+ {
+ foreach($sidebars as $sidebar)
+ {
+ if($sidebar instanceof wg && $sidebar->prop('side') === 'left') $leftSides[] = $sidebar;
+ else $rightSides[] = $sidebar;
+ }
+ }
+
+ return div
+ (
+ set::id('mainContent'),
+ $leftSides,
+ set::class(empty($leftSides) && empty($rightSides) ? '' : 'row', empty($leftSides) ? '' : 'has-sidebar-left', empty($rightSides) ? '' : 'has-sidebar-right'),
+ $this->children(),
+ $rightSides
+ );
+ }
+
+ /**
+ * Build main navbar from block.
+ *
+ * @access protected
+ * @return array
+ */
+ protected function buildMainNavbar(): array|mainNavbar
+ {
+ $navbar = $this->block('navbar');
+ if(!$navbar) return mainNavbar();
+ return $navbar;
+ }
+
+ /**
+ * Override the build method.
+ *
+ * @access protected
+ * @return wg
+ */
+ protected function build(): wg
+ {
+ return div
+ (
+ set::id('main'),
+ set($this->getRestProps()),
+ $this->buildMainNavbar(),
+ div
+ (
+ set::class('container'),
+ $this->buildMenu(),
+ $this->buildContent()
+ )
+ );
+ }
+}
diff --git a/lib/zin/wg/mainmenu/v1.php b/lib/zin/wg/mainmenu/v1.php
new file mode 100644
index 0000000000..7cdac2b5ab
--- /dev/null
+++ b/lib/zin/wg/mainmenu/v1.php
@@ -0,0 +1,71 @@
+prop('others');
+
+ if(empty($others))
+ {
+ $otherElms = null;
+ }
+ else
+ {
+ $otherElms = array();
+ foreach($others as $item) $otherElms[] = $this->buildOther($item);
+ }
+
+
+ return div
+ (
+ setID('mainMenu'),
+ setClass('flex justify-between'),
+ set($this->getRestProps()),
+ div
+ (
+ setClass('flex'),
+ div
+ (
+ toolbar(set(array('items' => $this->prop('statuses'))))
+ ),
+ $otherElms
+ ),
+ div
+ (
+ setID('featureBarBtns'),
+ toolbar
+ (
+ setClass('toolbar-btn-group'),
+ setStyle('gap', '0.625rem'),
+ set(array('items' => $this->prop('btnGroup')))
+ )
+ )
+ );
+ }
+}
diff --git a/lib/zin/wg/mainnavbar/v1.php b/lib/zin/wg/mainnavbar/v1.php
new file mode 100644
index 0000000000..55e866db84
--- /dev/null
+++ b/lib/zin/wg/mainnavbar/v1.php
@@ -0,0 +1,107 @@
+
+ * @package zin
+ * @link http://www.zentao.net
+ */
+
+namespace zin;
+
+require_once dirname(__DIR__) . DS . 'nav' . DS . 'v1.php';
+
+/**
+ * 主内容导航(三级导航,mainNavbar)部件类。
+ * The main navbar widget class.
+ *
+ * @author Hao Sun
+ */
+class mainNavbar extends nav
+{
+ /**
+ * Define the blocks.
+ *
+ * @var array
+ * @access protected
+ */
+ protected static array $defineBlocks = array
+ (
+ 'left' => array('map' => 'dropdown'),
+ 'right' => array('map' => 'toolbar'),
+ );
+
+ protected function created()
+ {
+ global $app;
+
+ $currentModule = $app->getModuleName();
+ $currentMethod = $app->getMethodName();
+ if($app->tab == 'admin') $app->control->loadModel('admin')->setMenu();
+
+ \commonModel::setMainMenu();
+ $activeMenu = \commonModel::printMainMenu(false);
+ $items = \customModel::getModuleMenu($activeMenu);
+
+ if($items)
+ {
+ $items = json_decode(json_encode($items), true);
+
+ foreach($items as $key => $item)
+ {
+ if(empty($item['link']))
+ {
+ unset($items[$key]);
+ continue;
+ }
+ if(empty($item['alias'])) $item['alias'] = '';
+ if(empty($item['exclude'])) $item['exclude'] = '';
+
+ $link = $item['link'];
+ $items[$key]['url'] = commonModel::createMenuLink((object)$item, $app->tab);
+ $items[$key]['data-id'] = $item['name'];
+
+ $active = '';
+ $subModule = isset($item['subModule']) ? explode(',', $item['subModule']) : array();
+ if($subModule && in_array($currentModule, $subModule)) $active = 'active';
+ if($link['module'] == $currentModule && $link['method'] == $currentMethod) $active = 'active';
+ if($link['module'] == $currentModule && strpos(",{$item['alias']},", ",{$currentMethod},") !== false) $active = 'active';
+ if(strpos(",{$item['exclude']},", ",{$currentModule}-{$currentMethod},") !== false || strpos(",{$item['exclude']},", ",{$currentModule},") !== false) $active = '';
+ $items[$key]['class'] = $active;
+
+ unset($items[$key]['name']);
+ }
+
+ $this->setProp('items', $items);
+ }
+ }
+
+ /**
+ * Override the build method.
+ *
+ * @access protected
+ * @return wg
+ */
+ protected function build(): h
+ {
+ if(!$this->prop('items')) return div();
+
+ $leftBlock = $this->block('left');
+ $rightBlock = $this->block('right');
+
+ return div
+ (
+ setID('mainNavbar'),
+ div
+ (
+ setClass('container'),
+ empty($leftBlock) ? null : div(setClass('main-navbar-left'), $leftBlock),
+ parent::build(),
+ empty($rightBlock) ? null : div(setClass('main-navbar-right'), $rightBlock)
+ )
+ );
+ }
+}
diff --git a/lib/zin/wg/menu/v1.php b/lib/zin/wg/menu/v1.php
new file mode 100644
index 0000000000..d05752314b
--- /dev/null
+++ b/lib/zin/wg/menu/v1.php
@@ -0,0 +1,37 @@
+prop('items');
+ return h::menu
+ (
+ setClass('menu'),
+ set($this->getRestProps()),
+ is_array($items) ? array_map(array($this, 'onBuildItem'), $this->prop('items')) : null,
+ $this->children(),
+ );
+ }
+}
diff --git a/lib/zin/wg/modal/v1.php b/lib/zin/wg/modal/v1.php
new file mode 100644
index 0000000000..0a57027bdb
--- /dev/null
+++ b/lib/zin/wg/modal/v1.php
@@ -0,0 +1,32 @@
+ array()
+ );
+
+ protected function build(): wg
+ {
+ list($id, $modalProps) = $this->prop(array('id', 'modalProps'));
+
+ $this->setProp($modalProps);
+
+ return div
+ (
+ setClass('modal'),
+ setID($id),
+ set($this->props->skip(array_merge(array_keys($modalProps), array_keys(static::definedPropsList())))),
+ parent::build()
+ );
+ }
+}
diff --git a/lib/zin/wg/modaldialog/css/v1.css b/lib/zin/wg/modaldialog/css/v1.css
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/lib/zin/wg/modaldialog/v1.php b/lib/zin/wg/modaldialog/v1.php
new file mode 100644
index 0000000000..b243d63c31
--- /dev/null
+++ b/lib/zin/wg/modaldialog/v1.php
@@ -0,0 +1,125 @@
+ array('map' => 'modalHeader'),
+ 'actions' => array(),
+ 'footer' => array('map' => 'toolbar')
+ );
+
+ protected function buildHeader()
+ {
+ $title = $this->prop('title');
+ $titleClass = $this->prop('titleClass');
+ $itemID = $this->prop('itemID');
+ $headerBlock = $this->block('header');
+
+ if(empty($title) && empty($headerBlock)) return null;
+
+ return div
+ (
+ setClass('modal-header', $this->prop('headerClass')),
+ set($this->prop('headerProps')),
+ empty($itemID) ? null : label($itemID, setStyle(['min-width' => '30px']), setClass('justify-center')),
+ empty($title) ? null : div(setClass('modal-title', $titleClass), $title),
+ $headerBlock
+ );
+ }
+
+ protected function buildActions()
+ {
+ list($actions, $closeBtn) = $this->prop(array('actions', 'closeBtn'));
+ $actionsBlock = $this->block('actions');
+
+ if(empty($actions) && empty($actionsBlock) && !$closeBtn) return;
+
+ return div
+ (
+ setClass('modal-actions'),
+ empty($actions) ? null : toolbar(set::items($actions)),
+ $actionsBlock,
+ $closeBtn ? btn
+ (
+ set('data-dismiss', 'modal'),
+ set::square(true),
+ is_array($closeBtn) ? set($closeBtn) : setClass('ghost'),
+ span(setClass('close'))
+ ) : null
+ );
+ }
+
+ protected function buildFooter()
+ {
+ $footerActions = $this->prop('footerActions');
+ $footerBlock = $this->block('footer');
+
+ if(empty($footerActions) && empty($footerBlock)) return;
+
+ return div
+ (
+ setClass('modal-footer', $this->prop('footerClass')),
+ set($this->prop('footerProps')),
+ $footerBlock,
+ empty($footerActions) ? null : toolbar(set::items($footerActions))
+ );
+ }
+
+ protected function buildBody()
+ {
+ $rawContent = $this->prop('rawContent', !zin::$rawContentCalled);
+ return div
+ (
+ setClass('modal-body', $this->prop('bodyClass')),
+ set($this->prop('bodyProps')),
+ $this->children(),
+ $rawContent ? rawContent() : null,
+ );
+ }
+
+ protected function setSize(): ?directive
+ {
+ $size = $this->prop('size');
+ if(!$size) return null;
+ if(is_string($size)) return set('data-size', $size);
+ return setStyle('width', "{$size}px");
+ }
+
+ protected function build(): wg
+ {
+ return div
+ (
+ setClass('modal-dialog', $this->prop('condensed') ? 'modal-condensed' : ''),
+ set($this->getRestProps()),
+ $this->setSize(),
+ div
+ (
+ setClass('modal-content'),
+ $this->buildHeader(),
+ $this->buildActions(),
+ $this->buildBody(),
+ $this->buildFooter()
+ )
+ );
+ }
+}
diff --git a/lib/zin/wg/modalheader/v1.php b/lib/zin/wg/modalheader/v1.php
new file mode 100644
index 0000000000..6fc5891c7b
--- /dev/null
+++ b/lib/zin/wg/modalheader/v1.php
@@ -0,0 +1,69 @@
+ array()
+ );
+
+ protected function created()
+ {
+ $title = \initPageTitle();
+ $entityText = '';
+ $entityID = 0;
+
+ global $app;
+ $module = $app->getModuleName();
+ $object = data($module);
+ if(!empty($object))
+ {
+ $entity = \initPageEntity($object);
+ if(!empty($entity)) list($entityText, $entityID) = $entity;
+ }
+
+ $this->setDefaultProps(array('title' => $title, 'entityText' => $entityText, 'entityID' => $entityID));
+ }
+
+ protected function build(): wg|array
+ {
+ list($title, $entityText, $entityID, $inModal) = $this->prop(array('title', 'entityText', 'entityID', 'inModal'));
+ if(empty($inModal)) $inModal = false;
+
+ $header = h::div
+ (
+ setClass('flex items-center'),
+ $title ? div
+ (
+ $title,
+ set::class($this->prop('titleClass')),
+ ) : null,
+ ($entityText || $entityID) ? entityLabel
+ (
+ set::level(1),
+ setClass('pl-2'),
+ $entityText ? set::text($entityText) : null,
+ $entityID ? set::entityID($entityID) : null,
+ set::reverse(true),
+ ) : null,
+ $this->block('suffix')
+ );
+
+ if(isAjaxRequest('modal') || $inModal) return $header;
+
+ return h::div
+ (
+ set::class('modal-header panel-form rounded-md canvas mx-auto size-lg'),
+ $header
+ );
+ }
+}
diff --git a/lib/zin/wg/modaltrigger/v1.php b/lib/zin/wg/modaltrigger/v1.php
new file mode 100644
index 0000000000..db0b4c603a
--- /dev/null
+++ b/lib/zin/wg/modaltrigger/v1.php
@@ -0,0 +1,90 @@
+ array('map' => 'btn,a'),
+ 'modal' => array('map' => 'modal')
+ );
+
+ protected function build(): array
+ {
+ list($target, $url, $type) = $this->prop(['target', 'url', 'type']);
+
+ $triggerBlock = $this->block('trigger');
+ $modalBlock = $this->block('modal');
+
+ if(empty($target) && !empty($modalBlock))
+ {
+ $modal = $modalBlock[0];
+ $target = $modal->id();
+ if(empty($target))
+ {
+ $target = $modal->gid;
+ $modal->setProp('id', $target);
+ }
+ $target = "#$target";
+ }
+ if(!empty($url) && empty($type)) $type = 'ajax';
+
+ if(empty($triggerBlock)) $triggerBlock = h::a($this->children());
+ elseif(is_array($triggerBlock)) $triggerBlock = $triggerBlock[0];
+
+ if($triggerBlock instanceof wg)
+ {
+ $triggerBlock->setProp($this->getRestProps());
+
+ $triggerProps = array(
+ 'data-toggle' => 'modal',
+ 'data-target' => $triggerBlock->hasProp('target', 'href') ? null : $target,
+ 'data-type' => $type,
+ 'data-url' => $url,
+ 'data-position' => $this->prop('position'),
+ 'data-size' => $this->prop('size'),
+ 'data-backdrop' => $this->prop('backdrop'),
+ 'data-keyboard' => $this->prop('keyboard'),
+ 'data-moveable' => $this->prop('moveable'),
+ 'data-animation' => $this->prop('animation'),
+ 'data-trans-time' => $this->prop('transTime'),
+ 'data-responsive' => $this->prop('responsive'),
+ 'data-loading-text' => $this->prop('loadingText'),
+ 'data-loadTimeout' => $this->prop('loadTimeout'),
+ 'data-failed-tip' => $this->prop('failedTip'),
+ 'data-timeout-tip' => $this->prop('timeoutTip'),
+ 'data-title' => $this->prop('title'),
+ 'data-content' => $this->prop('content'),
+ 'data-custom' => $this->prop('custom'),
+ 'data-request' => $this->prop('request'),
+ 'data-data-type' => $this->prop('dataType')
+ );
+ $triggerBlock->setProp($triggerProps);
+ }
+
+ return array($triggerBlock, $modalBlock);
+ }
+}
diff --git a/lib/zin/wg/modulemenu/css/v1.css b/lib/zin/wg/modulemenu/css/v1.css
new file mode 100644
index 0000000000..ef2dae65c1
--- /dev/null
+++ b/lib/zin/wg/modulemenu/css/v1.css
@@ -0,0 +1,4 @@
+.module-menu {max-height: calc(100vh - 105px);}
+.module-menu .active {color: var(--color-primary-600); font-weight: 500;}
+.module-menu header a:hover > .icon {color: var(--color-primary-600) !important;}
+.module-menu .tree-item * {white-space: nowrap;}
diff --git a/lib/zin/wg/modulemenu/v1.php b/lib/zin/wg/modulemenu/v1.php
new file mode 100644
index 0000000000..5c532a1582
--- /dev/null
+++ b/lib/zin/wg/modulemenu/v1.php
@@ -0,0 +1,158 @@
+getChildModule($parentID);
+ if(count($children) === 0) return [];
+
+ $activeKey = $this->prop('activeKey');
+
+ foreach($children as $child)
+ {
+ $item = array(
+ 'key' => $child->id,
+ 'text' => $child->name,
+ 'url' => $child->url,
+ 'items' => array(),
+ 'active' => $child->id == $activeKey,
+ );
+ $items = $this->buildMenuTree($item['items'], $child->id);
+ if(count($items) !== 0) $item['items'] = $items;
+ else unset($item['items']);
+ $parentItems[] = $item;
+ }
+ return $parentItems;
+ }
+
+ private function getChildModule(int|string $id): array
+ {
+ return array_filter($this->modules, fn($module) => $module->parent == $id);
+ }
+
+ private function setMenuTreeProps(): void
+ {
+ $this->modules = $this->prop('modules');
+ $this->setProp('items', $this->buildMenuTree(array(), 0));
+ }
+
+ private function getTitle(): string
+ {
+ global $lang;
+ $activeKey = $this->prop('activeKey');
+
+ if(empty($activeKey))
+ {
+ $allText = $this->prop('allText');
+ if(empty($allText)) return $lang->all;
+ return $allText;
+ }
+
+ foreach($this->modules as $module)
+ {
+ if($module->id == $activeKey) return $module->name;
+ }
+
+ return '';
+ }
+
+ private function buildBtns(): wg|null
+ {
+ $settingLink = $this->prop('settingLink');
+ $settingText = $this->prop('settingText');
+ $showDisplay = $this->prop('showDisplay');
+ if(!$settingLink && !$showDisplay) return null;
+
+ global $app;
+ $lang = $app->loadLang('datatable')->datatable;
+ $currentModule = $app->rawModule;
+ $currentMethod = $app->rawMethod;
+
+ if(!$settingText) $settingText = $lang->moduleSetting;
+
+ $datatableId = $app->moduleName . ucfirst($app->methodName);
+
+ return div
+ (
+ setClass('col gap-2 py-3 px-7'),
+ $settingLink
+ ? a
+ (
+ setClass('btn'),
+ setStyle('background', '#EEF5FF'),
+ setStyle('box-shadow', 'none'),
+ set('data-app', $app->tab),
+ set::href($settingLink),
+ $settingText
+ )
+ : null,
+ $showDisplay
+ ? a
+ (
+ setClass('btn white'),
+ set('data-toggle', 'modal'),
+ set::href(helper::createLink('datatable', 'ajaxDisplay', "datatableId=$datatableId&moduleName=$app->moduleName&methodName=$app->methodName¤tModule=$currentModule¤tMethod=$currentMethod")),
+ $lang->displaySetting
+ )
+ : null,
+ );
+ }
+
+ private function buildCloseBtn(): ?wg
+ {
+ $activeKey = $this->prop('activeKey');
+ if(empty($activeKey)) return null;
+
+ return a
+ (
+ set('href', $this->prop('closeLink')),
+ icon('close', setStyle('color', 'var(--color-slate-600)'))
+ );
+ }
+
+ protected function build(): wg
+ {
+ $this->setMenuTreeProps();
+ $title = $this->getTitle();
+
+ return div
+ (
+ setClass('module-menu rounded shadow-sm bg-white col rounded-sm'),
+ h::header
+ (
+ setClass('h-10 flex items-center pl-4 flex-none gap-3'),
+ span
+ (
+ setClass('module-title text-lg font-semibold'),
+ $title
+ ),
+ $this->buildCloseBtn(),
+ ),
+ h::main
+ (
+ setClass('col flex-auto overflow-y-auto overflow-x-hidden pl-4 pr-1'),
+ zui::tree(set($this->props->pick(array('items', 'activeClass', 'activeIcon', 'activeKey', 'onClickItem', 'defaultNestedShow', 'changeActiveKey', 'isDropdownMenu'))))
+ ),
+ $this->buildBtns(),
+ );
+ }
+}
diff --git a/lib/zin/wg/monaco/js/v1.js b/lib/zin/wg/monaco/js/v1.js
new file mode 100644
index 0000000000..a257947edc
--- /dev/null
+++ b/lib/zin/wg/monaco/js/v1.js
@@ -0,0 +1,79 @@
+setTimeout(function()
+{
+ createMonaco(id, action, options, diffContent, onMouseDown, vsPath, clientLang);
+ resize(id);
+}, 200);
+
+function createMonaco(id, action, options, diffContent, onMouseDown, vsPath, clientLang)
+{
+ require.config({
+ paths: {vs: vsPath},
+ 'vs/nls': {
+ availableLanguages: {
+ '*': clientLang
+ }
+ }
+ });
+
+ require(['vs/editor/editor.main'], function ()
+ {
+ if(action == 'diff')
+ {
+ options.renderSideBySide = $.cookie.get('renderSideBySide') == 'true';
+
+ options.lineNumbers = function(number)
+ {
+ var newlc = diffContent.line.new;
+ return newlc[number - 1];
+ };
+ console.log('monaco options:', options);
+
+ modifiedEditor = monaco.editor.createDiffEditor(document.getElementById(id),
+ options);
+ window.modifiedEditor = modifiedEditor;
+
+ modifiedEditor.setModel({
+ original: monaco.editor.createModel(diffContent.code.old.trim("\n"), options.lang),
+ modified: monaco.editor.createModel(diffContent.code.new.trim("\n"), options.lang),
+ });
+
+ editor = modifiedEditor.getModifiedEditor();
+
+ var getOriginalEditor = modifiedEditor.getOriginalEditor();
+
+ if(onMouseDown) getOriginalEditor.onMouseDown(function(obj){eval(onMouseDown + '(obj)')})
+ }
+ else
+ {
+ console.log('monaco options:', options);
+ editor = monaco.editor.create(document.getElementById(id), options);
+ }
+
+ if(onMouseDown) editor.onMouseDown(function(obj){eval(onMouseDown + '(obj)')})
+ });
+}
+
+function resize(id)
+{
+ var $ = window.$ == undefined ? parent.$ : window.$;
+ var windowHeight = $(window).height();
+ var headerHeight = parseInt($('#header').height());
+ var mainNavbar = parseInt($('#mainNavbar').height());
+ var mainMenuHeight = parseInt($('#mainMenu').css('padding-top')) + parseInt($('#mainMenu').css('padding-bottom'));
+ var appTabsHeight = parseInt($('#appTabs').height());
+ var appsBarHeight = parseInt($('#appsBar').height());
+ var tabsHeight = parseInt($('#fileTabs .tabs-navbar').height());
+
+ headerHeight = headerHeight ? headerHeight : 0;
+ appsBarHeight = appsBarHeight ? appsBarHeight : 0;
+ tabsHeight = tabsHeight ? tabsHeight : 0;
+ appTabsHeight = appTabsHeight ? appTabsHeight : 0;
+ mainMenuHeight = mainMenuHeight ? mainMenuHeight : 0;
+ mainNavbar = mainNavbar ? mainNavbar : 0;
+
+ var codeHeight = windowHeight - headerHeight - appsBarHeight - tabsHeight - appTabsHeight - mainMenuHeight - mainNavbar;
+
+ if(codeHeight > 0) $.cookie.set(id + 'Height', codeHeight);
+
+ $('#' + id).css('height', $.cookie.get(id + 'Height'));
+}
\ No newline at end of file
diff --git a/lib/zin/wg/monaco/v1.php b/lib/zin/wg/monaco/v1.php
new file mode 100644
index 0000000000..1586d63bb9
--- /dev/null
+++ b/lib/zin/wg/monaco/v1.php
@@ -0,0 +1,51 @@
+ 'create',
+ 'options' => array(),
+ 'diffContent' => array(),
+ 'onMouseDown' => '',
+ );
+ public static function getPageJS(): string|false
+ {
+ return file_get_contents(__DIR__ . DS . 'js' . DS . 'v1.js');
+ }
+
+ protected function build(): wg
+ {
+ global $app;
+ $vsPath = $app->getWebRoot() . 'js/monaco-editor/min/vs';
+ $clientLang = $app->clientLang;
+ $id = $this->prop('id');
+ $action = $this->prop('action');
+ $options = $this->prop('options');
+ $diffContent = $this->prop('diffContent');
+ $onMouseDown = $this->prop('onMouseDown');
+
+ if(!$options) $options = new stdclass();
+ return div
+ (
+ jsVar('id', $id),
+ jsVar('action', $action),
+ jsVar('options', $options),
+ jsVar('diffContent', $diffContent),
+ jsVar('onMouseDown', $onMouseDown),
+ jsVar('vsPath', $vsPath),
+ jsVar('clientLang', $clientLang),
+ h::import($app->getWebRoot() . 'js/monaco-editor/min/vs/loader.js'),
+ setId($id),
+ );
+ }
+}
diff --git a/lib/zin/wg/nav/v1.php b/lib/zin/wg/nav/v1.php
new file mode 100644
index 0000000000..b76cbeb341
--- /dev/null
+++ b/lib/zin/wg/nav/v1.php
@@ -0,0 +1,36 @@
+prop(array('items', 'type', 'stacked', 'justified'));
+ return h::menu
+ (
+ setClass('nav', $type ? "nav-$type" : null, $stacked ? 'nav-stacked' : '', $justified ? 'nav-justified' : ''),
+ set($this->getRestProps()),
+ is_array($items) ? array_map(array($this, 'onBuildItem'), $items) : null,
+ $this->children()
+ );
+ }
+}
diff --git a/lib/zin/wg/navbar/v1.php b/lib/zin/wg/navbar/v1.php
new file mode 100644
index 0000000000..1d7cff76ae
--- /dev/null
+++ b/lib/zin/wg/navbar/v1.php
@@ -0,0 +1,302 @@
+dbh->query('SELECT project,type FROM ' . TABLE_EXECUTION . " WHERE `id` = '$executionID'")->fetch();
+ if(empty($object)) return;
+
+ $executionPairs = array();
+ $userCondition = !$app->user->admin ? " AND `id` " . helper::dbIN($app->user->view->sprints) : '';
+ $orderBy = $object->type == 'stage' ? 'ORDER BY `id` ASC' : 'ORDER BY `id` DESC';
+ $executionList = $app->dbh->query("SELECT id,name,parent FROM " . TABLE_EXECUTION . " WHERE `project` = '{$object->project}' AND `deleted` = '0' $userCondition $orderBy")->fetchAll();
+ foreach($executionList as $execution)
+ {
+ if(isset($executionPairs[$execution->parent])) unset($executionPairs[$execution->parent]);
+ if($execution->id == $executionID) continue;
+ $executionPairs[$execution->id] = $execution->name;
+ }
+
+ if(empty($executionPairs)) return;
+
+ $dropItems = array();
+ foreach($executionPairs as $executionID => $executionName)
+ {
+ $dropItems[] = array(
+ 'url' => createLink('execution', 'task', "executionID=$executionID"),
+ 'text' => $executionName,
+ 'hint' => $executionName,
+ 'class' => 'text-ellipsis'
+ );
+
+ if(count($dropItems) >= 10) break;
+ }
+
+ if(count($executionPairs) > 10)
+ {
+ $dropItems[] = array(
+ 'url' => createLink('project', 'execution', "status=all&projectID={$object->project}"),
+ 'text' => "$lang->preview $lang->more",
+ 'hint' => $lang->more,
+ 'data-app' => 'project'
+ );
+ }
+
+ return array(
+ 'type' => 'dropdown',
+ 'items' => $dropItems,
+ 'text' => $lang->more,
+ 'trigger' => 'hover',
+ 'menu' => array('style' => array('max-width' => '300px'))
+ );
+ }
+
+ protected function getAppBtnItem()
+ {
+ if(defined('TUTORIAL')) return;
+ global $app, $config, $lang;
+
+ $condition = '';
+ if(!$app->user->admin)
+ {
+ $types = '';
+ foreach($config->pipelineTypeList as $pipelineType)
+ {
+ if(commonModel::hasPriv($pipelineType, 'browse')) $types .= "'$pipelineType',";
+ }
+ if(empty($types)) return;
+ $condition .= ' AND `type` in (' . trim($types, ',') . ')';
+ }
+ $pipelineList = $app->dbh->query("SELECT type,name,url FROM " . TABLE_PIPELINE . " WHERE `deleted` = '0' $condition order by type")->fetchAll();
+ if(empty($pipelineList)) return;
+
+ $dropItems = array();
+ foreach($pipelineList as $pipeline)
+ {
+ $dropItems[] = array(
+ 'url' => $pipeline->url,
+ 'text' => "[{$pipeline->type}] {$pipeline->name}",
+ 'hint' => $pipeline->name,
+ 'class' => 'text-ellipsis',
+ 'target' => '_blank'
+ );
+ }
+
+ return array(
+ 'type' => 'dropdown',
+ 'items' => $dropItems,
+ 'text' => $lang->app->common,
+ 'trigger' => 'hover',
+ 'menu' => array('style' => array('max-width' => '300px'))
+ );
+ }
+
+ protected function getItems()
+ {
+ $items = $this->prop('items');
+ if(!empty($items)) return $items;
+
+ commonModel::setMainMenu();
+ commonModel::checkMenuVarsReplaced();
+
+ global $app, $lang;
+ $isTutorialMode = commonModel::isTutorialMode();
+ $currentModule = $app->rawModule;
+ $currentMethod = $app->rawMethod;
+
+ if($isTutorialMode and defined('WIZARD_MODULE')) $currentModule = WIZARD_MODULE;
+ if($isTutorialMode and defined('WIZARD_METHOD')) $currentMethod = WIZARD_METHOD;
+
+ $menu = \customModel::getMainMenu();
+ $tab = $app->tab;
+ $activeMenu = '';
+ $items = array();
+ foreach ($menu as $menuItem)
+ {
+ if(isset($menuItem->hidden) and $menuItem->hidden and (!isset($menuItem->tutorial) or !$menuItem->tutorial)) continue;
+ if(empty($menuItem->link)) continue;
+
+ if($menuItem->divider) $items[] = array('type' => 'divider');
+
+ /* Init the these vars. */
+ $subModule = isset($menuItem->subModule) ? explode(',', $menuItem->subModule) : array();
+ $class = isset($menuItem->class) ? $menuItem->class : '';
+ $exclude = isset($menuItem->exclude) ? $menuItem->exclude : '';
+ $isActive = false;
+
+ if($menuItem->name == $currentModule and !str_contains(",$exclude,", ",$currentModule-$currentMethod,"))
+ {
+ $isActive = true;
+ }
+ elseif($subModule and in_array($currentModule, $subModule) and !str_contains(",$exclude,", ",$currentModule-$currentMethod,"))
+ {
+ $isActive = true;
+ }
+
+ if($menuItem->link['module'] == 'execution' and $menuItem->link['method'] == 'more')
+ {
+ $executionID = $menuItem->link['vars'];
+ $executionMoreItem = $this->getExecutionMoreItem($executionID);
+ if(!empty($executionMoreItem))
+ {
+ $items[] = array('type' => 'divider');
+ $items[] = $executionMoreItem;
+ }
+ }
+ elseif($menuItem->link['module'] == 'app' and $menuItem->link['method'] == 'serverlink')
+ {
+ $appBtnItem = $this->getAppBtnItem();
+ if(!empty($appBtnItem)) $items[] = $appBtnItem;
+ }
+ elseif($menuItem->link)
+ {
+ $alias = isset($menuItem->alias) ? $menuItem->alias : '';
+ $target = '';
+ $module = '';
+ $method = '';
+ $label = $menuItem->text;
+
+ if(is_array($menuItem->link))
+ {
+ if(isset($menuItem->link['target'])) $target = $menuItem->link['target'];
+ if(isset($menuItem->link['module'])) $module = $menuItem->link['module'];
+ if(isset($menuItem->link['method'])) $method = $menuItem->link['method'];
+ }
+
+ if($module == $currentModule and ($method == $currentMethod or str_contains(",$alias,", ",$currentMethod,")) and !str_contains(",$exclude,", ",$currentMethod,"))
+ {
+ $isActive = true;
+ }
+
+ $dataApp = (isset($lang->navGroup->$module) and $tab != $lang->navGroup->$module) ? $tab : null;
+ if($isActive && empty($activeMenu)) $activeMenu = $menuItem->name;
+ else $isActive = false;
+
+ /* Print drop menus. */
+ if(isset($menuItem->dropMenu))
+ {
+ $dropItems = array();
+ foreach($menuItem->dropMenu as $dropMenuName => $dropMenuItem)
+ {
+ if(empty($dropMenuItem)) continue;
+ if(isset($dropMenuItem->hidden) and $dropMenuItem->hidden) continue;
+
+ /* Parse drop menu link. */
+ $dropMenuLink = zget($dropMenuItem, 'link', $dropMenuItem);
+
+ list($subLabel, $subModule, $subMethod, $subParams) = explode('|', $dropMenuLink);
+ if(!common::hasPriv($subModule, $subMethod)) continue;
+
+ $subLink = createLink($subModule, $subMethod, $subParams);
+
+ $subActive = false;
+ $activeMainMenu = false;
+ if($currentModule == strtolower($subModule) and $currentMethod == strtolower($subMethod))
+ {
+ $activeMainMenu = true;
+ }
+ else
+ {
+ $subModule = isset($dropMenuItem['subModule']) ? explode(',', $dropMenuItem['subModule']) : array();
+ if($subModule and in_array($currentModule, $subModule) and !str_contains(",$exclude,", ",$currentModule-$currentMethod,")) $activeMainMenu = true;
+ }
+
+ if($activeMainMenu)
+ {
+ $activeMenu = $dropMenuName;
+ $isActive = true;
+ $subActive = true;
+ $label = $subLabel;
+ }
+
+ $dropItems[] = array(
+ 'active' => $subActive,
+ 'data-id' => $dropMenuName,
+ 'url' => $subLink,
+ 'text' => $subLabel,
+ 'data-app' => $dataApp
+ );
+ }
+
+ if(empty($dropItems)) continue;
+ $items[] = array(
+ 'type' => 'dropdown',
+ 'items' => $dropItems,
+ 'class' => $class,
+ 'active' => $isActive,
+ 'target' => $target,
+ 'text' => $label,
+ 'data-id' => $menuItem->name,
+ 'data-app' => $dataApp,
+ 'trigger' => 'hover'
+ );
+ }
+ else
+ {
+ $items[] = array(
+ 'class' => $class,
+ 'text' => $label,
+ 'url' => commonModel::createMenuLink($menuItem, $tab),
+ 'active' => $isActive,
+ 'target' => $target,
+ 'data-id' => $menuItem->name,
+ 'data-app' => $dataApp
+ );
+ }
+ }
+ else
+ {
+ $items[] = array(
+ 'class' => $class,
+ 'text' => $menuItem->text,
+ 'active' => $isActive,
+ );
+ }
+ }
+
+ /* Set active menu to global data, make it accessible to other widgets */
+ data('activeMenu', $activeMenu);
+
+ return $items;
+ }
+
+ /**
+ * Build.
+ *
+ * @access protected
+ */
+ protected function build(): wg
+ {
+ return h::nav
+ (
+ set::id('navbar'),
+ new nav
+ (
+ on::click(<<<'FUNC'
+ const $target = $(e.target);
+ if(!$target.closest('.nav-divider').length && $target.closest('.nav-item').length)
+ {
+ const $navbar = $target.closest('#navbar');
+ $navbar.find('.active').removeClass('active');
+ $target.closest('.nav-item').find('a').addClass('active');
+ }
+ FUNC),
+ set::items($this->getItems()),
+ $this->children()
+ )
+ );
+ }
+}
diff --git a/lib/zin/wg/overviewblock/css/v1.css b/lib/zin/wg/overviewblock/css/v1.css
new file mode 100644
index 0000000000..df86bd2ffc
--- /dev/null
+++ b/lib/zin/wg/overviewblock/css/v1.css
@@ -0,0 +1 @@
+.block-overview .cards > .card + .card > :first-child {border-left-width: 1px;}
diff --git a/lib/zin/wg/overviewblock/v1.php b/lib/zin/wg/overviewblock/v1.php
new file mode 100644
index 0000000000..9d61b10ff6
--- /dev/null
+++ b/lib/zin/wg/overviewblock/v1.php
@@ -0,0 +1,150 @@
+
+ * @package zin
+ * @link https://www.zentao.net
+ */
+
+namespace zin;
+
+require_once dirname(__DIR__) . DS . 'blockpanel' . DS . 'v1.php';
+
+class overviewBlock extends wg
+{
+ protected static array $defineProps = array(
+ 'id?: string',
+ 'title?: string',
+ 'block?: object',
+ 'groups?: array'
+ );
+
+ public static function getPageCSS(): string|false
+ {
+ return file_get_contents(__DIR__ . DS . 'css' . DS . 'v1.css');
+ }
+
+ protected function buildCard($card): wg
+ {
+ $class = 'text-2xl text-center leading-relaxed num ' . (!empty($card->class) ? $card->class : '');
+
+ return col
+ (
+ setClass('card justify-center w-1/2'),
+ empty($card->url) ? span
+ (
+ setClass($class),
+ $card->value
+ ) : a
+ (
+ setClass($class),
+ set::href($card->url),
+ $card->value
+ ),
+ span
+ (
+ setClass('text-center'),
+ $card->label
+ )
+ );
+ }
+
+ protected function buildCards($group): wg
+ {
+ $cards = array();
+ foreach($group->cards as $card) $cards[] = $this->buildCard($card);
+
+ return row
+ (
+ setClass('w-1/2'),
+ setStyle(array('margin-top' => '-20px')),
+ $cards
+ );
+ }
+
+ protected function buildBarChart($group): wg
+ {
+ $bars = array();
+ $labels = array();
+ foreach($group->bars as $bar)
+ {
+ $bars[] = h::li
+ (
+ setStyle(array('display' => 'contents')),
+ span
+ (
+ set::title($bar->value),
+ setClass('block primary w-2'),
+ setStyle(array('height' => $bar->rate))
+ )
+ );
+
+ $labels[] = span
+ (
+ setClass('text-center'),
+ $bar->label
+ );
+ }
+
+ return div
+ (
+ setClass('bar-chart flex justify-center w-1/2'),
+ col
+ (
+ setClass('basis-48'),
+ span
+ (
+ setClass('mb-2'),
+ $group->title
+ ),
+ div
+ (
+ setClass('border-b'),
+ h::ul
+ (
+ setClass('flex justify-around items-end w-full'),
+ setStyle(array('height' => '60px')),
+ $bars
+ )
+ ),
+ div
+ (
+ setClass('flex justify-around mt-1.5'),
+ $labels
+ )
+ )
+ );
+ }
+
+ protected function buildBody($groups): array
+ {
+ $body = array();
+ foreach($groups as $group)
+ {
+ if($group->type == 'cards') $body[] = $this->buildCards($group);
+ if($group->type == 'barChart') $body[] = $this->buildBarChart($group);
+ }
+
+ return $body;
+ }
+
+ protected function build(): wg
+ {
+ list($id, $title, $block, $groups) = $this->prop(array('id', 'title', 'block', 'groups'));
+
+ return new blockPanel
+ (
+ set::block($block),
+ set::title($title),
+ set::id($id),
+ set::headingClass('border-0'),
+ set::bodyClass('flex block-base p-0'),
+
+ $this->buildBody($groups)
+ );
+ }
+}
diff --git a/lib/zin/wg/page/v1.php b/lib/zin/wg/page/v1.php
new file mode 100644
index 0000000000..01b763bfe3
--- /dev/null
+++ b/lib/zin/wg/page/v1.php
@@ -0,0 +1,54 @@
+ true);
+
+ protected static array $defineBlocks = array(
+ 'head' => array(),
+ 'header' => array('map' => 'header'),
+ 'heading' => array('map' => 'heading'),
+ 'dropmenu' => array('map' => 'dropmenu'),
+ 'main' => array('map' => 'main'),
+ 'footer' => array(),
+ );
+
+ protected function buildHeader(): array|wg
+ {
+ if($this->hasBlock('header')) return $this->block('header');
+
+ $headingBlock = $this->block('heading');
+ if(!empty($headingBlock)) return new header($headingBlock);
+
+ $dropmenuBlock = $this->block('dropmenu');
+ return new header(new heading($dropmenuBlock));
+ }
+
+ protected function buildBody(): array
+ {
+ if($this->hasBlock('main'))
+ {
+ return array
+ (
+ $this->buildHeader(),
+ $this->block('main'),
+ $this->children(),
+ $this->block('footer')
+ );
+ }
+
+ return array
+ (
+ $this->buildHeader(),
+ new main($this->children()),
+ $this->block('footer'),
+ );
+ }
+}
diff --git a/lib/zin/wg/pagebase/v1.php b/lib/zin/wg/pagebase/v1.php
new file mode 100644
index 0000000000..488cb3f93a
--- /dev/null
+++ b/lib/zin/wg/pagebase/v1.php
@@ -0,0 +1,107 @@
+ false,
+ 'display' => true,
+ 'metas' => array('', '', '', '')
+ );
+
+ protected static array $defineBlocks = array('head' => array());
+
+ protected function created()
+ {
+ if($this->prop('display')) $this->display();
+ }
+
+ protected function buildHead()
+ {
+ return $this->block('head');
+ }
+
+ protected function buildBody()
+ {
+ return $this->children();
+ }
+
+ protected function build(): wg
+ {
+ global $lang, $config, $app;
+
+ $zui = $this->prop('zui');
+ $head = $this->buildHead();
+ $body = $this->buildBody();
+
+ $jsConfig = \js::getJSConfigVars();
+ $bodyProps = $this->prop('bodyProps');
+ $bodyClass = $this->prop('bodyClass');
+ $metas = $this->prop('metas');
+ $rawContent = $this->prop('rawContent', !zin::$rawContentCalled);
+ $title = $this->props->get('title', data('title')) . " - $lang->zentaoPMS";
+ $attrs = $this->getRestProps();
+ $css = array(data('pageCSS'), '/*{{ZIN_PAGE_CSS}}*/');
+ $js = array('/*{{ZIN_PAGE_JS}}*/', data('pageJS'));
+ $imports = context::current()->getImportList();
+
+ $jsConfig->zin = true;
+ if($config->debug)
+ {
+ $js[] = h::createJsVarCode('window.zin', array('page' => $this->toJsonData(), 'definedProps' => wg::$definedPropsMap, 'wgBlockMap' => wg::$wgToBlockMap, 'config' => jsRaw('window.config')));
+ $js[] = 'console.log("[ZIN] ", window.zin);';
+ }
+ else
+ {
+ $js[] = h::createJsVarCode('window.zin', array());
+ }
+ if($zui) array_unshift($js, 'zui.defineFn();');
+
+ $currentLang = $this->props->get('lang');
+ if(empty($currentLang)) $currentLang = $app->getClientLang();
+
+ return h::html
+ (
+ before(html('')),
+ set($attrs),
+ set::lang($currentLang),
+ h::head
+ (
+ html($metas),
+ h::title($title),
+ $this->block('headBefore'),
+ $zui ? h::importCss($config->zin->zuiPath . 'zui.zentao.css', set::id('zuiCSS')) : null,
+ $zui ? h::importJs($config->zin->zuiPath . 'zui.zentao.umd.cjs', set::id('zuiJS')) : null,
+ h::jsVar('window.config', $jsConfig, setID('configJS')),
+ $zui ? h::importJs($app->getWebRoot() . 'js/zui3/zin.js', set::id('zinJS')) : null,
+ $head,
+ ),
+ h::body
+ (
+ set($bodyProps),
+ set::class($bodyClass),
+ empty($imports) ? null : h::import($imports),
+ h::css($css, setClass('zin-page-css')),
+ $body,
+ $rawContent ? rawContent() : null,
+ h::js($js, setClass('zin-page-js'))
+ )
+ );
+ }
+}
diff --git a/lib/zin/wg/pageform/v1.php b/lib/zin/wg/pageform/v1.php
new file mode 100644
index 0000000000..49befd4ecb
--- /dev/null
+++ b/lib/zin/wg/pageform/v1.php
@@ -0,0 +1,20 @@
+prop('formPanel')), parent::children())
+ );
+ }
+}
diff --git a/lib/zin/wg/pager/v1.php b/lib/zin/wg/pager/v1.php
new file mode 100644
index 0000000000..bbd3147eaf
--- /dev/null
+++ b/lib/zin/wg/pager/v1.php
@@ -0,0 +1,11 @@
+ array(),
+ 'headingActions' => array('map' => 'toolbar'),
+ 'footer' => array('map' => 'nav')
+ );
+
+ protected function buildHeadingActions(): ?wg
+ {
+ $actionsBlock = $this->block('headingActions');
+ $actions = $this->prop('headingActions');
+
+ if(empty($actions) && empty($actionsBlock)) return null;
+
+ return div
+ (
+ setClass('panel-actions'),
+ empty($actions) ? null : toolbar(set::items($actions)),
+ $actionsBlock
+ );
+ }
+
+ protected function buildHeading(): ?wg
+ {
+ list($title, $size) = $this->prop(['title', 'size']);
+ $headingBlock = $this->block('heading');
+ $actions = $this->buildHeadingActions();
+
+ if(empty($title) && empty($headingBlock) && empty($actions)) return null;
+
+ return div
+ (
+ setClass('panel-heading', $this->prop('headingClass')),
+ set($this->prop('headingProps')),
+ empty($title) ? null : div(setClass('panel-title', $this->prop('titleClass', empty($size) ? null : "text-$size")), $title, set($this->prop('titleProps'))),
+ $headingBlock,
+ $actions
+ );
+ }
+
+ protected function buildBody(): wg
+ {
+ return div
+ (
+ setClass('panel-body ' . $this->prop('bodyClass')),
+ set($this->prop('bodyProps')),
+ $this->children()
+ );
+ }
+
+ protected function buildFooter(): ?wg
+ {
+ list($footerActions) = $this->prop(array('footerActions'));
+ $footerBlock = $this->block('footer');
+
+ if(empty($footerActions) && empty($footerBlock)) return null;
+
+ return div
+ (
+ setClass('panel-footer', $this->prop('footerClass')),
+ set($this->prop('footerProps')),
+ $footerBlock,
+ empty($footerActions) ? null : toolbar(set::items($footerActions))
+ );
+ }
+
+ protected function buildProps(): array
+ {
+ list($class, $size) = $this->prop(array('class', 'size'));
+ return array(setClass('panel', $class, empty($size) ? null : "size-$size"));
+ }
+
+ protected function build(): wg
+ {
+ return div
+ (
+ $this->buildProps(),
+ set($this->getRestProps()),
+ $this->buildHeading(),
+ $this->buildBody(),
+ $this->buildFooter()
+ );
+ }
+}
diff --git a/lib/zin/wg/pastedialog/css/v1.css b/lib/zin/wg/pastedialog/css/v1.css
new file mode 100644
index 0000000000..f2af523141
--- /dev/null
+++ b/lib/zin/wg/pastedialog/css/v1.css
@@ -0,0 +1 @@
+.form-batch-table .form-batch-control .form-control.highlight {background-color: var(--dtable-checked-bg);}
diff --git a/lib/zin/wg/pastedialog/js/v1.js b/lib/zin/wg/pastedialog/js/v1.js
new file mode 100644
index 0000000000..7d4256611d
--- /dev/null
+++ b/lib/zin/wg/pastedialog/js/v1.js
@@ -0,0 +1,61 @@
+function importLines(target, field)
+{
+ const $modal = $(target).closest('.modal');
+ const $dialog = $modal.find('.modal-dialog');
+ const $lines = $modal.find('textarea');
+ const $form = $modal.closest('.container').find('form.form-batch');
+ const modalID = $modal.attr('id');
+
+ $dialog.addClass('loading');
+
+ setTimeout(function()
+ {
+ let $currentRow;
+
+ const lines = $lines.val().split('\n');
+ $.each(lines, function(index, line)
+ {
+ line = line.trim();
+ if(!line.length) return true;
+
+ if($currentRow)
+ {
+ $row = $currentRow.next();
+ }
+ else
+ {
+ $row = $form.find('tbody>tr [name^=' + field + ']').first().closest('tr');
+ }
+
+ while($row.length && $row.find('[name^=' + field + ']').val().length)
+ {
+ $row = $row.next();
+ }
+
+ if(!$row || !$row.length)
+ {
+ $form.data('zui.BatchForm').addRow();
+ $row = $form.find('tbody>tr [name^=' + field + ']').last().closest('tr');
+ }
+
+ $row.find('[name^=' + field + ']').val(line).addClass('highlight');
+
+ $currentRow = $row;
+ });
+
+ $lines.val('');
+ $dialog.removeClass('loading');
+
+ $modal.on('hidden.Modal.zui', function()
+ {
+ const $firstRow = $form.find('tbody>tr [name^=' + field + ']').first().closest('tr');
+ $firstRow[0].scrollIntoView();
+ });
+ zui.Modal.hide('#' + modalID);
+
+ setTimeout(function()
+ {
+ $form.find('[name^=' + field + '].highlight').removeClass('highlight');
+ }, 3000);
+ }, 200);
+};
diff --git a/lib/zin/wg/pastedialog/v1.php b/lib/zin/wg/pastedialog/v1.php
new file mode 100644
index 0000000000..623265fe97
--- /dev/null
+++ b/lib/zin/wg/pastedialog/v1.php
@@ -0,0 +1,56 @@
+prop('field');
+ $title = $this->prop('title');
+ $name = $this->prop('name');
+ if(empty($title)) $title = $lang->pasteText;
+
+ return modal
+ (
+ set::id('paste-dialog'),
+ set::title($title),
+ set::footerClass('center pt-2'),
+ set::footerActions
+ (
+ array
+ (
+ btn
+ (
+ setClass('btn btn-wide primary'),
+ on::click("importLines(target, '$field')"),
+ $lang->save
+ )
+ )
+ ),
+ textarea
+ (
+ setID($name),
+ set::name($name),
+ set::placeholder($lang->pasteTextInfo)
+ )
+ );
+ }
+}
diff --git a/lib/zin/wg/picker/v1.php b/lib/zin/wg/picker/v1.php
new file mode 100644
index 0000000000..9c0939c3e9
--- /dev/null
+++ b/lib/zin/wg/picker/v1.php
@@ -0,0 +1,130 @@
+
+ * @package zin
+ * @link http://www.zentao.net
+ */
+namespace zin;
+
+/**
+ * 下拉选择器(picker)部件类。
+ * The picker widget class.
+ *
+ * @author Hao Sun
+ */
+class picker extends wg
+{
+ /**
+ * Define widget properties.
+ *
+ * @var array
+ * @access protected
+ */
+ protected static array $defineProps = array(
+ 'id?: string="$GID"', // 组件根元素的 ID。
+ 'formID?: string', // 组件隐藏的表单元素 ID。
+ 'className?: string|array', // 类名。
+ 'style?: array', // 样式。
+ 'tagName?: string', // 组件根元素的标签名。
+ 'attrs?: array', // 附加到组件根元素上的属性。
+ 'clickType?: "toggle"|"open"', // 点击类型,`toggle` 表示点击按钮时切换显示隐藏,`open` 表示点击按钮时只打。
+ 'afterRender?: function', // 渲染完成后的回调函数。
+ 'beforeDestroy?: function', // 销毁前的回调函数。
+ 'name?: string', // 作为表单项的名称。
+ 'value?: string|string[]', // 默认值。
+ 'emptyValue?: string', // 允许的空值,使用逗号分隔多个允许的空值。
+ 'onChange?: function', // 值变更回调函数。
+ 'disabled?: boolean', // 是否禁用。
+ 'multiple?: boolean|number=false', // 是否允许选择多个值,如果指定为数字,则限制多选的数目,默认 `false`。
+ 'required?: boolean', // 是否必选(不允许空值,不可以被清除)。
+ 'placeholder?: string', // 选择框上的占位文本。
+ 'valueSplitter?: string', // 多个值的分隔字符串,默认为 `,`。
+ 'items: array|function', // 列表项或表项获取方法。
+ 'menu?: array', // 附加的菜单选项。
+ 'hotkey?: boolean', // 是否启用快捷键。
+ 'search?: boolean|number', // 是否启用搜索。
+ 'searchDelay?: number', // 搜索延迟时间,单位:毫秒。
+ 'searchHint?: string', // 搜索提示文本。
+ 'onDeselect?: function', // 当取消选择值时的回调函数。
+ 'onSelect?: function', // 当选择值时的回调函数。
+ 'onClear?: function', // 当清空值时的回调函数。
+ 'popContainer?: string', // 下拉面板容器元素。
+ 'popWidth?: number|"auto"|"100%"', // 菜单宽度,如果设置为 `'100%'` 则与选择框宽度一致,默认 `'100%'`。
+ 'popHeight?: number|"auto"', // 菜单高度,默认 `'auto'`。
+ 'popMaxHeight?: number', // 菜单最大高度,默认 `300`。
+ 'popMinHeight?: number', // 菜单最小高度,默认 `32`。
+ 'popMaxWidth?: number', // 菜单最大宽度,当宽度设置为 `'auto'` 时生效。
+ 'popMinWidth?: number', // 菜单最小宽度,当宽度设置为 `'auto'` 时生效,默认 50。
+ 'popPlacement?: "auto"|"bottom"|"top"|"bottom-start"|"top-end"', // 菜单方向,默认 `'auto'`。
+ 'popClass?: string|array', // 菜单类名。
+ 'popStyle?: array', // 菜单样式。
+ 'onPopShow?: function', // 菜单显示时的回调函数。
+ 'onPopShown?: function', // 菜单显示后的回调函数。
+ 'onPopHide?: function', // 菜单隐藏时的回调函数。
+ 'onPopHidden?: function', // 菜单隐藏后的回调函数。
+ );
+
+ /**
+ * Get picker component properties.
+ *
+ * @access protected
+ * @return array
+ */
+ protected function getPickerProps(): array
+ {
+ list($pickerProps, $restProps) = $this->props->split(array_keys(static::definedPropsList()));
+ $items = $pickerProps['items'];
+ $pickerItems = array();
+ $hasZeroValue = false;
+ $defaultValue = isset($pickerProps['value']) ? $pickerProps['value'] : (isset($pickerProps['defaultValue']) ? $pickerProps['defaultValue'] : '');
+ if(!empty($items))
+ {
+ foreach($items as $key => $item)
+ {
+ if(!is_array($item)) $item = array('text' => $item, 'value' => $key);
+ if(!is_string($item['value'])) $item['value'] = strval($item['value']);
+
+ if($item['value'] === '0') $hasZeroValue = true;
+ $pickerItems[] = $item;
+ }
+ }
+
+ $pickerProps['_props'] = $restProps;
+ $pickerProps['items'] = $pickerItems;
+ $pickerProps['defaultValue'] = $defaultValue;
+
+ if(!isset($pickerProps['emptyValue'])) $pickerProps['emptyValue'] = ($hasZeroValue || "$defaultValue" !== '0') ? '' : '0,';
+
+ if(isset($pickerProps['id']))
+ {
+ $pickerProps['_id'] = $pickerProps['id'];
+ unset($pickerProps['id']);
+ }
+ else
+ {
+ $pickerProps['_id'] = $this->gid;
+ }
+ return $pickerProps;
+ }
+
+ /**
+ * Build the widget.
+ *
+ * @access protected
+ * @return wg
+ */
+ protected function build(): zui
+ {
+ return zui::picker
+ (
+ set::_class('form-group-wrapper picker-box'),
+ set::_map(array('value' => 'defaultValue', 'formID' => 'id')),
+ set($this->getPickerProps())
+ );
+ }
+}
diff --git a/lib/zin/wg/popovers/v1.php b/lib/zin/wg/popovers/v1.php
new file mode 100644
index 0000000000..56b50af1f2
--- /dev/null
+++ b/lib/zin/wg/popovers/v1.php
@@ -0,0 +1,44 @@
+ array('padding' => 5),
+ );
+
+ protected static array $defineBlocks = array(
+ 'trigger' => array(),
+ 'target' => array(),
+ );
+
+ protected function build(): array
+ {
+ $trigger = $this->block('trigger')[0]->children()[0];
+ $target = $this->block('target')[0];
+ if(!($target instanceof \zin\zui)) $target = $target->children()[0];
+
+ $trigger->setProp('data-zin-id', $trigger->gid);
+ $trigger->setProp('data-target', "[data-zin-id='{$target->gid}']");
+ $target->setProp('data-zin-id', $target->gid);
+
+ $props = array_merge($this->props->pick(array('placement', 'strategy', 'flip', 'shift', 'arrow', 'offset')), array('_to' => "[data-zin-id='{$trigger->gid}']"));
+
+ return array(
+ $trigger,
+ $target,
+ zui::popovers(set($props)),
+ );
+ }
+}
diff --git a/lib/zin/wg/prilabel/v1.php b/lib/zin/wg/prilabel/v1.php
new file mode 100644
index 0000000000..2d6c2a1e79
--- /dev/null
+++ b/lib/zin/wg/prilabel/v1.php
@@ -0,0 +1,31 @@
+props->has('pri'))
+ {
+ $this->props->set('pri', $child);
+ return false;
+ }
+ }
+
+ protected function build(): wg
+ {
+ $pri = $this->prop('pri');
+
+ return span
+ (
+ set($this->getRestProps()),
+ setClass("pri-$pri"),
+ $pri
+ );
+ }
+}
diff --git a/lib/zin/wg/pripicker/v1.php b/lib/zin/wg/pripicker/v1.php
new file mode 100644
index 0000000000..c0a3d9fe28
--- /dev/null
+++ b/lib/zin/wg/pripicker/v1.php
@@ -0,0 +1,78 @@
+
+ * @package zin
+ * @link http://www.zentao.net
+ */
+
+namespace zin;
+
+/**
+ * 优先级选择器(priPicker)部件类
+ * The priPicker widget class
+ */
+class priPicker extends wg
+{
+ /**
+ * Define widget properties.
+ *
+ * @var array
+ * @access protected
+ */
+ protected static array $defineProps = array
+ (
+ 'id?: string="$GID"', // 组件根元素的 ID。
+ 'formID?: string', // 组件隐藏的表单元素 ID。
+ 'className?: string|array', // 类名。
+ 'style?: array', // 样式。
+ 'tagName?: string', // 组件根元素的标签名。
+ 'attrs?: array', // 附加到组件根元素上的属性。
+ 'clickType?: "toggle"|"open"', // 点击类型,`toggle` 表示点击按钮时切换显示隐藏,`open` 表示点击按钮时只打。
+ 'afterRender?: function', // 渲染完成后的回调函数。
+ 'beforeDestroy?: function', // 销毁前的回调函数。
+ 'name?: string', // 作为表单项的名称。
+ 'value?: string|string[]', // 默认值。
+ 'onChange?: function', // 值变更回调函数。
+ 'disabled?: boolean', // 是否禁用。
+ 'multiple?: boolean|number=false', // 是否允许选择多个值,如果指定为数字,则限制多选的数目,默认 `false`。
+ 'required?: boolean', // 是否必选(不允许空值,不可以被清除)。
+ 'placeholder?: string', // 选择框上的占位文本。
+ 'items?: string[]|array' // 选项列表,默认为 $lang->$moduleName->priList。
+ );
+
+ /**
+ * Build widget.
+ *
+ * @access protected
+ */
+ protected function build(): zui
+ {
+ list($props, $restProps) = $this->props->split(array_keys(static::definedPropsList()));
+ if(isset($props['id']))
+ {
+ $props['_id'] = $props['id'];
+ unset($props['id']);
+ }
+
+ if(!isset($props['items']))
+ {
+ global $app, $lang;
+ $moduleName = $app->getModuleName();
+ if(isset($lang->$moduleName->priList)) $props['items'] = $lang->$moduleName->priList;
+ }
+ return zui::priPicker
+ (
+ set::_class('form-group-wrapper'),
+ set::_map(array('value' => 'defaultValue', 'formID' => 'id')),
+ set::_props($restProps),
+ set::popWidth('100%'),
+ set($props),
+ $this->children(),
+ );
+ }
+}
diff --git a/lib/zin/wg/productmenu/css/v1.css b/lib/zin/wg/productmenu/css/v1.css
new file mode 100644
index 0000000000..c130b2a8d4
--- /dev/null
+++ b/lib/zin/wg/productmenu/css/v1.css
@@ -0,0 +1,11 @@
+.product-menu {width: 200px; max-height: 100%; margin: -5px 0; justify-content: flex-start;}
+.product-menu > .text {flex: auto; display: flex; align-items: center; justify-content: flex-start; font-weight: bold; font-size: 16px; padding: 0 4px;}
+.product-menu > .icon.is-leading {width: 18px; height: 18px; border-radius: 50%; border: 1px solid var(--color-primary-500); display: flex; align-items: center; justify-content: center; transform: rotate(90deg); transition: .2s all;}
+.product-menu.is-open > .icon.is-leading {color: var(--color-canvas); background: var(--color-primary-500); transform: rotate(-90deg);}
+.product-menu > .is-caret {width: 20px; margin-right: -8px; transition: background-color .2s; border-radius: var(--radius)}
+.product-menu[data-value=""] > .is-caret,
+.product-menu[data-value="all"] > .is-caret,
+.product-menu[data-value="0"] > .is-caret {display: none;}
+.product-menu > .is-caret:hover {color: var(--color-primary-500); background: var(--color-primary-100);}
+.product-menu > .is-caret > .caret {display: none;}
+.product-menu > .is-caret::after {content: '\e936'; font-family: ZentaoIcon;}
diff --git a/lib/zin/wg/productmenu/v1.php b/lib/zin/wg/productmenu/v1.php
new file mode 100644
index 0000000000..8e565816af
--- /dev/null
+++ b/lib/zin/wg/productmenu/v1.php
@@ -0,0 +1,76 @@
+prop('link');
+ $items = $this->prop('items');
+
+ $menus = array();
+ foreach($items as $itemKey => $item)
+ {
+ if(is_array($item))
+ {
+ $menus[] = $item;
+ continue;
+ }
+
+ $menus[] = array('text' => $item, 'key' => $itemKey);
+ }
+ return $menus;
+ }
+
+ private function getTitle()
+ {
+ global $lang;
+ $activeKey = $this->prop('activeKey');
+ if(empty($activeKey)) return $lang->product->all;
+
+ $items = $this->prop('items');
+
+ foreach($items as $itemID => $itemName)
+ {
+ if($itemID == $activeKey) return $itemName;
+ }
+
+ return $lang->product->all;
+ }
+
+ protected function build(): zui
+ {
+ $items = $this->buildMenu();
+
+ $activeKey = $this->prop('activeKey');
+ $link = $this->prop('link');
+ $title = $this->prop('title') ? $this->prop('title') : $this->getTitle();
+ $closeLink = str_replace('{key}', '', $link);
+
+ return zui::dropmenu
+ (
+ set('_id', 'productMenu'),
+ set::className('product-menu btn'),
+ set::defaultValue($activeKey),
+ set::text($title),
+ set::caret(true),
+ set::popWidth(200),
+ set::popClass('popup text-md'),
+ set::onClick(jsRaw("(event) => {if(!event.target.closest('.is-caret')) return; openUrl('$closeLink'); return false}")),
+ set::data(array('search' => false, 'checkIcon' => false, 'link' => $link, 'data' => $items)),
+ );
+ }
+}
diff --git a/lib/zin/wg/programmenu/css/v1.css b/lib/zin/wg/programmenu/css/v1.css
new file mode 100644
index 0000000000..eb59e6a7eb
--- /dev/null
+++ b/lib/zin/wg/programmenu/css/v1.css
@@ -0,0 +1,10 @@
+.program-menu {width: 200px; max-height: 100%; margin: -5px 0; justify-content: flex-start;}
+.program-menu > .text {flex: auto; display: flex; align-items: center; justify-content: flex-start; font-weight: bold; font-size: 16px; padding: 0 4px;}
+.program-menu > .icon.is-leading {width: 18px; height: 18px; border-radius: 50%; border: 1px solid var(--color-primary-500); display: flex; align-items: center; justify-content: center; transform: rotate(90deg); transition: .2s all;}
+.program-menu.is-open > .icon.is-leading {color: var(--color-canvas); background: var(--color-primary-500); transform: rotate(-90deg);}
+.program-menu > .is-caret {width: 20px; margin-right: -8px; transition: background-color .2s; border-radius: var(--radius)}
+.program-menu[data-value=""] > .is-caret,
+.program-menu[data-value="0"] > .is-caret {display: none;}
+.program-menu > .is-caret:hover {color: var(--color-primary-500); background: var(--color-primary-100);}
+.program-menu > .is-caret > .caret {display: none;}
+.program-menu > .is-caret::after {content: '\e936'; font-family: ZentaoIcon;}
diff --git a/lib/zin/wg/programmenu/v1.php b/lib/zin/wg/programmenu/v1.php
new file mode 100644
index 0000000000..5cb176471c
--- /dev/null
+++ b/lib/zin/wg/programmenu/v1.php
@@ -0,0 +1,87 @@
+getChildProgram($parentID);
+ if(count($children) === 0) return array();
+
+ foreach($children as $child)
+ {
+ $item = array('id' => $child->id, 'icon' => 'icon-cards-view', 'text' => $child->name, 'items' => array());
+ if(isset($child->icon)) $item['icon'] = $child->icon;
+
+ $items = $this->buildMenuTree($item['items'], $child->id);
+
+ if(count($items) !== 0)
+ {
+ $item['items'] = $items;
+ }
+ else
+ {
+ unset($item['items']);
+ }
+
+ $parent[] = $item;
+ }
+ return $parent;
+ }
+
+ private function getTitle($activeKey)
+ {
+ global $lang;
+ if(empty($activeKey)) return $lang->program->all;
+
+ foreach($this->programs as $program)
+ {
+ if($program->id == $activeKey) return $program->name;
+ }
+
+ return $lang->program->all;
+ }
+
+ private function getChildProgram($id)
+ {
+ return array_filter($this->programs, function($program) use($id) {return $program->parent == $id;});
+ }
+
+ protected function build(): zui
+ {
+ $this->programs = (array)$this->prop('programs');
+ $activeKey = $this->prop('activeKey');
+ $link = $this->prop('link');
+ $closeLink = str_replace('{id}', '0', $link);
+ return zui::dropmenu
+ (
+ set('_id', 'programMenu'),
+ set::className('program-menu btn'),
+ set::defaultValue($activeKey),
+ set::text($this->getTitle($activeKey)),
+ set::caret(true),
+ set::popWidth(200),
+ set::popClass('popup text-md'),
+ set::onClick(jsRaw("(event) => {if(!event.target.closest('.is-caret')) return; openUrl('$closeLink'); return false}")),
+ set::data(array('search' => false, 'checkIcon' => false, 'title' => data('lang.product.selectProgram'), 'link' => $link, 'data' => $this->buildMenuTree(array(), 0))),
+ );
+ }
+}
diff --git a/lib/zin/wg/radio/v1.php b/lib/zin/wg/radio/v1.php
new file mode 100644
index 0000000000..3a6768ad67
--- /dev/null
+++ b/lib/zin/wg/radio/v1.php
@@ -0,0 +1,13 @@
+ 'radio'
+ );
+}
diff --git a/lib/zin/wg/radiolist/v1.php b/lib/zin/wg/radiolist/v1.php
new file mode 100644
index 0000000000..a6bac8b115
--- /dev/null
+++ b/lib/zin/wg/radiolist/v1.php
@@ -0,0 +1,13 @@
+ 'radio'
+ );
+}
diff --git a/lib/zin/wg/risklabel/v1.php b/lib/zin/wg/risklabel/v1.php
new file mode 100644
index 0000000000..c50921d812
--- /dev/null
+++ b/lib/zin/wg/risklabel/v1.php
@@ -0,0 +1,44 @@
+props->has('text'))
+ {
+ $this->props->set('text', $child);
+ return false;
+ }
+ }
+
+ private function getThemeClass(): string
+ {
+ $level = $this->prop('level');
+ if($level === 'h' || $level === 'high') return 'risk-high';
+ if($level === 'm' || $level === 'middle') return 'risk-middle';
+ return 'risk-low';
+ }
+
+ protected function build(): wg
+ {
+ $text = $this->prop('text');
+ return span
+ (
+ set($this->getRestProps()),
+ setClass($this->getThemeClass()),
+ $text
+ );
+ }
+}
diff --git a/lib/zin/wg/row/v1.php b/lib/zin/wg/row/v1.php
new file mode 100644
index 0000000000..d460c85ada
--- /dev/null
+++ b/lib/zin/wg/row/v1.php
@@ -0,0 +1,26 @@
+prop(array('justify', 'align'));
+ if(!empty($justify)) $classList .= ' justify-' . $justify;
+ if(!empty($align)) $classList .= ' items-' . $align;
+
+ return div
+ (
+ setClass($classList),
+ set($this->getRestProps()),
+ $this->children()
+ );
+ }
+}
diff --git a/lib/zin/wg/searchform/v1.php b/lib/zin/wg/searchform/v1.php
new file mode 100644
index 0000000000..9d00cff4ab
--- /dev/null
+++ b/lib/zin/wg/searchform/v1.php
@@ -0,0 +1,11 @@
+').insertAfter('#mainMenu');
+ if(!$form.data('loaded'))
+ {
+ const url = $.createLink('search', 'buildForm', 'module=' + moduleName + '&fields=¶ms=&actionURL=&queryID=0&formName=' + formName);
+ $.get(url, html =>
+ {
+ $form.html(html).data('loaded', true);
+ zui.bus.emit('searchform.loaded');
+ });
+ }
+};
diff --git a/lib/zin/wg/searchtoggle/v1.php b/lib/zin/wg/searchtoggle/v1.php
new file mode 100644
index 0000000000..8bd65d2192
--- /dev/null
+++ b/lib/zin/wg/searchtoggle/v1.php
@@ -0,0 +1,39 @@
+prop('module');
+ $formName = $this->prop('formName');
+ return btn
+ (
+ set::class('ghost search-form-toggle'),
+ set::icon('search'),
+ set::text($lang->searchAB),
+ set('data-module', $this->prop('module')),
+ set('data-on', 'click'),
+ set('data-do', "window.toggleSearchForm('$module', '$formName');"),
+ $this->prop('open') ? h::jsCall('~window.toggleSearchForm', $module, $formName, true) : null
+ );
+ }
+}
diff --git a/lib/zin/wg/section/v1.php b/lib/zin/wg/section/v1.php
new file mode 100644
index 0000000000..3e9b055e6e
--- /dev/null
+++ b/lib/zin/wg/section/v1.php
@@ -0,0 +1,74 @@
+ array(),
+ 'actions' => array(),
+ );
+
+ protected function onAddChild($child)
+ {
+ if(is_string($child) && !$this->props->has('content'))
+ {
+ $this->props->set('content', $child);
+ return false;
+ }
+ }
+
+ private function title(): wg
+ {
+ $title = $this->prop('title');
+ $actionsView = $this->block('actions');
+
+ if(empty($actionsView)) return div(setClass('article-h1', 'mb-2'), $title);
+
+ return div
+ (
+ setClass('flex', 'items-center', 'mb-2'),
+ div(setClass('article-h1'), $title),
+ $actionsView,
+ );
+ }
+
+ private function content(string|wg $content): wg
+ {
+ $useHtml = $this->prop('useHtml') === true && is_string($content);
+
+ return div
+ (
+ setClass('article-content'),
+ $useHtml ? html($content) : $content,
+ );
+
+ }
+
+ private function buildContent(): wg|array|null
+ {
+ $content = $this->prop('content');
+ if(!isset($content)) return null;
+
+ return $this->content($content);
+ }
+
+ protected function build(): wg
+ {
+ return div
+ (
+ setClass('section'),
+ set($this->getRestProps()),
+ $this->title(),
+ $this->block('subtitle'),
+ $this->buildContent(),
+ $this->children()
+ );
+ }
+}
diff --git a/lib/zin/wg/sectioncard/v1.php b/lib/zin/wg/sectioncard/v1.php
new file mode 100644
index 0000000000..765c99841a
--- /dev/null
+++ b/lib/zin/wg/sectioncard/v1.php
@@ -0,0 +1,50 @@
+ array('map' => 'entityLabel'),
+ );
+
+ private function title(string $text): wg
+ {
+ return div
+ (
+ setClass('article-h4', 'mb-1'),
+ "[$text]"
+ );
+ }
+
+ public function onBuildItem(item $item): wg
+ {
+ return div
+ (
+ setClass('py-2', 'pl-3'),
+ $this->title($item->prop('title')),
+ $item->children(),
+ );
+ }
+
+ protected function build(): wg
+ {
+ $title = $this->block('title');
+
+ return div
+ (
+ setClass('section-card', 'border', 'rounded-sm'),
+ div
+ (
+ setClass('h-9', 'flex', 'items-center', 'pl-3'),
+ setStyle('background', 'var(--color-gray-100)'),
+ $title
+ ),
+ div
+ (
+ setClass('py-1'),
+ $this->children()
+ ),
+ );
+ }
+}
diff --git a/lib/zin/wg/sectionlist/v1.php b/lib/zin/wg/sectionlist/v1.php
new file mode 100644
index 0000000000..e61a990b44
--- /dev/null
+++ b/lib/zin/wg/sectionlist/v1.php
@@ -0,0 +1,23 @@
+getRestProps()),
+ $this->children()
+ );
+ }
+}
diff --git a/lib/zin/wg/select/v1.php b/lib/zin/wg/select/v1.php
new file mode 100644
index 0000000000..3ce55fe03f
--- /dev/null
+++ b/lib/zin/wg/select/v1.php
@@ -0,0 +1,139 @@
+
+ * @package zin
+ * @link http://www.zentao.net
+ */
+namespace zin;
+
+/**
+ * 选择框(select)部件类,支持 Ajax 提交。
+ * The select control widget class.
+ *
+ * @author Hao Sun
+ */
+class select extends wg
+{
+ /**
+ * Define widget properties.
+ *
+ * @var array
+ * @access protected
+ */
+ protected static array $defineProps = array
+ (
+ 'name: string',
+ 'id?: string',
+ 'class?: string="form-control"',
+ 'value?: string=""',
+ 'required?: bool',
+ 'disabled?: bool',
+ 'multiple?: bool',
+ 'items?: array',
+ 'size?: int',
+ );
+
+ /**
+ * The lifecycle method of created.
+ *
+ * Set default id with name.
+ * @access protected
+ * @return void
+ */
+ protected function created()
+ {
+ if($this->prop('id') === null && $this->prop('name') !== null)
+ {
+ $name = $this->prop('name');
+ $id = substr($name, -2) == '[]' ? substr($name, 0, - 2) : $name;
+ $this->setProp('id', $id);
+ }
+ }
+
+ /**
+ * Handle building inner options.
+ *
+ * @param wg|array wg
+ * @access public
+ * @return wg
+ */
+ public function onBuildItem(wg|array $item): wg
+ {
+ if($item instanceof item) $item = $item->props->toJsonData();
+
+ $text = isset($item['text']) ? $item['text'] : '';
+ unset($item['text']);
+
+ if(!isset($item['selected']))
+ {
+ $value = isset($item['value']) ? $item['value'] : '';
+ $valueList = $this->getValueList();
+
+ $item['selected'] = in_array($value, $valueList);
+ }
+
+ return h::option(set($item), $text);
+ }
+
+ /**
+ * Get value list.
+ *
+ * @access public
+ * @return array
+ */
+ public function getValueList()
+ {
+ list($value, $multiple) = $this->prop(array('value', 'multiple'));
+ if($multiple) return is_array($value) ? $value : explode(',', (string)$value);
+ return array($value);
+ }
+
+ /**
+ * The lifecycle method of building.
+ *
+ * @access protected
+ * @return wg
+ */
+ protected function build(): wg
+ {
+ list($items, $multiple, $required) = $this->prop(array('items', 'multiple', 'required'));
+
+ $hasEmptyItem = false;
+ $valueList = $this->getValueList();
+ if(!empty($items))
+ {
+ foreach($items as $key => $item)
+ {
+ if(!is_array($item)) $item = array('text' => $item, 'value' => $key);
+ if(!is_string($item['value'])) $item['value'] = strval($item['value']);
+ if(!isset($item['selected'])) $item['selected'] = in_array($item['value'], $valueList);
+ $items[$key] = $this->onBuildItem($item);
+
+ if($item['value'] === '') $hasEmptyItem = true;
+ }
+ }
+ else
+ {
+ $items = array();
+ }
+
+ /* Prepend empty option when current select is not required and whitout any empty item. */
+ if(!$required && !$hasEmptyItem) array_unshift($items, $this->onBuildItem(array('text' => '', 'value' => '', 'selected' => in_array('', $valueList))));
+
+ $props = $this->props->skip(['items', 'value', 'multiple', 'required']);
+
+ return h::select
+ (
+ setClass('form-control', $required ? 'is-required' : ''),
+ set::multiple($multiple),
+ set($props),
+ $items,
+ $this->children()
+ );
+ }
+}
diff --git a/lib/zin/wg/severitylabel/v1.php b/lib/zin/wg/severitylabel/v1.php
new file mode 100644
index 0000000000..efe2c4aaf2
--- /dev/null
+++ b/lib/zin/wg/severitylabel/v1.php
@@ -0,0 +1,36 @@
+props->has('text'))
+ {
+ $this->props->set('text', $child);
+ return false;
+ }
+ }
+
+ protected function build(): wg
+ {
+ $text = $this->prop('text');
+ $level = $this->prop('level');
+ $isIcon = $this->prop('isIcon');
+
+ return span
+ (
+ set($this->getRestProps()),
+ setClass($isIcon ? 'severity' : 'severity severity-label'),
+ set('data-severity', $level),
+ $text
+ );
+ }
+}
diff --git a/lib/zin/wg/severitypicker/v1.php b/lib/zin/wg/severitypicker/v1.php
new file mode 100644
index 0000000000..885efd0e25
--- /dev/null
+++ b/lib/zin/wg/severitypicker/v1.php
@@ -0,0 +1,79 @@
+
+ * @package zin
+ * @link http://www.zentao.net
+ */
+
+namespace zin;
+
+/**
+ * 严重程度选择器(severityPicker)部件类
+ * The severityPicker widget class
+ */
+class severityPicker extends wg
+{
+ /**
+ * Define widget properties.
+ *
+ * @var array
+ * @access protected
+ */
+ protected static array $defineProps = array
+ (
+ 'id?: string="$GID"', // 组件根元素的 ID。
+ 'formID?: string', // 组件隐藏的表单元素 ID。
+ 'className?: string|array', // 类名。
+ 'style?: array', // 样式。
+ 'tagName?: string', // 组件根元素的标签名。
+ 'attrs?: array', // 附加到组件根元素上的属性。
+ 'clickType?: "toggle"|"open"', // 点击类型,`toggle` 表示点击按钮时切换显示隐藏,`open` 表示点击按钮时只打。
+ 'afterRender?: function', // 渲染完成后的回调函数。
+ 'beforeDestroy?: function', // 销毁前的回调函数。
+ 'name?: string', // 作为表单项的名称。
+ 'value?: string|string[]', // 默认值。
+ 'onChange?: function', // 值变更回调函数。
+ 'disabled?: boolean', // 是否禁用。
+ 'multiple?: boolean|number=false', // 是否允许选择多个值,如果指定为数字,则限制多选的数目,默认 `false`。
+ 'required?: boolean', // 是否必选(不允许空值,不可以被清除)。
+ 'placeholder?: string', // 选择框上的占位文本。
+ 'items?: string[]|array' // 选项列表,默认为 $lang->$moduleName->severityList。
+ );
+
+ /**
+ * Build widget.
+ *
+ * @access protected
+ */
+ protected function build(): zui
+ {
+ list($props, $restProps) = $this->props->split(array_keys(static::definedPropsList()));
+ if(isset($props['id']))
+ {
+ $props['_id'] = $props['id'];
+ unset($props['id']);
+ }
+
+ if(!isset($props['items']))
+ {
+ global $app, $lang;
+ $moduleName = $app->getModuleName();
+ if(isset($lang->$moduleName->severityList)) $props['items'] = $lang->$moduleName->severityList;
+ }
+
+ return zui::severityPicker
+ (
+ set::_class('form-group-wrapper'),
+ set::_map(array('value' => 'defaultValue', 'formID' => 'id')),
+ set::_props($restProps),
+ set::popWidth('100%'),
+ set($props),
+ $this->children(),
+ );
+ }
+}
diff --git a/lib/zin/wg/sidebar/css/v1.css b/lib/zin/wg/sidebar/css/v1.css
new file mode 100644
index 0000000000..029801fc5a
--- /dev/null
+++ b/lib/zin/wg/sidebar/css/v1.css
@@ -0,0 +1,97 @@
+.sidebar {
+ flex: none !important;
+ position: relative;
+ transition-duration: .15s;
+ transition-property: width;
+ transition-timing-function: cubic-bezier(.4, 0, .2, 1);
+ width: var(--zt-sidebar-width);
+}
+
+.sidebar-toggle {
+ align-items: center;
+ border-radius: var(--radius);
+ bottom: 0;
+ cursor: pointer;
+ display: flex;
+ justify-content: center;
+ position: absolute;
+ top: 0;
+ transition-duration: 1s;
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
+ transition-timing-function: cubic-bezier(.4, 0, .2, 1);
+ width: 1rem;
+}
+
+.sidebar-toggle > .icon {
+ align-items: center;
+ background-color: rgb(var(--color-canvas-rgb));
+ border-color: rgb(212, 212, 216);
+ border-width: 1px;
+ display: flex;
+ height: 2rem;
+ justify-content: center;
+ width: 0.75rem;
+}
+
+.sidebar-toggle:hover > .icon {
+ border-color: rgba(var(--color-primary-500-rgb));
+ color: rgba(var(--color-primary-500-rgb));
+}
+
+.sidebar-left > .sidebar-toggle > .icon {
+ border-bottom-left-radius: var(--radius-lg);
+ border-top-left-radius: var(--radius-lg);
+}
+
+.sidebar-right > .sidebar-toggle > .icon {
+ border-top-right-radius: var(--radius-lg);
+ border-bottom-right-radius: var(--radius-lg);
+}
+
+.sidebar-left > .sidebar-toggle {
+ right: -1rem;
+}
+
+.sidebar-right > .sidebar-toggle {
+ left: -1rem;
+}
+
+.sidebar-toggle:hover {
+ background-color: #3341550d;
+}
+
+.hide-sidebar-left .sidebar-left > *,
+.hide-sidebar-right .sidebar-right > * {
+ display: none;
+}
+
+.hide-sidebar-left .sidebar.sidebar-left,
+.hide-sidebar-right .sidebar.sidebar-right {
+ margin-left: -0.5rem;
+ margin-right: -0.5rem;
+ width: 0;
+}
+
+.hide-sidebar-left .sidebar-left > .sidebar-toggle {
+ display: flex;
+ right: -0.5rem;
+}
+.hide-sidebar-right .sidebar-right > .sidebar-toggle {
+ display: flex;
+ left: -0.5rem;
+}
+.hide-sidebar-left .sidebar-left > .sidebar-toggle > .icon {
+ transform: rotate(180deg);
+ border-top-left-radius: 0;
+ border-bottom-left-radius: 0;
+ border-top-right-radius: 0.5rem;
+ border-bottom-right-radius: 0.5rem;
+}
+
+.hide-sidebar-right .sidebar-right > .sidebar-toggle > .icon {
+ transform: rotate(180deg);
+ border-top-right-radius: 0;
+ border-bottom-right-radius: 0;
+ border-top-left-radius: 0.5rem;
+ border-bottom-left-radius: 0.5rem;
+}
diff --git a/lib/zin/wg/sidebar/js/v1.js b/lib/zin/wg/sidebar/js/v1.js
new file mode 100644
index 0000000000..b08e5936ad
--- /dev/null
+++ b/lib/zin/wg/sidebar/js/v1.js
@@ -0,0 +1,13 @@
+/**
+ * @param {{side?: 'left' | 'right', toggle?: boolean, container?: HTMLElement}=} options
+ */
+function toggleSidebar(options) {
+ const {side = 'left', toggle, container = document.body} = options || {};
+ container.classList.toggle(`hide-sidebar-${side}`, typeof toggle === 'boolean' ? !toggle : undefined);
+}
+
+zui.toggleSidebar = toggleSidebar;
+
+zui.bus.on('zt_toggleSidebar', (event) => {
+ toggleSidebar(event.detail);
+});
diff --git a/lib/zin/wg/sidebar/v1.php b/lib/zin/wg/sidebar/v1.php
new file mode 100644
index 0000000000..ca0419e011
--- /dev/null
+++ b/lib/zin/wg/sidebar/v1.php
@@ -0,0 +1,38 @@
+prop(array('side', 'showToggle'));
+ return div
+ (
+ setClass("sidebar sidebar-$side"),
+ set($this->getRestProps()),
+ $this->children(),
+ $showToggle ? div
+ (
+ set::class("sidebar-toggle sidebar-$side-toggle"),
+ icon("angle-$side"),
+ on::click("zui.toggleSidebar({side: '$side'})")
+ ) : null
+ );
+ }
+}
diff --git a/lib/zin/wg/stepseditor/css/v1.css b/lib/zin/wg/stepseditor/css/v1.css
new file mode 100644
index 0000000000..827e01ca5a
--- /dev/null
+++ b/lib/zin/wg/stepseditor/css/v1.css
@@ -0,0 +1,23 @@
+.steps-editor {width: 100%}
+.steps-editor-header {padding-right: 40px; color: var(--color-slate-700);}
+.steps-editor-row {position: relative; display: flex; align-items: stretch; min-height: 32px; --tw-ring-color: rgba(var(--color-border-strong-rgb), 1); box-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); margin-top: 1px; z-index: 1;}
+.steps-editor-row.is-focus {z-index: 100;}
+.steps-editor-header .steps-editor-row {border-radius: 2px 2px 0 0; background-color: var(--color-slate-100);}
+.steps-editor-col {flex: none; display: flex; align-items: stretch;}
+.steps-editor-header .steps-editor-col {padding: 0 12px; align-items: center;}
+.steps-editor-col-step {width: 50%;}
+.steps-editor-col-add {width: 80px; border-left: 1px solid var(--color-border-strong); border-right: 1px solid var(--color-border-strong); align-items: center; padding: 0!important;}
+.steps-editor-col-add > div {width: 50%; display: flex; align-items: center; justify-content: center; position: relative;}
+.steps-editor-col-expect {flex: auto;}
+.steps-editor-body {padding-right: 40px;}
+.steps-editor-col-step.form-control {padding: 0; border-radius: 0; height: auto; z-index: 100;}
+.steps-editor-step-name {padding: 6px 0 6px 8px; flex: none; text-align: right; opacity: .5;}
+.steps-editor-step-expect,
+.steps-editor-step-text {padding: 6px 12px;; flex: auto; border: none; min-height: 32px; background: none; border-radius: 0; resize: none}
+.steps-editor-step-text {outline: none;}
+.steps-editor-body .steps-editor-col-add > div + div::before {content: ' '; position: absolute; display: block; border-left: 1px solid var(--color-border-strong); top: 4px; bottom: 4px; left: 0; opacity: .7;}
+.steps-editor .btn-action {color: var(--color-slate-600);}
+.steps-editor .btn-action:hover {color: var(--color-primary-500);}
+.steps-editor-col-delete {width: 40px; height: 32px; display: flex; align-items: center; justify-content: center; position: absolute; right: -40px; top: 0}
+.steps-editor-row[data-level="1"] {margin-top: 7px;}
+.steps-editor-body > .steps-editor-row:first-child {margin-top: 1px;}
diff --git a/lib/zin/wg/stepseditor/js/v1.js b/lib/zin/wg/stepseditor/js/v1.js
new file mode 100644
index 0000000000..4644a78cc0
--- /dev/null
+++ b/lib/zin/wg/stepseditor/js/v1.js
@@ -0,0 +1,225 @@
+/** Steps editor component. */
+class StepsEditor extends zui.Component
+{
+ static NAME = 'StepsEditor';
+
+ static DEFAULT =
+ {
+ name: 'steps',
+ expectsName: 'expects',
+ data: ['1', '2', '3'],
+ sameLevelIcon: 'plus',
+ subLevelIcon: 'split',
+ moveIcon: 'move',
+ deleteIcon: 'trash',
+ expectDisabledTip: '',
+ };
+
+ init()
+ {
+ this.update(this.options.data, true, true);
+ }
+
+ afterInit()
+ {
+ this.render();
+ this.$element
+ .on('focus', 'textarea', e =>
+ {
+ const $textarea = $(e.target);
+ $textarea.closest('.steps-editor-col-step').addClass('focus');
+ $textarea.closest('.steps-editor-row').addClass('is-focus');
+ })
+ .on('blur', 'textarea', e =>
+ {
+ const $textarea = $(e.target);
+ $textarea.closest('.steps-editor-col-step').removeClass('focus');
+ $textarea.closest('.steps-editor-row').removeClass('is-focus');
+ })
+ .on('click', '.btn-action', e =>
+ {
+ const action = $(e.currentTarget).attr('data-action');
+ const name = $(e.currentTarget).closest('.steps-editor-row').attr('data-name');
+ if(action === 'delete') this.deleteStep(name);
+ else if(action === 'sib') this.addSib(name);
+ else if(action === 'sub') this.addSub(name);
+ });
+ }
+
+ getByID(id)
+ {
+ const map = this._map;
+ const keys = Object.keys(map);
+ for(let i = 0; i < keys.length; i++)
+ {
+ const item = map[keys[i]];
+ if(item.id === id) return item;
+ }
+ return null;
+ }
+
+ update(data, reset, skipRender)
+ {
+ this._map = (reset ? {} : this._map) || {};
+ data.forEach(item =>{this.updateItem(item, true);});
+ if(!skipRender) this.render();
+ }
+
+ updateItem(item, skipRender)
+ {
+ const map = this._map;
+ if(typeof item === 'string') item = {name: item, id: $.guid++};
+ item = $.extend({id: $.guid++, step: '', expect: ''}, item);
+ const namePath = item.name.split('.');
+ item.order = namePath.reduce((total, level, index) => total + (+level * ([1000000, 1000, 1, 0.001, 0.000001][index])), 0);
+ item.level = namePath.length;
+ item.selfName = namePath.pop();
+ item.parentName = namePath.join('.');
+
+ const oldItem = this.getByID(item.id);
+
+ if(oldItem && oldItem.name !== item.name) delete map[oldItem.name];
+ map[item.name] = oldItem ? $.extend({}, oldItem, item) : item;
+
+ if(!skipRender) this.render();
+ }
+
+ render()
+ {
+ const map = this._map;
+ const list = Object.keys(map).map(key =>
+ {
+ const item = map[key];
+ return $.extend(item, {children: [], parent: item.parentName ? map[item.parentName] : null})
+ })
+ .sort((a, b) => a.order - b.order);
+ list.forEach(item =>
+ {
+ if(item.parent) item.parent.children.push(item);
+ });
+
+ const $list = this.$element.find('.steps-editor-body');
+ const $rows = $list.find('.steps-editor-row').addClass('is-expired');
+ const options = this.options;
+ let $preRow = null;
+ let $row = null;
+ list.forEach(item =>
+ {
+ $row = $rows.filter(`[data-id="${item.id}"]`);
+ if(!$row.length)
+ {
+ $row = $
+ ([
+ ``,
+ '',
+ '',
+ ``,
+ '',
+ '',
+ ``,
+ ``,
+ '',
+ '',
+ ``,
+ '',
+ '',
+ ``,
+ '',
+ '',
+ ''
+ ].join(''));
+ }
+ if($preRow) $row.insertAfter($preRow);
+ else $list.prepend($row);
+ $preRow = $row;
+
+ const hasSub = !!(item.children && item.children.length);
+ $row.attr('data-level', item.level)
+ .attr('data-name', item.name)
+ .toggleClass('has-children', hasSub)
+ .removeClass('is-expired');
+ $row.find('.steps-editor-step-name').css('width', 6 + (item.level * 18)).text(item.name);
+ $row.find('.steps-editor-step-text').attr('name', `${options.name}[${item.name}]`);
+ $row.find('.steps-editor-step-type').attr('name', `stepType[${item.name}]`).val(hasSub ? 'item' : 'step');
+ const $expect = $row.find('.steps-editor-step-expect').attr(
+ {
+ name: `${options.expectsName}[${item.name}]`,
+ placeholder: hasSub ? options.expectDisabledTip : null,
+ disabled: hasSub ? 'disabled' : null,
+ }).toggleClass('disabled', hasSub);
+ if(hasSub) $expect.val('');
+ $row.find('.steps-editor-col-delete .btn').toggleClass('disabled', hasSub).attr('disabled', hasSub ? 'disabled' : null);
+ $row.find('.steps-editor-col-add .btn-action[data-action="sub"]').attr('disabled', item.level >= 3 ? 'disabled' : null);
+ });
+ $rows.filter('.is-expired').remove();
+ }
+
+ deleteStep(name)
+ {
+ const item = this._map[name];
+ if (!item) return;
+ delete this._map[name];
+ const siblings = item.parent ? item.parent.children.filter(x => x.name !== name) : Object.keys(this._map).map(key => this._map[key]).filter(x => !x.parent);
+ const updateItems = [];
+ siblings.forEach((sibling, idx) =>
+ {
+ const newName = item.parent ? `${item.parent.name}.${idx + 1}` : `${idx + 1}`;
+ if(sibling.name !== newName)
+ {
+ updateItems.push($.extend({}, sibling, {name: newName}));
+ }
+ });
+ if(updateItems.length) this.update(updateItems, false, true);
+ if(!Object.keys(this._map).length) this.update(['1'], false, true);
+ this.render();
+ }
+
+ focus(name)
+ {
+ const $step = this.$element.find('.steps-editor-row[data-name="' + name + '"] .steps-editor-step-text');
+ if($step.length) $step[0].focus();
+ }
+
+ addSub(fromName)
+ {
+ const item = this._map[fromName];
+ if(!item) return;
+
+ const newStepName = item.children ? `${item.name}.${item.children.length + 1}` : `${item.name}.1`;
+
+ this.updateItem({name: newStepName});
+ this.focus(newStepName);
+ }
+
+ addSib(fromName)
+ {
+ const item = this._map[fromName];
+ if(!item) return;
+
+ const siblings = item.parent ? item.parent.children : Object.keys(this._map).map(key => this._map[key]).filter(item => !item.parent);
+ const index = siblings.indexOf(item);
+ const newStepName = item.parent ? `${item.parent.name}.${index + 2}` : `${index + 2}`;
+ const updateItems = [newStepName];
+ if(index < siblings.length - 1)
+ {
+ siblings.slice(index + 1).forEach((nextItem, idx) =>
+ {
+ const newIndex = index + idx + 3;
+ updateItems.push($.extend({}, nextItem, {name: nextItem.parent ? `${nextItem.parent.name}.${newIndex}` : `${newIndex}`}))
+ });
+ }
+ this.update(updateItems);
+ this.focus(newStepName);
+ }
+
+ addStep(fromName, asSib)
+ {
+ if(asSib) this.addSib(fromName);
+ else this.addSub(fromName);
+ }
+}
+
+/* Define $.fn.stepsEditor() helper. */
+StepsEditor.defineFn();
+
+$.extend(zui, {StepsEditor});
diff --git a/lib/zin/wg/stepseditor/v1.php b/lib/zin/wg/stepseditor/v1.php
new file mode 100644
index 0000000000..34467dd6f2
--- /dev/null
+++ b/lib/zin/wg/stepseditor/v1.php
@@ -0,0 +1,106 @@
+
+ * @package zin
+ * @link http://www.zentao.net
+ */
+namespace zin;
+
+require_once dirname(__DIR__) . DS . 'input' . DS . 'v1.php';
+
+/**
+ * 步骤编辑(stepsEditor)部件类
+ * The stepsEditor widget class
+ */
+class stepsEditor extends wg
+{
+ /**
+ * Define widget properties.
+ *
+ * @var array
+ * @access protected
+ */
+ protected static array $defineProps = array
+ (
+ 'id?: string="$GID"', // 组件根元素的 ID。
+ 'name?: string="steps"', // 步骤输入框作为表单项的名称。
+ 'expectsName?: string="expects"', // 预期输入框作为表单项的名称。
+ 'data?: array', // 默认值。
+ 'stepText?: string', // 步骤文本。
+ 'expectText?: string', // 预期文本。
+ 'sameLevelText?: string', // 同级文本。
+ 'subLevelText?: string', // 子级文本。
+ 'expectDisabledTip?: string' // 预期输入框禁用提示。
+ );
+
+ public static function getPageJS(): string|false
+ {
+ return file_get_contents(__DIR__ . DS . 'js' . DS . 'v1.js');
+ }
+
+ public static function getPageCSS(): string|false
+ {
+ return file_get_contents(__DIR__ . DS . 'css' . DS . 'v1.css');
+ }
+
+ /**
+ * Build the widget.
+ *
+ * @access protected
+ * @return wg
+ */
+ protected function build(): wg
+ {
+ $stepText = $this->prop('stepText', data('lang.testcase.stepDesc'));
+ $expectText = $this->prop('expectText', data('lang.testcase.stepExpect'));
+ $sameLevelText = $this->prop('sameLevelText', data('lang.testcase.stepSameLevel'));
+ $subLevelText = $this->prop('subLevelText', data('lang.testcase.stepSubLevel'));
+ $id = $this->prop('id');
+ $expectDisabledTip = $this->prop('expectDisabledTip', data('lang.testcase.expectDisabledTip'));
+
+ return div
+ (
+ setID($id),
+ setClass('steps-editor w-full'),
+ div
+ (
+ setClass('steps-editor-header'),
+ row
+ (
+ setClass('steps-editor-row'),
+ cell
+ (
+ set::class('steps-editor-col steps-editor-col-step'),
+ $stepText
+ ),
+ cell
+ (
+ set::class('steps-editor-col steps-editor-col-add'),
+ div($sameLevelText),
+ div($subLevelText),
+ ),
+ cell
+ (
+ set::class('steps-editor-col steps-editor-col-expect'),
+ $expectText
+ )
+ )
+ ),
+ div
+ (
+ set::class('steps-editor-body')
+ ),
+ zui::stepsEditor
+ (
+ set::_to("#$id"),
+ set::expectDisabledTip($expectDisabledTip),
+ set($this->props->pick(array('name', 'expectsName', 'data')))
+ )
+ );
+ }
+}
diff --git a/lib/zin/wg/switcher/v1.php b/lib/zin/wg/switcher/v1.php
new file mode 100644
index 0000000000..a1ac619c54
--- /dev/null
+++ b/lib/zin/wg/switcher/v1.php
@@ -0,0 +1,13 @@
+ 'switch switch'
+ );
+}
diff --git a/lib/zin/wg/tablechart/v1.php b/lib/zin/wg/tablechart/v1.php
new file mode 100644
index 0000000000..842f74b609
--- /dev/null
+++ b/lib/zin/wg/tablechart/v1.php
@@ -0,0 +1,85 @@
+prop('type');
+ $title = $this->prop('title');
+ $datas = $this->prop('datas');
+ $colorList = array('#5470C6', '#91CC75', '#FAC858', '#EE6666', '#73C0DE', '#3BA272', '#FC8452', '#9A60B4', '#EA7CCC');
+ $chartOption = array();
+ foreach($datas as $key => $data)
+ {
+ $color = current($colorList);
+ $chartOption[] = array('name' => $data->name, 'value' => $type == 'pie' ? $data->value : array('value' => $data->value, 'itemStyle' => array('color' => $color)));
+ $tableTR[] = h::tr
+ (
+ h::td(label(set::class('label-dot mr-2'), set::style(array('background-color' => $color, '--tw-ring-color' => $color))), $data->name),
+ h::td($data->value),
+ h::td(($data->percent * 100) . '%')
+ );
+ if(!next($colorList)) reset($colorList);
+ }
+
+ return div
+ (
+ set::class('flex border'),
+ cell
+ (
+ set::width('50%'),
+ set::class('border-r chart'),
+ div(set::class('center text-base font-bold py-2'), $title),
+ echarts
+ (
+ set::color($colorList),
+ $type != 'pie' ? set::xAxis
+ (
+ array
+ (
+ 'type' => 'category',
+ 'data' => array_column($chartOption, 'name')
+ )
+ ) : null,
+ $type != 'pie' ? set::yAxis(array('type' => 'value')) : null,
+ set::series
+ (
+ array
+ (
+ array
+ (
+ 'data' => $type == 'pie' ? $chartOption : array_column($chartOption, 'value'),
+ 'type' => $type
+ )
+ )
+ )
+ )->size('100%', 300),
+ ),
+ cell
+ (
+ set::width('50%'),
+ h::table
+ (
+ set::class('table'),
+ h::tr
+ (
+ h::th($lang->report->item),
+ h::th(set::width('100px'), $lang->report->value),
+ h::th(set::width('120px'), $lang->report->percent)
+ ),
+ $tableTR
+ )
+ )
+ );
+ }
+}
diff --git a/lib/zin/wg/tabledata/css/v1.css b/lib/zin/wg/tabledata/css/v1.css
new file mode 100644
index 0000000000..61a4544198
--- /dev/null
+++ b/lib/zin/wg/tabledata/css/v1.css
@@ -0,0 +1,3 @@
+.table-data th,
+.table-data .table-data-th {min-width: 60px; color: var(--color-slate-600);}
+
diff --git a/lib/zin/wg/tabledata/v1.php b/lib/zin/wg/tabledata/v1.php
new file mode 100644
index 0000000000..c33ca58330
--- /dev/null
+++ b/lib/zin/wg/tabledata/v1.php
@@ -0,0 +1,127 @@
+prop('trClass')),
+ h::th
+ (
+ setClass('py-1.5 pr-2 font-normal nowrap text-right', $item->prop('thClass')),
+ $item->prop('name'),
+ ),
+ h::td
+ (
+ setClass('py-1.5 pl-2 w-full', $item->prop('tdClass')),
+ $item->children()
+ )
+ );
+ }
+
+ private function buildItemWithDiv($item): wg
+ {
+ if($item->prop('collapse'))
+ {
+ return div
+ (
+ setClass('col', 'table-data-tr', $item->prop('trClass')),
+ div
+ (
+ setClass('py-1.5 pr-2 font-normal nowrap table-data-th', $item->prop('thClass')),
+ $item->prop('name'),
+ new collapseBtn
+ (
+ setClass('w-5 h-5 ml-1'),
+ set::target('.table-data-td'),
+ set::parent('.table-data-tr')
+ ),
+ ),
+ div
+ (
+ setClass('py-1.5 pl-2 table-data-td', $item->prop('tdClass')),
+ $item->children()
+ )
+ );
+ }
+
+ return div
+ (
+ setClass('flex table-data-tr', $item->prop('trClass')),
+ div
+ (
+ setClass('py-1.5 pr-2 font-normal nowrap table-data-th', $item->prop('thClass')),
+ $item->prop('name'),
+ ),
+ div
+ (
+ setClass('py-1.5 pl-2 table-data-td', $item->prop('tdClass')),
+ $item->children()
+ )
+ );
+ }
+
+ public function onBuildItem($item): wg
+ {
+ $item->setProp(array('thClass' => $this->prop('thClass'), 'tdClass' => $this->prop('tdClass')));
+
+ $useTable = $this->prop('useTable');
+ if($useTable) return $this->buildItemWithTr($item);
+
+ return $this->buildItemWithDiv($item);
+ }
+
+ private function caption(): ?wg
+ {
+ $title = $this->prop('title');
+ if(empty($title)) return null;
+
+ return h::caption
+ (
+ setClass('article-h1 text-left mb-2'),
+ $title
+ );
+ }
+
+ protected function build(): wg
+ {
+ $useTable = $this->prop('useTable');
+ if($useTable)
+ {
+ return h::table
+ (
+ setClass('table-data'),
+ $this->caption(),
+ h::tbody($this->children())
+ );
+ }
+
+ return div
+ (
+ setClass('table-data'),
+ div
+ (
+ setClass('table-data-body'),
+ $this->children()
+ )
+ );
+ }
+}
diff --git a/lib/zin/wg/tabpane/v1.php b/lib/zin/wg/tabpane/v1.php
new file mode 100644
index 0000000000..bb1b0de2be
--- /dev/null
+++ b/lib/zin/wg/tabpane/v1.php
@@ -0,0 +1,33 @@
+ array(),
+ 'suffix' => array(),
+ 'divider' => false,
+ );
+
+ protected function build(): wg
+ {
+ $key = $this->prop('key');
+ $active = $this->prop('active');
+
+ return div
+ (
+ setID($key),
+ setClass('tab-pane', $active ? 'active' : null),
+ set($this->getRestProps()),
+ $this->children()
+ );
+ }
+}
diff --git a/lib/zin/wg/tabs/css/v1.css b/lib/zin/wg/tabs/css/v1.css
new file mode 100644
index 0000000000..ff5bb7e42f
--- /dev/null
+++ b/lib/zin/wg/tabs/css/v1.css
@@ -0,0 +1,8 @@
+.tabs .nav-tabs>.nav-item>a {font-size: 14px; font-weight: 800; padding: 0; padding-right: 0; color: var(--color-slate-800);}
+.tabs .nav-tabs>.nav-item>a:after {border-width: 0;}
+.tabs .nav-tabs>.nav-item>a:before {background: none;}
+.tabs .nav-tabs>.nav-item>a.active {color: var(--color-primary-500);}
+.tabs .nav-tabs>.nav-item>a.active:after {border-bottom-color: var(--color-primary-500) !important; border-bottom-width: 2px;}
+.tabs .nav-tabs>.divider {height: 20px; border-right: 1px solid #DDD;}
+.tabs .tabs-collapse-btn {position: absolute; top: 3px; right: 0; width: 24px; height: 24px;}
+.tabs .tab-content {padding-top: 10px;}
diff --git a/lib/zin/wg/tabs/v1.php b/lib/zin/wg/tabs/v1.php
new file mode 100644
index 0000000000..1b525a38ba
--- /dev/null
+++ b/lib/zin/wg/tabs/v1.php
@@ -0,0 +1,138 @@
+prop('key');
+ $title = $tabPane->prop('title');
+ $active = $tabPane->prop('active');
+ $param = $tabPane->prop('param');
+ $prefix = $tabPane->block('prefix');
+ $suffix = $tabPane->block('suffix');
+
+ return li
+ (
+ setClass('nav-item'),
+ a
+ (
+ set('data-toggle', 'tab'),
+ set('data-param', $param),
+ setClass('font-medium', $active ? 'active' : null),
+ set::href("#$key"),
+ $prefix,
+ span($title),
+ $suffix,
+ )
+ );
+ }
+
+ /**
+ * @param wg[] $titleViews
+ * @return wg
+ */
+ protected function buildTabHeader(array $titleViews): wg
+ {
+ $isVertical = $this->prop('direction') === 'v';
+ $collapse = $this->prop('collapse');
+
+ return ul
+ (
+ setClass('nav nav-tabs gap-x-5', $collapse ? 'relative' : null),
+ $isVertical ? setClass('nav-stacked') : null,
+ $titleViews,
+ $this->buildCollapseBtn(),
+ );
+ }
+
+ /**
+ * @param wg[] $titleViews
+ * @return wg
+ */
+ protected function buildTabBody(array $contentViews): wg
+ {
+ return div
+ (
+ setClass('tab-content'),
+ $contentViews
+ );
+ }
+
+ private function filterChildren()
+ {
+ foreach ($this->children() as $child)
+ {
+ if($child instanceof tabPane)
+ {
+ $this->tabPanes[] = $child;
+ continue;
+ }
+
+ $this->children[] = $child;
+ }
+ }
+
+ private function buildCollapseBtn(): ?wg
+ {
+ $collapse = $this->prop('collapse');
+ if(!$collapse) return null;
+
+ return collapseBtn
+ (
+ setClass('tabs-collapse-btn'),
+ set::target('.tab-content'),
+ set::parent('.tabs')
+ );
+ }
+
+ protected function build(): wg
+ {
+ $isVertical = $this->prop('direction') === 'v';
+
+ $this->filterChildren();
+
+ $titleViews = array();
+ $contentViews = array();
+ foreach($this->tabPanes as $tabPane)
+ {
+ $titleViews[] = $this->buildTitleView($tabPane);
+
+ $divider = $tabPane->block('divider');
+ if($divider) $titleViews[] = div(set::class('divider'));
+
+ $contentViews[] = $tabPane;
+ }
+
+ return div
+ (
+ setClass('tabs', $isVertical ? 'flex' : null),
+ set($this->getRestProps()),
+
+ $this->buildTabHeader($titleViews),
+ $this->buildTabBody($contentViews),
+ $this->children
+ );
+ }
+}
diff --git a/lib/zin/wg/textarea/v1.php b/lib/zin/wg/textarea/v1.php
new file mode 100644
index 0000000000..62699e8a55
--- /dev/null
+++ b/lib/zin/wg/textarea/v1.php
@@ -0,0 +1,43 @@
+ 'form-control',
+ 'rows' => 10
+ );
+
+ protected function onAddChild(array|string|wg|directive $child)
+ {
+ if(is_string($child) && !$this->props->has('value'))
+ {
+ $this->setProp('value', $child);
+ return false;
+ }
+
+ return $child;
+ }
+
+ protected function build(): wg
+ {
+ return h::textarea
+ (
+ set($this->props->pick(array('name', 'id', 'class', 'required', 'placeholder', 'rows', 'cols', 'disabled'))),
+ $this->prop('value'),
+ $this->children()
+ );
+ }
+}
diff --git a/lib/zin/wg/timepicker/v1.php b/lib/zin/wg/timepicker/v1.php
new file mode 100644
index 0000000000..9dba9fb5a5
--- /dev/null
+++ b/lib/zin/wg/timepicker/v1.php
@@ -0,0 +1,74 @@
+
+ * @package zin
+ * @link http://www.zentao.net
+ */
+namespace zin;
+
+require_once dirname(__DIR__) . DS . 'input' . DS . 'v1.php';
+
+/**
+ * 日期选择器(timePicker)部件类
+ * The timePicker widget class
+ */
+class timePicker extends wg
+{
+ /**
+ * Define widget properties.
+ *
+ * @var array
+ * @access protected
+ */
+ protected static array $defineProps = array
+ (
+ 'id?: string="$GID"', // 组件根元素的 ID。
+ 'formID?: string', // 组件隐藏的表单元素 ID。
+ 'className?: string|array', // 类名。
+ 'style?: array', // 样式。
+ 'tagName?: string', // 组件根元素的标签名。
+ 'attrs?: array', // 附加到组件根元素上的属性。
+ 'clickType?: "toggle"|"open"', // 点击类型,`toggle` 表示点击按钮时切换显示隐藏,`open` 表示点击按钮时只打。
+ 'afterRender?: function', // 渲染完成后的回调函数。
+ 'beforeDestroy?: function', // 销毁前的回调函数。
+ 'name?: string', // 作为表单项的名称。
+ 'defaultValue?: string|string[]', // 默认值。
+ 'onChange?: function', // 值变更回调函数。
+ 'disabled?: boolean', // 是否禁用。
+ 'multiple?: boolean|number=false', // 是否允许选择多个值,如果指定为数字,则限制多选的数目,默认 `false`。
+ 'required?: boolean', // 是否必选(不允许空值,不可以被清除)。
+ 'placeholder?: string', // 选择框上的占位文本。
+ 'format?: string', // 日期格式,默认 hh:mm。
+ 'icon?: string|array="time"', // 在输入框右侧显示的图标。
+ 'onInvalid?: function', // 日期值无效时的回调函数。
+ );
+ /**
+ * Build the widget.
+ *
+ * @access protected
+ * @return wg
+ */
+ protected function build(): zui
+ {
+ list($props, $restProps) = $this->props->split(array_keys(static::definedPropsList()));
+ if(isset($props['id']))
+ {
+ $props['_id'] = $props['id'];
+ unset($props['id']);
+ }
+
+ return zui::timePicker
+ (
+ set::_class('form-group-wrapper'),
+ set::_map(array('value' => 'defaultValue', 'formID' => 'id')),
+ set($props),
+ set::_props($restProps),
+ $this->children(),
+ );
+ }
+}
diff --git a/lib/zin/wg/toolbar/v1.php b/lib/zin/wg/toolbar/v1.php
new file mode 100644
index 0000000000..3cdaaf76fd
--- /dev/null
+++ b/lib/zin/wg/toolbar/v1.php
@@ -0,0 +1,51 @@
+prop('type');
+ if($type === 'divider') return div(setClass('toolbar-divider'));
+ if($type === 'btnGroup') return new btnGroup(inherit($item));
+
+ list($btnClass, $btnProps) = $this->prop(array('btnClass', 'btnProps'));
+ $btn = empty($item->prop('back')) ? '\zin\btn' : '\zin\backBtn';
+ return new $btn
+ (
+ setClass('toolbar-item', $btnClass),
+ is_array($btnProps) ? set($btnProps) : null,
+ inherit($item)
+ );
+ }
+
+ protected function build(): wg
+ {
+ $items = $this->prop('items');
+ return div
+ (
+ setClass('toolbar'),
+ set($this->getRestProps()),
+ is_array($items) ? array_map(array($this, 'onBuildItem'), $items) : null,
+ $this->children()
+ );
+ }
+}
diff --git a/lib/zin/wg/tooltip/v1.php b/lib/zin/wg/tooltip/v1.php
new file mode 100644
index 0000000000..8dd75f4a43
--- /dev/null
+++ b/lib/zin/wg/tooltip/v1.php
@@ -0,0 +1,13 @@
+setProp('items', $this->buildTree($this->prop('items')));
+ return zui::tree(set($this->props->pick(array('items', 'activeClass', 'activeIcon', 'activeKey', 'onClickItem', 'defaultNestedShow', 'changeActiveKey', 'isDropdownMenu', 'collapsedIcon', 'expandedIcon', 'normalIcon', 'id', 'itemActions', 'hover', 'onClick'))));
+ }
+
+ private function buildTree(array $items): array
+ {
+ $canUpdateOrder = $this->prop('canUpdateOrder');
+ $canEdit = $this->prop('canEdit');
+ $canDelete = $this->prop('canDelete');
+ $editType = $this->prop('type');
+
+ foreach($items as $key => $item)
+ {
+ $item = (array)$item;
+ $treeItem = array('text' => $item['name'], 'url' => $item['url'], 'id' => $item['id'], 'key' => $item['key']);
+ if($item['type'] == 'product')
+ {
+ $treeItem['icon'] = 'product';
+ }
+ else
+ {
+ $treeItem['actions'] = array();
+ $treeItem['actions']['items'] = array();
+
+ if($canEdit) $treeItem['actions']['items'][] = array('key' => 'edit', 'icon' => 'edit', 'id' => $item['id'], 'editType' => $editType, 'onClick' => jsRaw('(event, item) => window.editItem(item)'));
+ if($canDelete) $treeItem['actions']['items'][] = array('key' => 'delete', 'icon' => 'trash', 'id' => $item['id'], 'class' => 'btn ghost toolbar-item square size-sm rounded ajax-submit','url' => helper::createLink('tree', 'delete', 'module=' . $item['id']));
+ $treeItem['actions']['items'][] = array('key' => 'view', 'icon' => 'split', 'url' => $item['url']);
+ }
+
+ if(isset($item['children'])) $treeItem['items'] = $this->buildTree($item['children']);
+
+ $items[$key] = $treeItem;
+ }
+
+ return $items;
+ }
+}
diff --git a/lib/zin/wg/upload/v1.php b/lib/zin/wg/upload/v1.php
new file mode 100644
index 0000000000..979f4ed4a6
--- /dev/null
+++ b/lib/zin/wg/upload/v1.php
@@ -0,0 +1,53 @@
+prop('class')) $this->setProp('class', 'w-full');
+ if(!$this->prop('tip')) $this->setProp('tip', sprintf($lang->noticeDrag, strtoupper(ini_get('upload_max_filesize'))));
+
+ $otherProps = $this->getRestProps();
+ return zui::upload(inherit($this), set('_props', $otherProps));
+ }
+}
diff --git a/lib/zin/wg/uploadimgs/v1.php b/lib/zin/wg/uploadimgs/v1.php
new file mode 100644
index 0000000000..b766a398a3
--- /dev/null
+++ b/lib/zin/wg/uploadimgs/v1.php
@@ -0,0 +1,42 @@
+account))
+ {
+ $this->props->set('user', $child);
+ return false;
+ }
+ return parent::onAddChild($child);
+ }
+
+ protected function build(): wg
+ {
+ list($user, $avatar, $account, $realname) = $this->prop(array('user', 'avatar', 'account', 'realname'));
+ if(is_array($user))
+ {
+ $avatar = isset($user['avatar']) ? $user['avatar'] : $avatar;
+ $account = isset($user['account']) ? $user['account'] : $account;
+ $realname = isset($user['realname']) ? $user['realname'] : $realname;
+ }
+ elseif(is_object($user))
+ {
+ $avatar = isset($user->avatar) ? $user->avatar : $avatar;
+ $account = isset($user->account) ? $user->account : $account;
+ $realname = isset($user->realname) ? $user->realname : $realname;
+ }
+
+ return avatar
+ (
+ set::src($avatar),
+ set::code($account),
+ set::text(empty($realname) ? $account : $realname),
+ set($this->props->skip(array('avatar', 'account', 'realname', 'user')))
+ );
+ }
+}
diff --git a/lib/zin/zentao/bind.class.php b/lib/zin/zentao/bind.class.php
new file mode 100644
index 0000000000..830e125745
--- /dev/null
+++ b/lib/zin/zentao/bind.class.php
@@ -0,0 +1,38 @@
+
+ * @package zin
+ * @link https://www.zentao.net
+ */
+
+namespace zin;
+
+require_once __DIR__ . DS . 'zentao.func.php';
+
+/**
+ * The global event bind class.
+ *
+ * @example
+ * bind::click('alert("ok")');
+ */
+class bind
+{
+ /**
+ * Bind event by magic __callStatic, the method name as the event name.
+ *
+ * @param string $name
+ * @param array $args
+ * @return directive
+ * @access public
+ */
+ public static function __callStatic(string $name, array $args): directive
+ {
+ list($callback, $others) = array_merge($args, array(array()));
+ return bind($name, $callback, $others);
+ }
+}
diff --git a/lib/zin/zentao/pager.func.php b/lib/zin/zentao/pager.func.php
new file mode 100644
index 0000000000..84ddcf09df
--- /dev/null
+++ b/lib/zin/zentao/pager.func.php
@@ -0,0 +1,64 @@
+setParams();
+ $params = $pager->params;
+ foreach($params as $key => $value)
+ {
+ if(strtolower($key) === 'recperpage') $params[$key] = '{recPerPage}';
+ if(strtolower($key) === 'pageid') $params[$key] = '{page}';
+ }
+
+ $setting = array();
+ $setting['page'] = $pager->pageID;
+ $setting['recTotal'] = $pager->recTotal;
+ $setting['recPerPage'] = $pager->recPerPage;
+ $setting['linkCreator'] = createLink($pager->moduleName, $pager->methodName, $params);
+ $setting['items'] = array();
+ $setting['gap'] = 0;
+
+ if($pager->recTotal == 0)
+ {
+ $setting['items'][] = array('type' => 'info', 'text' => $pager->lang->pager->noRecord);
+ }
+ elseif($extra == 'noTotalCount')
+ {
+ $setting['items'][] = array('type' => 'size-menu', 'text' => str_replace('', '', str_replace('', '', $pager->lang->pager->pageSize)), 'dropdown' => array('placement' => 'top'));
+ $setting['items'][] = array('type' => 'link', 'page' => 'prev', 'hint' => $pager->lang->pager->previousPage, 'icon' => 'icon-angle-left');
+ $setting['items'][] = array('type' => 'link', 'page' => 'next', 'hint' => $pager->lang->pager->nextPage, 'icon' => 'icon-angle-right');
+ }
+ else
+ {
+ $setting['items'][] = array('type' => 'info', 'text' => $pager->lang->pager->totalCountAB);
+ if(strpos(',short,', ",{$extra},") === false) $setting['items'][] = array('type' => 'size-menu', 'text' => str_replace('', '', str_replace('', '', $pager->lang->pager->pageSize)), 'dropdown' => array('placement' => 'top'), 'itemProps' => array('onClick' => jsRaw("(e, item) => $.cookie.set('$pager->pageCookie', item.text)")));
+ $setting['items'][] = array('type' => 'link', 'page' => 'first', 'hint' => $pager->lang->pager->firstPage, 'icon' => 'icon-first-page');
+ $setting['items'][] = array('type' => 'link', 'page' => 'prev', 'hint' => $pager->lang->pager->previousPage, 'icon' => 'icon-angle-left');
+ $setting['items'][] = array('type' => 'info', 'text' => '{page}/{pageTotal}');
+ $setting['items'][] = array('type' => 'link', 'page' => 'next', 'hint' => $pager->lang->pager->nextPage, 'icon' => 'icon-angle-right');
+ $setting['items'][] = array('type' => 'link', 'page' => 'last', 'hint' => $pager->lang->pager->lastPage, 'icon' => 'icon-last-page');
+ }
+
+ if(!empty($userSetting)) $setting = array_merge($setting, $userSetting);
+
+ return $setting;
+}
diff --git a/lib/zin/zentao/zentao.func.php b/lib/zin/zentao/zentao.func.php
new file mode 100644
index 0000000000..ef13d52b69
--- /dev/null
+++ b/lib/zin/zentao/zentao.func.php
@@ -0,0 +1,135 @@
+
+ * @package zin
+ * @link https://www.zentao.net
+ */
+
+namespace zin;
+
+require_once __DIR__ . DS . 'pager.func.php';
+
+class helper extends \helper
+{
+}
+
+class html extends \html
+{
+}
+
+class commonModel extends \commonModel
+{
+}
+
+class common extends \commonModel
+{
+}
+
+/**
+ * Created by typecasting to object.
+ *
+ * @link https://php.net/manual/en/reserved.classes.php
+ */
+class stdClass extends \stdClass
+{
+}
+
+function createLink(string $moduleName, string $methodName = 'index', string|array $vars = array(), string $viewType = '', bool $onlybody = false): string
+{
+ if(empty($moduleName)) return '';
+ return \helper::createLink($moduleName, $methodName, $vars, $viewType, $onlybody);
+}
+
+function inLink(string $methodName = 'index', string|array $vars = '', string $viewType = '', bool $onlybody = false): string
+{
+ return \inlink($methodName, $vars, $viewType, $onlybody);
+}
+
+function zget(array|object $var, string|int $key, mixed $valueWhenNone = false, mixed $valueWhenExists = false): mixed
+{
+ return \zget($var, $key, $valueWhenNone, $valueWhenExists);
+}
+
+function getWebRoot(bool $full = false): string
+{
+ return \getWebRoot($full);
+}
+
+function hasPriv(string $module, string $method, ?object $object = null, string $vars = ''): bool
+{
+ return \common::hasPriv($module, $method, $object, $vars);
+}
+
+function isFieldRequired(?string $name): bool
+{
+ if(empty($name)) return false;
+
+ global $config, $app;
+ $moduleName = $app->moduleName;
+ $methodName = $app->methodName;
+ if(isset($config->$moduleName->$methodName->requiredFields)) return in_array($name, explode(',', $config->$moduleName->$methodName->requiredFields));
+
+ return false;
+}
+
+/**
+ * Determine whether the request is ajax.
+ *
+ * @param ?string $type 'zin'|'modal'|'fetch'|null
+ */
+function isAjaxRequest(?string $type = null): bool
+{
+ return \helper::isAjaxRequest($type);
+}
+
+/**
+ * Bind global event listener to widget element.
+ *
+ * @param string $name
+ * @param bool|string|array $callback
+ * @param array $options
+ */
+function bind(string $name, bool|string|array $callback, array|string $options = null): directive
+{
+ if(is_string($options) && is_string($callback))
+ {
+ $options = array('selector' => $callback, 'call' => $options);
+ }
+ elseif(is_array($options))
+ {
+ $options['call'] = $callback;
+ }
+ else
+ {
+ $options = array('callback' => $callback);
+ }
+ if(str_contains($name, '__'))
+ {
+ list($name, $flags) = explode('__', $name);
+ if(str_contains($flags, 'stop')) $options['stop'] = true;
+ if(str_contains($flags, 'prevent')) $options['prevent'] = true;
+ if(str_contains($flags, 'self')) $options['self'] = true;
+ if(str_contains($flags, 'once')) $options['once'] = true;
+ }
+ $options['on'] = $name;
+ return setData($options);
+}
+
+/**
+ * Render data to json.
+ *
+ * @param mixed $data data.
+ * @param int $flags json encode flags.
+ * @return void
+ */
+function renderJson(mixed $data, int $flags = 0)
+{
+ ob_end_flush();
+ zin::$rendered = true;
+ echo json_encode($data, $flags);
+}
diff --git a/lib/zin/zin.class.php b/lib/zin/zin.class.php
new file mode 100644
index 0000000000..74da6a2488
--- /dev/null
+++ b/lib/zin/zin.class.php
@@ -0,0 +1,17 @@
+
+ * @package zin
+ * @version $Id
+ * @link https://www.zentao.net
+ */
+
+namespace zin;
+
+require_once __DIR__ . DS . 'config.php';
+require_once __DIR__ . DS . 'helper.php';
+require_once __DIR__ . DS . 'func.php';
diff --git a/lib/zin/zui/toggle.class.php b/lib/zin/zui/toggle.class.php
new file mode 100644
index 0000000000..02306de76e
--- /dev/null
+++ b/lib/zin/zui/toggle.class.php
@@ -0,0 +1,23 @@
+
+ * @package zin
+ * @version $Id
+ * @link https://www.zentao.net
+ */
+
+namespace zin;
+
+require_once __DIR__ . DS . 'toggle.func.php';
+
+class toggle
+{
+ public static function __callStatic($name, $args)
+ {
+ return toggle($name, empty($args) ? null : $args[0]);
+ }
+}
diff --git a/lib/zin/zui/toggle.func.php b/lib/zin/zui/toggle.func.php
new file mode 100644
index 0000000000..19721d2d25
--- /dev/null
+++ b/lib/zin/zui/toggle.func.php
@@ -0,0 +1,25 @@
+
+ * @package zin
+ * @version $Id
+ * @link https://www.zentao.net
+ */
+namespace zin;
+
+/**
+ * Add data-toggle=* to widget element and set other data attributes.
+ *
+ * @param string $name
+ * @param array $dataset
+ */
+function toggle($name, $dataset = null): directive
+{
+ if(empty($dataset)) $dataset = array();
+ $dataset['toggle'] = $name;
+ return setData($dataset);
+}
diff --git a/lib/zin/zui/zui.class.php b/lib/zin/zui/zui.class.php
new file mode 100644
index 0000000000..05063c1987
--- /dev/null
+++ b/lib/zin/zui/zui.class.php
@@ -0,0 +1,211 @@
+
+ * @package zin
+ * @version $Id
+ * @link https://www.zentao.net
+ */
+
+namespace zin;
+
+require_once dirname(__DIR__) . DS . 'core' . DS . 'wg.class.php';
+require_once dirname(__DIR__) . DS . 'core' . DS . 'wg.func.php';
+require_once dirname(__DIR__) . DS . 'core' . DS . 'wg.func.php';
+require_once __DIR__ . DS . 'toggle.func.php';
+require_once __DIR__ . DS . 'toggle.class.php';
+
+class zui extends wg
+{
+ protected static array $defineProps = array(
+ '_name:string',
+ '_to?:string',
+ '_tag:string="div"',
+ '_map?:array',
+ '_props?: array',
+ '_size?: array',
+ '_id?: string',
+ '_class?: string',
+ '_call?: string'
+ );
+
+ protected function build(): wg
+ {
+ list($name, $target, $tagName, $targetProps, $size, $id, $class, $map, $call) = $this->prop(array('_name', '_to', '_tag', '_props', '_size', '_id', '_class', '_map', '_call'));
+ list($width, $height) = $size;
+
+ $options = $this->getRestProps();
+ $children = $this->children();
+ $selector = $target;
+ if(empty($selector))
+ {
+ if(empty($id)) $id = $this->gid;
+ $selector = "#$id";
+ }
+ if(is_array($map))
+ {
+ foreach($options as $key => $value)
+ {
+ if(!isset($map[$key])) continue;
+ $options[$map[$key]] = $value;
+ unset($options[$key]);
+ }
+ }
+
+ if(empty($call)) $call = '~zui.create';
+
+ if(empty($target))
+ {
+ return h
+ (
+ $tagName,
+ set($targetProps),
+ setClass($class),
+ setID($id),
+ setStyle('width', $width),
+ setStyle('height', $height),
+ $children,
+ h::jsCall($call, $name, $selector, $options)
+ );
+ }
+
+ return h::jsCall($call, $name, $selector, $options);
+ }
+
+ public static function __callStatic($name, $args)
+ {
+ return new zui(set('_name', $name), $args);
+ }
+
+ public static function toggle($name, $options = null)
+ {
+ return toggle($name, $options);
+ }
+
+ public static function setClass($name, ...$args)
+ {
+ $class = array($name => true);
+ foreach($args as $arg)
+ {
+ if(is_bool($arg)) $class[$name] = $arg;
+ else $class["$name-$arg"] = true;
+ }
+ if(isset($class[$name]) && $class[$name] === false) return null;
+ return setClass($class);
+ }
+
+ public static function skin($name, $flag = true, $falseValue = null, $cssProp = null)
+ {
+ if($flag === null) return null;
+
+ if(is_array($flag))
+ {
+ return array_map(function($value) use($name, $cssProp) {return zui::skin($name, $value, null, $cssProp);}, $flag);
+ }
+
+ if($flag === false)
+ {
+ if(empty($falseValue)) return null;
+ $flag = 'none';
+ }
+ elseif($cssProp !== null && is_string($flag) && (str_ends_with($flag, 'px') || str_starts_with($flag, '#') || str_contains($flag, '.') || str_contains($flag, '(')))
+ {
+ if(str_starts_with($flag, '(')) $flag = substr($flag, 1, -1);
+ return setStyle($cssProp, $flag);
+ }
+ return setClass($flag === true ? $name : "$name-$flag");
+ }
+
+ public static function rounded($value = true)
+ {
+ return zui::skin('rounded', $value, 'none', 'border-radius');
+ }
+
+ public static function shadow($value = true)
+ {
+ return zui::skin('shadow', $value, 'none');
+ }
+
+ public static function primary($value = true)
+ {
+ return zui::skin('primary', $value);
+ }
+
+ public static function secondary($value = true)
+ {
+ return zui::skin('secondary', $value);
+ }
+
+ public static function success($value = true)
+ {
+ return zui::skin('success', $value);
+ }
+
+ public static function warning($value = true)
+ {
+ return zui::skin('warning', $value);
+ }
+
+ public static function danger($value = true)
+ {
+ return zui::skin('danger', $value);
+ }
+
+ public static function important($value = true)
+ {
+ return zui::skin('important', $value);
+ }
+
+ public static function special($value = true)
+ {
+ return zui::skin('special', $value);
+ }
+
+ public static function bg($value = null)
+ {
+ return zui::skin('bg', $value, 'transparent', 'background');
+ }
+
+ public static function text($value = null)
+ {
+ return zui::skin('text', $value, 'fore', 'color');
+ }
+
+ public static function muted($value = true)
+ {
+ return $value ? setClass('muted') : null;
+ }
+
+ public static function opacity($value)
+ {
+ return zui::skin('opacity', $value, '0', 'opacity');
+ }
+
+ public static function disabled($value = true)
+ {
+ return $value ? setClass('disabled') : null;
+ }
+
+ public static function width($value)
+ {
+ return zui::skin('w', $value, '0', 'width');
+ }
+
+ public static function height($value)
+ {
+ return zui::skin('h', $value, '0', 'width');
+ }
+
+ public static function ring(...$args)
+ {
+ return zui::skin('ring', $args, '0');
+ }
+
+ public static function border(...$args)
+ {
+ return zui::skin('border', $args, 'none', 'border');
+ }
+}
diff --git a/lib/zin/zui/zui.func.php b/lib/zin/zui/zui.func.php
new file mode 100644
index 0000000000..3bad855484
--- /dev/null
+++ b/lib/zin/zui/zui.func.php
@@ -0,0 +1,22 @@
+navIcons['bi'] = "";
$lang->navIcons['system'] = "";
$lang->navIcons['admin'] = "";
+$lang->navIconNames = array();
+$lang->navIconNames['my'] = 'menu-my';
+$lang->navIconNames['program'] = 'program';
+$lang->navIconNames['product'] = 'product';
+$lang->navIconNames['project'] = 'project';
+$lang->navIconNames['execution'] = 'run';
+$lang->navIconNames['qa'] = 'test';
+$lang->navIconNames['devops'] = 'devops';
+$lang->navIconNames['kanban'] = 'kanban';
+$lang->navIconNames['doc'] = 'doc';
+$lang->navIconNames['bi'] = 'statistic';
+$lang->navIconNames['system'] = 'group';
+$lang->navIconNames['admin'] = 'cog-outline';
+
global $config;
list($programModule, $programMethod) = explode('-', $config->programLink);
list($productModule, $productMethod) = explode('-', $config->productLink);
diff --git a/module/common/model.php b/module/common/model.php
index 287e61b8d8..9d8aa61e0b 100644
--- a/module/common/model.php
+++ b/module/common/model.php
@@ -2498,17 +2498,17 @@ EOF;
*/
public function checkIframe()
{
- /**
+ /*
* 忽略如下情况:非 HTML 请求、Ajax 请求、特殊 GET 参数 _single。
* Ignore the following situations: non-HTML request, Ajax request, special GET parameter _single.
*/
- if($this->app->getViewType() != 'html' || helper::isAjaxRequest() || isset($_GET['_single'])) return;
+ if($this->app->getViewType() != 'html' || helper::isAjaxRequest() || isset($_GET['_single'])) return true;
/**
* 忽略无请求头 HTTP_SEC_FETCH_DEST 或者 HTTP_SEC_FETCH_DEST 为 iframe 的请求,较新的浏览器在启用 https 的情况下才会正确发送该请求头。
* Ignore the request without HTTP_SEC_FETCH_DEST or HTTP_SEC_FETCH_DEST is iframe, the latest browser will send this request header correctly when enable https.
*/
- if(!isset($_SERVER['HTTP_SEC_FETCH_DEST']) || $_SERVER['HTTP_SEC_FETCH_DEST'] == 'iframe') return;
+ if(!isset($_SERVER['HTTP_SEC_FETCH_DEST']) || $_SERVER['HTTP_SEC_FETCH_DEST'] == 'iframe') return true;
/**
* 当有 HTTP_REFERER 请求头时,忽略 safari 浏览器,因为 safari 浏览器不会正确发送 HTTP_SEC_FETCH_DEST 请求头。
@@ -2517,17 +2517,23 @@ EOF;
if(isset($_SERVER['HTTP_REFERER']) && !empty($_SERVER['HTTP_REFERER']))
{
$userAgent = strtolower($_SERVER['HTTP_USER_AGENT']);
- if(strpos($userAgent, 'chrome') === false && strpos($userAgent, 'safari') !== false) return;
+ if(strpos($userAgent, 'chrome') === false && strpos($userAgent, 'safari') !== false) return true;
}
+ /**
+ * 忽略所有方法名以 ajax 开头的请求。
+ * Ignore all requests which it's method name starts with 'ajax'.
+ */
+ $method = $this->app->getMethodName();
+ if(strpos($method, 'ajax') === 0) return true;
+
/**
* 以下页面可以允许在非 iframe 中打开,所以要忽略这些页面。
* The following pages can be allowed to open in non-iframe, so ignore these pages.
*/
$module = $this->app->getModuleName();
- $method = $this->app->getMethodName();
- $whitelist = '|index|tutorial|install|upgrade|sso|cron|misc|user-login|user-deny|user-logout|user-reset|user-forgetpassword|user-resetpassword|my-changepassword|my-preference|file-read|file-download|file-uploadimages|file-ajaxwopifiles|report-annualdata|misc-captcha|execution-printkanban|traincourse-ajaxuploadlargefile|traincourse-playvideo|screen-view|zanode-create|screen-ajaxgetchart|';
- if(strpos($whitelist, "|{$module}|") !== false || strpos($whitelist, "|{$module}-{$method}|") !== false) return;
+ $whitelist = '|index|tutorial|install|upgrade|sso|cron|misc|user-login|user-deny|user-logout|user-reset|user-forgetpassword|user-resetpassword|my-changepassword|my-preference|file-read|file-download|file-uploadimages|report-annualdata|misc-captcha|execution-printkanban||traincourse-playvideo|';
+ if(strpos($whitelist, "|{$module}|") !== false || strpos($whitelist, "|{$module}-{$method}|") !== false) return true;
/**
* 如果以上条件都不满足,则视为当前页面必须在 iframe 中打开,使用 302 跳转实现。
@@ -2536,7 +2542,8 @@ EOF;
$url = helper::safe64Encode($_SERVER['REQUEST_URI']);
$redirectUrl = helper::createLink('index', 'index');
$redirectUrl .= strpos($redirectUrl, '?') === false ? "?open=$url" : "&open=$url";
- die(header("location: $redirectUrl"));
+ helper::header('location', $redirectUrl);
+ return false;
}
/**
diff --git a/module/repo/ui/create.html.php b/module/repo/ui/create.html.php
new file mode 100644
index 0000000000..9d8744aacd
--- /dev/null
+++ b/module/repo/ui/create.html.php
@@ -0,0 +1,6 @@
+
- * @package ZenTaoPMS
- * @version $Id: install.php 4677 2013-04-26 06:23:58Z chencongzhi520@gmail.com $
- * @link http://www.zentao.net
- */
-error_reporting(0);
-define('IN_INSTALL', true);
-
-/* Load the framework. */
-include '../framework/router.class.php';
-include '../framework/control.class.php';
-include '../framework/model.class.php';
-include '../framework/helper.class.php';
-
-/* Instance the app. */
-$app = router::createApp('pms', dirname(dirname(__FILE__)), 'router');
-
-/* Check installed or not. */
-if(!isset($_SESSION['installing']) and isset($config->installed) and $config->installed) die(header('location: index.php'));
-
-/* Reset the config params to make sure the install program will be lauched. */
-$config->set('requestType', 'GET');
-$config->set('default.module', 'install');
-$app->setDebug();
-
-/* During the installation, if the database params is setted, auto connect the db. */
-if(isset($config->installed) and $config->installed) $app->connectDB();
-
-$app->parseRequest();
-$app->loadModule();
diff --git a/www/js/zui3/@zentao/dtable/assign-modal.html b/www/js/zui3/@zentao/dtable/assign-modal.html
new file mode 100644
index 0000000000..fa3e9af32b
--- /dev/null
+++ b/www/js/zui3/@zentao/dtable/assign-modal.html
@@ -0,0 +1,18 @@
+
+
+
diff --git a/www/js/zui3/@zentao/fonts/Oswald-Light.ttf b/www/js/zui3/@zentao/fonts/Oswald-Light.ttf
new file mode 100644
index 0000000000..1d7fce1201
Binary files /dev/null and b/www/js/zui3/@zentao/fonts/Oswald-Light.ttf differ
diff --git a/www/js/zui3/@zentao/fonts/Oswald-Medium.ttf b/www/js/zui3/@zentao/fonts/Oswald-Medium.ttf
new file mode 100644
index 0000000000..d5391bd969
Binary files /dev/null and b/www/js/zui3/@zentao/fonts/Oswald-Medium.ttf differ
diff --git a/www/js/zui3/@zentao/fonts/Oswald-Regular.ttf b/www/js/zui3/@zentao/fonts/Oswald-Regular.ttf
new file mode 100644
index 0000000000..c6677e09fa
Binary files /dev/null and b/www/js/zui3/@zentao/fonts/Oswald-Regular.ttf differ
diff --git a/www/js/zui3/@zentao/icons/ZentaoIcon.eot b/www/js/zui3/@zentao/icons/ZentaoIcon.eot
new file mode 100644
index 0000000000..2d165f4dc6
Binary files /dev/null and b/www/js/zui3/@zentao/icons/ZentaoIcon.eot differ
diff --git a/www/js/zui3/@zentao/icons/ZentaoIcon.json b/www/js/zui3/@zentao/icons/ZentaoIcon.json
new file mode 100644
index 0000000000..d5a9dea728
--- /dev/null
+++ b/www/js/zui3/@zentao/icons/ZentaoIcon.json
@@ -0,0 +1,51609 @@
+{
+ "metadata": {
+ "name": "ZentaoIcon",
+ "lastOpened": 0,
+ "created": 1683872780440
+ },
+ "iconSets": [
+ {
+ "selection": [],
+ "id": 15,
+ "metadata": {
+ "name": "Untitled Set 3",
+ "importSize": {
+ "width": 16,
+ "height": 16
+ }
+ },
+ "height": 1024,
+ "prevSize": 32,
+ "icons": [],
+ "colorThemes": [],
+ "colorThemeIdx": 0
+ },
+ {
+ "selection": [],
+ "id": 14,
+ "metadata": {
+ "name": "Untitled Set 2",
+ "importSize": {
+ "width": 128,
+ "height": 128
+ }
+ },
+ "height": 1024,
+ "prevSize": 32,
+ "icons": [],
+ "colorThemes": [],
+ "colorThemeIdx": 0
+ },
+ {
+ "selection": [],
+ "id": 13,
+ "metadata": {
+ "name": "Untitled Set",
+ "importSize": {
+ "width": 448,
+ "height": 448
+ }
+ },
+ "height": 1024,
+ "prevSize": 32,
+ "icons": [],
+ "colorThemes": [],
+ "colorThemeIdx": 0
+ },
+ {
+ "selection": [
+ {
+ "order": 2,
+ "id": 0,
+ "name": "zentao",
+ "prevSize": 18,
+ "code": 59649,
+ "tempChar": ""
+ },
+ {
+ "order": 3,
+ "id": 1,
+ "name": "zentao-alt",
+ "prevSize": 18,
+ "code": 59648,
+ "tempChar": ""
+ },
+ {
+ "order": 4,
+ "id": 2,
+ "name": "aiux",
+ "prevSize": 18,
+ "code": 59806,
+ "tempChar": ""
+ },
+ {
+ "order": 5,
+ "id": 3,
+ "name": "qc",
+ "prevSize": 18,
+ "code": 59782,
+ "codes": [
+ 59782
+ ],
+ "tempChar": ""
+ },
+ {
+ "order": 6,
+ "id": 4,
+ "name": "qc-q",
+ "prevSize": 18,
+ "code": 59781,
+ "tempChar": ""
+ },
+ {
+ "order": 7,
+ "id": 5,
+ "name": "qc-c",
+ "prevSize": 18,
+ "code": 59783,
+ "tempChar": ""
+ },
+ {
+ "order": 315,
+ "id": 6,
+ "name": "sonarqube",
+ "prevSize": 18,
+ "code": 59834,
+ "tempChar": ""
+ }
+ ],
+ "id": 12,
+ "metadata": {
+ "name": "LOGO",
+ "importSize": {
+ "width": 14,
+ "height": 14
+ }
+ },
+ "height": 1024,
+ "prevSize": 28,
+ "icons": [
+ {
+ "id": 0,
+ "paths": [
+ "M512 1024c-282.77 0-512-229.23-512-512s229.23-512 512-512c282.77 0 512 229.23 512 512s-229.23 512-512 512zM870.158 235.215c23.225 147.194-5.157 208.047-85.145 182.559-119.982-38.233-159.246-290.566-433.702-261.912-269.079 28.126-248.551 349.284-248.551 349.284s32.887-189.034 157.392-209.963c88.814-14.915 106.651 53.028 61.454 89.3-45.129 36.32-118.918 69.171-75.031 263.114 12.769 56.4-39.763 95.284-96.113 52.403-17.406-13.199-27.855-25.379-27.855-25.379s-8.022-10.795 21.445 52.18c78.625 167.975 277.001 211.191 397.079 189.689 237.010-42.43 293.51-275.602 134.175-378.507-88.565-57.222-275.356-32.051-256.612 120.555 11.018 89.694 93.942 94 93.942 94-46.386-18.082-59.14-75.218-25.638-116.078 25.638-31.255 72.255-28.777 95.928-17.576 69.482 32.837 47.023 128.552 5.79 165.289-51.411 45.764-139.434 33.611-202.547-5.139-84.237-51.715-133.424-206.933-15.442-295.939 139.534-105.234 267.228 9.236 370.177 43.472 66.287 22.052 149.164-1.902 171.994-70.090 34.029-101.602-42.741-221.26-42.741-221.26z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "zentao"
+ ],
+ "defaultCode": 59649,
+ "grid": 18
+ },
+ {
+ "id": 1,
+ "paths": [
+ "M870.158 235.215c0 0 76.771 119.658 42.741 221.26-22.83 68.189-105.708 92.143-171.994 70.090-102.949-34.236-230.643-148.706-370.177-43.472-117.982 89.006-68.795 244.224 15.442 295.939 63.112 38.75 151.136 50.904 202.547 5.139 41.232-36.737 63.692-132.452-5.79-165.289-23.673-11.201-70.29-13.679-95.928 17.576-33.503 40.86-20.748 97.996 25.638 116.078 0 0-82.924-4.306-93.942-94-18.744-152.606 168.047-177.777 256.612-120.555 159.335 102.905 102.836 336.077-134.175 378.507-120.078 21.502-318.454-21.714-397.079-189.689-29.467-62.975-21.445-52.18-21.445-52.18s10.449 12.18 27.855 25.379c56.35 42.88 108.882 3.997 96.113-52.403-43.887-193.942 29.901-226.794 75.031-263.114 45.197-36.271 27.36-104.215-61.454-89.3-124.505 20.929-157.392 209.963-157.392 209.963s-20.527-321.158 248.551-349.284c274.456-28.654 313.72 223.679 433.702 261.912 79.988 25.488 108.37-35.365 85.145-182.559z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "zentao-alt"
+ ],
+ "defaultCode": 59648,
+ "grid": 18
+ },
+ {
+ "id": 2,
+ "paths": [
+ "M567.855 744.345c42.915-20.685 72.589-64.359 72.589-115.022 0-70.631-57.495-127.873-128.438-127.873s-128.438 57.242-128.438 127.873c0 50.33 29.262 93.722 71.714 114.586l-140.24 280.091h-248.416c-50.912 0-84.057-53.325-61.275-98.689l445.354-887.583c25.25-50.304 97.325-50.304 122.575 0l445.379 887.583c22.756 45.363-10.362 98.689-61.275 98.689h-248.442l-141.089-279.656z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "aiux"
+ ],
+ "defaultCode": 59806,
+ "grid": 14
+ },
+ {
+ "id": 3,
+ "paths": [
+ "M756.315 645.131v-28.208c-22.359 22.918-35.671 54.103-35.671 87.57 0 8.045 0.788 16.17 2.357 24.163l2.114 10.829-122.195 70.545-8.325-7.308c-0.575-0.508-1.201-0.936-1.783-1.429-1.127-0.958-2.298-1.856-3.462-2.77-1.901-1.495-3.816-2.961-5.79-4.339-1.297-0.906-2.63-1.761-3.963-2.623-1.915-1.23-3.846-2.416-5.82-3.543-1.503-0.855-3.020-1.665-4.56-2.461-1.886-0.972-3.794-1.886-5.724-2.763-1.687-0.766-3.389-1.503-5.113-2.195-1.879-0.751-3.779-1.429-5.695-2.085-1.812-0.626-3.625-1.245-5.474-1.79-1.974-0.582-3.978-1.061-5.975-1.54-1.82-0.435-3.617-0.899-5.466-1.252-2.328-0.449-4.678-0.759-7.028-1.076-1.569-0.214-3.109-0.486-4.693-0.641-3.985-0.383-8-0.611-12.045-0.611s-8.052 0.221-12.045 0.611c-1.584 0.155-3.124 0.427-4.693 0.641-2.35 0.317-4.707 0.626-7.028 1.076-1.849 0.354-3.647 0.818-5.466 1.252-2.004 0.479-4 0.965-5.975 1.54-1.849 0.545-3.661 1.164-5.474 1.79-1.915 0.656-3.816 1.341-5.695 2.085-1.731 0.692-3.426 1.429-5.113 2.195-1.93 0.869-3.838 1.79-5.724 2.763-1.54 0.796-3.057 1.606-4.56 2.461-1.974 1.12-3.904 2.313-5.82 3.543-1.333 0.862-2.667 1.716-3.963 2.623-1.974 1.378-3.89 2.836-5.79 4.339-1.164 0.913-2.335 1.82-3.462 2.77-0.582 0.494-1.208 0.921-1.783 1.429l-8.325 7.308-122.195-70.545 2.114-10.829c1.562-7.986 2.357-16.119 2.357-24.163 0-53.462-33.961-101.096-84.506-118.526l-10.417-3.595v-140.752l10.417-3.595c1.856-0.641 3.647-1.407 5.459-2.129 1.009-0.405 2.041-0.751 3.035-1.186 3.514-1.503 6.94-3.153 10.262-4.951 0.177-0.096 0.339-0.206 0.508-0.302 3.205-1.753 6.306-3.661 9.319-5.665 0.523-0.354 1.039-0.722 1.554-1.083 2.733-1.879 5.37-3.86 7.934-5.938 0.442-0.361 0.884-0.707 1.319-1.076 2.88-2.402 5.658-4.906 8.303-7.551 0.022-0.022 0.052-0.044 0.074-0.066 5.474-5.481 10.402-11.448 14.763-17.821 0.471-0.685 0.906-1.385 1.363-2.077 1.584-2.416 3.087-4.877 4.501-7.404 0.53-0.936 1.061-1.871 1.562-2.829 1.356-2.571 2.615-5.201 3.794-7.868 0.354-0.796 0.744-1.569 1.083-2.372 1.407-3.359 2.659-6.792 3.772-10.284 0.339-1.061 0.597-2.144 0.906-3.212 0.737-2.542 1.407-5.105 1.982-7.698 0.295-1.348 0.56-2.704 0.81-4.067 0.471-2.542 0.862-5.098 1.179-7.684 0.155-1.245 0.332-2.475 0.442-3.728 0.354-3.823 0.589-7.669 0.589-11.566 0-8.059-0.788-16.192-2.35-24.163l-2.114-10.829 122.188-70.545 8.325 7.308c22.867 20.060 52.209 31.11 82.612 31.11s59.746-11.050 82.612-31.11l8.325-7.308 122.188 70.545-2.114 10.829c-1.554 7.971-2.35 16.097-2.35 24.163 0 4.383 0.236 8.715 0.678 12.988 0.037 0.317 0.111 0.626 0.147 0.943 0.442 3.978 1.046 7.912 1.849 11.772 0.022 0.118 0.066 0.236 0.088 0.354 0.862 4.059 1.915 8.045 3.16 11.949 0.029 0.103 0.074 0.199 0.111 0.295 1.26 3.912 2.704 7.735 4.324 11.47 0.111 0.25 0.243 0.479 0.354 0.729 1.577 3.558 3.286 7.035 5.172 10.417 0.258 0.464 0.567 0.906 0.832 1.37 1.79 3.109 3.676 6.159 5.717 9.098 0.457 0.656 0.972 1.274 1.444 1.93 1.937 2.674 3.934 5.297 6.070 7.809 0.67 0.788 1.392 1.518 2.077 2.284 2.048 2.291 4.14 4.538 6.35 6.674 0.236 0.228 0.435 0.479 0.67 0.707h0.103c22.499 21.379 52.821 34.595 86.23 34.595s63.731-13.216 86.23-34.595h0.155c0.354-0.339 0.663-0.722 1.009-1.061 1.643-1.599 3.183-3.293 4.737-4.98 1.238-1.341 2.497-2.652 3.676-4.044 1.488-1.761 2.851-3.61 4.243-5.452 1.076-1.429 2.203-2.822 3.219-4.302 1.378-1.996 2.615-4.089 3.875-6.173 0.862-1.422 1.783-2.799 2.593-4.258 1.274-2.306 2.394-4.715 3.529-7.109 0.626-1.326 1.333-2.615 1.915-3.963 1.149-2.674 2.122-5.437 3.087-8.199 0.405-1.164 0.899-2.284 1.267-3.455 0.958-3.013 1.709-6.115 2.438-9.223 0.236-0.995 0.553-1.96 0.766-2.969 0.692-3.315 1.164-6.704 1.584-10.115 0.103-0.847 0.295-1.665 0.383-2.519 0.442-4.265 0.67-8.582 0.67-12.958 0-69.131-56.239-125.37-125.377-125.37-30.514 0-59.93 11.117-82.833 31.302l-8.332 7.337-122.099-70.442 2.151-10.851c1.591-8.045 2.394-16.273 2.394-24.451 0-69.131-56.239-125.377-125.377-125.377s-125.377 56.239-125.377 125.377c0 8.177 0.81 16.406 2.394 24.451l2.151 10.851-122.048 70.464-8.332-7.337c-22.904-20.185-52.32-31.302-82.833-31.302-69.131-0.007-125.37 56.239-125.37 125.37 0 3.919 0.236 7.794 0.589 11.64 0.111 1.193 0.28 2.365 0.427 3.551 0.332 2.704 0.729 5.393 1.23 8.052 0.228 1.223 0.464 2.438 0.729 3.647 0.634 2.903 1.378 5.761 2.21 8.582 0.228 0.766 0.413 1.554 0.656 2.313 2.35 7.455 5.415 14.609 9.069 21.43 0.221 0.413 0.457 0.818 0.685 1.23 1.731 3.153 3.602 6.218 5.599 9.201 0.147 0.221 0.287 0.442 0.435 0.656 6.674 9.842 14.726 18.719 23.965 26.337 0.066 0.059 0.133 0.111 0.199 0.162 2.851 2.343 5.82 4.553 8.884 6.645 0.398 0.273 0.796 0.545 1.201 0.818 2.851 1.893 5.783 3.683 8.803 5.356 0.457 0.25 0.891 0.53 1.348 0.774 3.367 1.805 6.822 3.499 10.38 5.009 0.611 0.258 1.252 0.457 1.871 0.707 2.409 0.972 4.825 1.937 7.315 2.777l10.557 3.529v140.155l-10.557 3.529c-51.193 17.121-85.596 64.902-85.596 118.895 0 69.131 56.239 125.377 125.377 125.377 30.506 0 59.922-11.117 82.826-31.302l8.332-7.345 122.048 70.464-1.989 10.041c0 0.022-0.007 0.037-0.007 0.052l-0.147 0.759c-0.39 1.974-0.589 3.993-0.884 5.989s-0.685 3.963-0.884 5.997c-0.413 4.148-0.634 8.317-0.634 12.472 0 69.131 56.239 125.377 125.377 125.377s125.377-56.239 125.377-125.377c0-4.155-0.221-8.317-0.634-12.472-0.199-2.026-0.589-3.993-0.884-5.997-0.295-1.996-0.494-4.008-0.884-5.989l-0.147-0.759c-0.007-0.015-0.007-0.037-0.007-0.052l-1.989-10.041 122.048-70.464 8.332 7.345c22.904 20.185 52.32 31.302 82.826 31.302 69.131 0 125.377-56.239 125.377-125.377 0-21.261-5.4-41.52-14.999-59.363h-200.078z",
+ "M720.645 706.358c0 69.131 56.239 125.377 125.377 125.377s125.377-56.239 125.377-125.377c0-69.138-56.239-125.377-125.377-125.377-31.943 0-62.376 12.045-85.707 33.91l-8.516 7.986-119.609-71.724 2.328-10.822c1.879-8.722 2.829-17.629 2.829-26.477 0-69.131-56.239-125.377-125.377-125.377s-125.377 56.239-125.377 125.377c0 69.131 56.239 125.37 125.377 125.37 29.652 0 58.434-10.564 81.051-29.755l8.45-7.168 122.497 73.448-1.68 10.343c-1.090 6.741-1.643 13.555-1.643 20.266z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "qucheng"
+ ],
+ "defaultCode": 59782,
+ "grid": 14
+ },
+ {
+ "id": 4,
+ "paths": [
+ "M756.315 645.131v-28.208c-22.359 22.918-35.671 54.103-35.671 87.57 0 8.045 0.788 16.17 2.357 24.163l2.114 10.829-122.195 70.545-8.325-7.308c-0.575-0.508-1.201-0.936-1.783-1.429-1.127-0.958-2.298-1.856-3.462-2.77-1.901-1.495-3.816-2.961-5.79-4.339-1.297-0.906-2.63-1.761-3.963-2.623-1.915-1.23-3.846-2.416-5.82-3.543-1.503-0.855-3.020-1.665-4.56-2.461-1.886-0.972-3.794-1.886-5.724-2.763-1.687-0.766-3.389-1.503-5.113-2.195-1.879-0.751-3.779-1.429-5.695-2.085-1.812-0.626-3.625-1.245-5.474-1.79-1.974-0.582-3.978-1.061-5.975-1.54-1.82-0.435-3.617-0.899-5.466-1.252-2.328-0.449-4.678-0.759-7.028-1.076-1.569-0.214-3.109-0.486-4.693-0.641-3.985-0.383-8-0.611-12.045-0.611s-8.052 0.221-12.045 0.611c-1.584 0.155-3.124 0.427-4.693 0.641-2.35 0.317-4.707 0.626-7.028 1.076-1.849 0.354-3.647 0.818-5.466 1.252-2.004 0.479-4 0.965-5.975 1.54-1.849 0.545-3.661 1.164-5.474 1.79-1.915 0.656-3.816 1.341-5.695 2.085-1.731 0.692-3.426 1.429-5.113 2.195-1.93 0.869-3.838 1.79-5.724 2.763-1.54 0.796-3.057 1.606-4.56 2.461-1.974 1.12-3.904 2.313-5.82 3.543-1.333 0.862-2.667 1.716-3.963 2.623-1.974 1.378-3.89 2.836-5.79 4.339-1.164 0.913-2.335 1.82-3.462 2.77-0.582 0.494-1.208 0.921-1.783 1.429l-8.325 7.308-122.195-70.545 2.114-10.829c1.562-7.986 2.357-16.119 2.357-24.163 0-53.462-33.961-101.096-84.506-118.526l-10.417-3.595v-140.752l10.417-3.595c1.856-0.641 3.647-1.407 5.459-2.129 1.009-0.405 2.041-0.751 3.035-1.186 3.514-1.503 6.94-3.153 10.262-4.951 0.177-0.096 0.339-0.206 0.508-0.302 3.205-1.753 6.306-3.661 9.319-5.665 0.523-0.354 1.039-0.722 1.554-1.083 2.733-1.879 5.37-3.86 7.934-5.938 0.442-0.361 0.884-0.707 1.319-1.076 2.88-2.402 5.658-4.906 8.303-7.551 0.022-0.022 0.052-0.044 0.074-0.066 5.474-5.481 10.402-11.448 14.763-17.821 0.471-0.685 0.906-1.385 1.363-2.077 1.584-2.416 3.087-4.877 4.501-7.404 0.53-0.936 1.061-1.871 1.562-2.829 1.356-2.571 2.615-5.201 3.794-7.868 0.354-0.796 0.744-1.569 1.083-2.372 1.407-3.359 2.659-6.792 3.772-10.284 0.339-1.061 0.597-2.144 0.906-3.212 0.737-2.542 1.407-5.105 1.982-7.698 0.295-1.348 0.56-2.704 0.81-4.067 0.471-2.542 0.862-5.098 1.179-7.684 0.155-1.245 0.332-2.475 0.442-3.728 0.354-3.823 0.589-7.669 0.589-11.566 0-8.059-0.788-16.192-2.35-24.163l-2.114-10.829 122.188-70.545 8.325 7.308c22.867 20.060 52.209 31.11 82.612 31.11s59.746-11.050 82.612-31.11l8.325-7.308 122.188 70.545-2.114 10.829c-1.554 7.971-2.35 16.097-2.35 24.163 0 4.383 0.236 8.715 0.678 12.988 0.037 0.317 0.111 0.626 0.147 0.943 0.442 3.978 1.046 7.912 1.849 11.772 0.022 0.118 0.066 0.236 0.088 0.354 0.862 4.059 1.915 8.045 3.16 11.949 0.029 0.103 0.074 0.199 0.111 0.295 1.26 3.912 2.704 7.735 4.324 11.47 0.111 0.25 0.243 0.479 0.354 0.729 1.577 3.558 3.286 7.035 5.172 10.417 0.258 0.464 0.567 0.906 0.832 1.37 1.79 3.109 3.676 6.159 5.717 9.098 0.457 0.656 0.972 1.274 1.444 1.93 1.937 2.674 3.934 5.297 6.070 7.809 0.67 0.788 1.392 1.518 2.077 2.284 2.048 2.291 4.14 4.538 6.35 6.674 0.236 0.228 0.435 0.479 0.67 0.707h0.103c22.499 21.379 52.821 34.595 86.23 34.595s63.731-13.216 86.23-34.595h0.155c0.354-0.339 0.663-0.722 1.009-1.061 1.643-1.599 3.183-3.293 4.737-4.98 1.238-1.341 2.497-2.652 3.676-4.044 1.488-1.761 2.851-3.61 4.243-5.452 1.076-1.429 2.203-2.822 3.219-4.302 1.378-1.996 2.615-4.089 3.875-6.173 0.862-1.422 1.783-2.799 2.593-4.258 1.274-2.306 2.394-4.715 3.529-7.109 0.626-1.326 1.333-2.615 1.915-3.963 1.149-2.674 2.122-5.437 3.087-8.199 0.405-1.164 0.899-2.284 1.267-3.455 0.958-3.013 1.709-6.115 2.438-9.223 0.236-0.995 0.553-1.96 0.766-2.969 0.692-3.315 1.164-6.704 1.584-10.115 0.103-0.847 0.295-1.665 0.383-2.519 0.442-4.265 0.67-8.582 0.67-12.958 0-69.131-56.239-125.37-125.377-125.37-30.514 0-59.93 11.117-82.833 31.302l-8.332 7.337-122.099-70.442 2.151-10.851c1.591-8.045 2.394-16.273 2.394-24.451 0-69.131-56.239-125.377-125.377-125.377s-125.377 56.239-125.377 125.377c0 8.177 0.81 16.406 2.394 24.451l2.151 10.851-122.048 70.464-8.332-7.337c-22.904-20.185-52.32-31.302-82.833-31.302-69.131-0.007-125.37 56.239-125.37 125.37 0 3.919 0.236 7.794 0.589 11.64 0.111 1.193 0.28 2.365 0.427 3.551 0.332 2.704 0.729 5.393 1.23 8.052 0.228 1.223 0.464 2.438 0.729 3.647 0.634 2.903 1.378 5.761 2.21 8.582 0.228 0.766 0.413 1.554 0.656 2.313 2.35 7.455 5.415 14.609 9.069 21.43 0.221 0.413 0.457 0.818 0.685 1.23 1.731 3.153 3.602 6.218 5.599 9.201 0.147 0.221 0.287 0.442 0.435 0.656 6.674 9.842 14.726 18.719 23.965 26.337 0.066 0.059 0.133 0.111 0.199 0.162 2.851 2.343 5.82 4.553 8.884 6.645 0.398 0.273 0.796 0.545 1.201 0.818 2.851 1.893 5.783 3.683 8.803 5.356 0.457 0.25 0.891 0.53 1.348 0.774 3.367 1.805 6.822 3.499 10.38 5.009 0.611 0.258 1.252 0.457 1.871 0.707 2.409 0.972 4.825 1.937 7.315 2.777l10.557 3.529v140.155l-10.557 3.529c-51.193 17.121-85.596 64.902-85.596 118.895 0 69.131 56.239 125.377 125.377 125.377 30.506 0 59.922-11.117 82.826-31.302l8.332-7.345 122.048 70.464-1.989 10.041c0 0.022-0.007 0.037-0.007 0.052l-0.147 0.759c-0.39 1.974-0.589 3.993-0.884 5.989s-0.685 3.963-0.884 5.997c-0.413 4.148-0.634 8.317-0.634 12.472 0 69.131 56.239 125.377 125.377 125.377s125.377-56.239 125.377-125.377c0-4.155-0.221-8.317-0.634-12.472-0.199-2.026-0.589-3.993-0.884-5.997-0.295-1.996-0.494-4.008-0.884-5.989l-0.147-0.759c-0.007-0.015-0.007-0.037-0.007-0.052l-1.989-10.041 122.048-70.464 8.332 7.345c22.904 20.185 52.32 31.302 82.826 31.302 69.131 0 125.377-56.239 125.377-125.377 0-21.261-5.4-41.52-14.999-59.363h-200.078z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "qucheng-q"
+ ],
+ "defaultCode": 59781,
+ "grid": 14
+ },
+ {
+ "id": 5,
+ "paths": [
+ "M720.645 706.358c0 69.131 56.239 125.377 125.377 125.377s125.377-56.239 125.377-125.377c0-69.138-56.239-125.377-125.377-125.377-31.943 0-62.376 12.045-85.707 33.91l-8.516 7.986-119.609-71.724 2.328-10.822c1.879-8.722 2.829-17.629 2.829-26.477 0-69.131-56.239-125.377-125.377-125.377s-125.377 56.239-125.377 125.377c0 69.131 56.239 125.37 125.377 125.37 29.652 0 58.434-10.564 81.051-29.755l8.45-7.168 122.497 73.448-1.68 10.343c-1.090 6.741-1.643 13.555-1.643 20.266z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "qucheng-c"
+ ],
+ "defaultCode": 59783,
+ "grid": 14
+ },
+ {
+ "id": 6,
+ "paths": [
+ "M669.227 16.469l-19.84 32.683c148.352 90.112 269.013 224.853 339.883 379.307l34.731-15.872c-73.984-161.408-199.979-302.080-354.773-396.117zM361.045 38.827l-13.013 45.867c293.973 84.309 528.384 325.973 597.205 615.296l46.293-11.008c-72.704-305.963-320.171-561.109-630.485-650.197zM-0 113.792v57.259c467.755 0 848.341 375.253 848.341 836.48h57.259c0-492.8-406.272-893.739-905.6-893.739z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sonarqube"
+ ],
+ "grid": 14
+ }
+ ],
+ "colorThemes": [],
+ "colorThemeIdx": 0
+ },
+ {
+ "selection": [
+ {
+ "order": 320,
+ "id": 0,
+ "name": "college",
+ "prevSize": 18,
+ "code": 59848,
+ "tempChar": ""
+ },
+ {
+ "order": 312,
+ "id": 1,
+ "name": "ztool",
+ "prevSize": 18,
+ "code": 59841,
+ "codes": [
+ 59841,
+ 59842
+ ],
+ "tempChar": ""
+ },
+ {
+ "order": 313,
+ "id": 2,
+ "name": "contacts",
+ "prevSize": 18,
+ "code": 59843,
+ "tempChar": ""
+ },
+ {
+ "order": 314,
+ "id": 3,
+ "name": "chats",
+ "prevSize": 18,
+ "code": 59844,
+ "tempChar": ""
+ },
+ {
+ "order": 8,
+ "id": 4,
+ "name": "menu-my, home",
+ "prevSize": 18,
+ "code": 59770,
+ "tempChar": ""
+ },
+ {
+ "order": 9,
+ "id": 5,
+ "name": "program",
+ "prevSize": 18,
+ "code": 59818,
+ "tempChar": ""
+ },
+ {
+ "order": 270,
+ "id": 6,
+ "name": "lightbulb-alt, product",
+ "prevSize": 18,
+ "code": 59791,
+ "tempChar": "",
+ "codes": [
+ 59791,
+ 59828
+ ]
+ },
+ {
+ "order": 11,
+ "id": 7,
+ "name": "rocket, project",
+ "prevSize": 18,
+ "code": 59804,
+ "tempChar": ""
+ },
+ {
+ "order": 12,
+ "id": 8,
+ "name": "run",
+ "prevSize": 18,
+ "code": 59817,
+ "tempChar": "",
+ "codes": [
+ 59817
+ ]
+ },
+ {
+ "order": 308,
+ "id": 9,
+ "name": "test",
+ "prevSize": 18,
+ "code": 59734,
+ "tempChar": "",
+ "codes": [
+ 59734,
+ 59823
+ ]
+ },
+ {
+ "order": 14,
+ "id": 10,
+ "name": "infinite, devops",
+ "prevSize": 18,
+ "code": 59811,
+ "tempChar": ""
+ },
+ {
+ "order": 202,
+ "id": 11,
+ "name": "ops",
+ "prevSize": 18,
+ "code": 59651,
+ "tempChar": ""
+ },
+ {
+ "order": 15,
+ "id": 12,
+ "name": "doc, menu-doc",
+ "prevSize": 18,
+ "code": 59803,
+ "tempChar": ""
+ },
+ {
+ "order": 16,
+ "id": 13,
+ "name": "statistic",
+ "prevSize": 18,
+ "code": 59801,
+ "tempChar": ""
+ },
+ {
+ "order": 268,
+ "id": 14,
+ "name": "group, menu-users, persons, team",
+ "prevSize": 28,
+ "code": 59774,
+ "tempChar": ""
+ },
+ {
+ "order": 18,
+ "id": 15,
+ "name": "menu-backend",
+ "prevSize": 18,
+ "code": 59795,
+ "tempChar": ""
+ },
+ {
+ "order": 19,
+ "id": 16,
+ "name": "assets, diamond",
+ "prevSize": 18,
+ "code": 59822,
+ "tempChar": ""
+ },
+ {
+ "order": 20,
+ "id": 17,
+ "name": "feedback",
+ "prevSize": 18,
+ "code": 59793,
+ "tempChar": "",
+ "codes": [
+ 59793,
+ 59829
+ ]
+ },
+ {
+ "order": 21,
+ "id": 18,
+ "name": "flow",
+ "prevSize": 18,
+ "code": 59796,
+ "tempChar": ""
+ },
+ {
+ "order": 22,
+ "id": 19,
+ "name": "oa",
+ "prevSize": 18,
+ "code": 59809,
+ "tempChar": "",
+ "codes": [
+ 59809,
+ 60088,
+ 60089,
+ 60090,
+ 60091,
+ 60092,
+ 60093,
+ 60094,
+ 60095,
+ 60096,
+ 60097,
+ 60098,
+ 60099,
+ 60100,
+ 60101,
+ 60102,
+ 60103,
+ 60104,
+ 60105,
+ 60106,
+ 60107,
+ 60108,
+ 60109,
+ 60110,
+ 60111,
+ 60112,
+ 60113,
+ 60114,
+ 60115,
+ 60116,
+ 60117,
+ 60118,
+ 60119,
+ 60120,
+ 60121,
+ 60122,
+ 60123,
+ 60124,
+ 60125,
+ 60126,
+ 60127,
+ 60128,
+ 60129,
+ 60130,
+ 60131,
+ 60132,
+ 60133,
+ 60134,
+ 60135,
+ 60136,
+ 60137,
+ 60138,
+ 60139,
+ 60140,
+ 60141,
+ 60142
+ ]
+ },
+ {
+ "order": 23,
+ "id": 20,
+ "name": "more-circle",
+ "prevSize": 18,
+ "code": 59784,
+ "tempChar": "",
+ "codes": [
+ 59784,
+ 60143,
+ 60144,
+ 60145,
+ 60146,
+ 60147,
+ 60148,
+ 60149,
+ 60150,
+ 60151,
+ 60152,
+ 60153,
+ 60154,
+ 60155,
+ 60156,
+ 60157,
+ 60158,
+ 60159,
+ 60160,
+ 60161,
+ 60162,
+ 60163,
+ 60164,
+ 60165,
+ 60166,
+ 60167,
+ 60168,
+ 60169,
+ 60170,
+ 60171,
+ 60172,
+ 60173,
+ 60174,
+ 60175,
+ 60176,
+ 60177,
+ 60178,
+ 60179,
+ 60180,
+ 60181,
+ 60182,
+ 60183,
+ 60184,
+ 60185,
+ 60186,
+ 60187,
+ 60188,
+ 60189,
+ 60190,
+ 60191,
+ 60192,
+ 60193,
+ 60194,
+ 60195,
+ 60196
+ ]
+ }
+ ],
+ "id": 11,
+ "metadata": {
+ "name": "一级导航菜单",
+ "importSize": {
+ "width": 448,
+ "height": 448
+ }
+ },
+ "height": 1024,
+ "prevSize": 28,
+ "icons": [
+ {
+ "id": 0,
+ "paths": [
+ "M528 1011.2c-0.441 0.027-0.953 0.041-1.472 0.041-5.431 0-10.469-1.691-14.613-4.576l0.085 0.055-432.64-245.12c-4.754-2.64-8.64-6.32-11.445-10.752l-0.075-0.128c-21.561-36.718-34.297-80.871-34.297-128s12.736-91.282 34.951-129.207l-0.654 1.209c3.001-3.835 6.608-7.033 10.704-9.502l0.176-0.098 433.28-247.68c4.373-2.715 9.678-4.325 15.36-4.325s10.987 1.609 15.486 4.398l-0.126-0.073 432.64 245.12c7.451 3.87 12.878 10.763 14.686 19.015l0.034 0.185c0.549 2.126 0.864 4.565 0.864 7.077 0 5.931-1.753 11.454-4.773 16.075l0.069-0.112c-16.869 27.993-26.848 61.792-26.848 97.92s9.979 69.927 27.33 98.789l-0.485-0.869c2.544 4.377 4.046 9.632 4.046 15.239 0 2.542-0.309 5.010-0.889 7.371l0.043-0.21c-2.315 8.039-7.602 14.576-14.565 18.48l-0.155 0.080-431.36 245.12c-4.306 2.809-9.577 4.48-15.239 4.48-0.041 0-0.085 0-0.128 0h0.007zM117.12 713.6l410.88 232.32 392.32-222.080c-13.55-29.947-21.445-64.933-21.445-101.76s7.895-71.813 22.085-103.353l-0.64 1.593-392.32-222.080-410.88 232.32c-14.615 26.448-23.216 57.979-23.216 91.52s8.601 65.072 23.717 92.512l-0.501-0.992z",
+ "M501.12 995.84c-21.934-36.624-34.903-80.798-34.903-128s12.969-91.376 35.541-129.152l-0.638 1.152 51.84 32.64-25.6-16.64 25.6 16c-16.869 27.993-26.848 61.792-26.848 97.92s9.979 69.927 27.33 98.789l-0.485-0.869z",
+ "M528 557.44c-0.327 0.011-0.709 0.018-1.093 0.018-5.472 0-10.61-1.431-15.061-3.938l0.153 0.080-432.64-245.76c-9.287-5.074-15.481-14.775-15.481-25.92s6.194-20.846 15.328-25.842l0.153-0.078 432.64-245.76c4.446-2.418 9.737-3.84 15.36-3.84s10.914 1.422 15.531 3.925l-0.171-0.085 433.28 245.76c9.287 5.074 15.481 14.775 15.481 25.92s-6.194 20.846-15.328 25.842l-0.153 0.078-432.64 245.76c-4.457 2.37-9.737 3.785-15.344 3.84h-0.016zM156.16 281.6l371.84 210.56 371.2-210.56-371.2-209.92z",
+ "M501.12 768c-21.561-36.718-34.297-80.871-34.297-128s12.736-91.282 34.951-129.207l-0.654 1.207 51.84 32.64c-16.869 27.993-26.848 61.792-26.848 97.92s9.979 69.927 27.33 98.789l-0.485-0.869z",
+ "M528 784c-0.327 0.011-0.709 0.018-1.093 0.018-5.472 0-10.61-1.431-15.061-3.938l0.153 0.080-432.64-245.12c-4.894-2.699-8.821-6.626-11.445-11.371l-0.075-0.149c-21.934-36.624-34.903-80.798-34.903-128s12.969-91.376 35.541-129.152l-0.638 1.152 51.84 32.64c-16.171 27.538-25.723 60.654-25.723 96s9.552 68.462 26.215 96.905l-0.491-0.905 410.88 232.32 392.32-222.72c-13.465-29.824-21.312-64.656-21.312-101.321 0-47.92 13.401-92.709 36.658-130.825l-0.626 1.106 25.6 16 26.24 16.64c-16.752 27.918-26.656 61.602-26.656 97.6s9.906 69.682 27.143 98.473l-0.485-0.873c2.562 4.498 4.071 9.883 4.071 15.621 0 2.631-0.318 5.191-0.917 7.639l0.046-0.219c-2.715 7.842-7.886 14.254-14.576 18.473l-0.144 0.087-434.56 240c-4.457 2.37-9.737 3.785-15.344 3.84h-0.016z"
+ ],
+ "attrs": [
+ {},
+ {},
+ {},
+ {},
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "college"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 1,
+ "paths": [
+ "M512 1.102c282.162 0 510.898 228.737 510.898 510.898s-228.737 510.898-510.898 510.898c-282.162 0-510.898-228.737-510.898-510.898s228.737-510.898 510.898-510.898zM768.55 194.89h-507.418c-12.431 0-22.549 9.904-22.894 22.251l-0.009 0.652v184.629c0 12.431 9.904 22.549 22.251 22.894l0.652 0.009h165.249l-173.705 270.249c-9.063 14.171-14.447 31.451-14.447 49.992v70.51c0 12.431 9.904 22.549 22.251 22.894l0.652 0.009h507.378c12.72 0 23.054-10.212 23.252-22.884v-183.237c-0.195-12.473-10.179-22.55-22.597-22.894l-0.658-0.009h-165.249l173.705-270.249c9.216-14.025 14.725-31.201 14.798-49.662v-70.491c0.026-0.42 0.042-0.913 0.042-1.409 0-12.842-10.412-23.255-23.255-23.255zM541.948 425.321l-184.981 287.513c-2.088 3.419-3.324 7.555-3.324 11.981 0 12.774 10.297 23.141 23.045 23.255h368.914v45.806h-461.215v-48.536c0-9.214 2.763-17.781 7.503-24.92l-0.054 0.080 189.511-295.179h60.602zM745.604 656.108v46.158h-326.975l29.948-46.158h297.026zM726.226 333.359l-176.173 276.593h-73.287l125.435-195.199c2.187-3.48 3.485-7.711 3.485-12.246 0-8.109-4.153-15.251-10.445-19.411l-0.087-0.054c-3.426-2.211-7.614-3.525-12.106-3.525h-298.661v-46.158h441.839zM745.604 241.048v46.158h-461.218v-46.158h461.218z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "ztool"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 2,
+ "paths": [
+ "M850.066 952.313h-676.133c-0.434 0.007-0.946 0.011-1.458 0.011-54.185 0-98.11-43.925-98.11-98.11 0-4.59 0.315-9.104 0.923-13.525l-0.057 0.512s0-8.274 0-15.959 4.729-28.368 8.274-44.327c11.445-50.485 29.374-95.088 53.218-135.803l-1.207 2.231c51.175-89.095 134.464-154.855 233.703-181.995l2.706-0.631c-51.152-40.955-83.63-103.399-83.63-173.426 0-122.405 99.23-221.634 221.634-221.634s221.634 99.23 221.634 221.634c0 70.027-32.478 132.471-83.191 173.086l-0.439 0.341c102.005 27.646 185.335 93.445 235.417 180.75l0.992 1.877c22.837 38.475 40.958 83.063 51.975 130.377l0.626 3.193c3.131 12.304 5.833 27.376 7.541 42.75l0.142 1.577c0.219 2.391 0.345 5.17 0.345 7.979s-0.126 5.589-0.368 8.334l0.025-0.354c0.971 5.195 1.527 11.175 1.527 17.285 0 22.736-7.689 43.68-20.606 60.368l0.169-0.226c-18.686 20.72-45.625 33.687-75.593 33.687-0.021 0-0.041 0-0.062 0h0.002zM512 504.907h-40.782c-120.603 3.445-224.951 69.874-281.648 167.426l-0.864 1.607c-19.909 34.057-35.785 73.509-45.531 115.312l-0.569 2.891c-2.955 13.593-5.319 26.597-7.093 38.416s0 10.638 0 13.593c-0.491 2.343-0.775 5.035-0.775 7.794 0 9.925 3.65 18.994 9.682 25.943l-0.041-0.048c7.175 8.016 17.552 13.038 29.104 13.038 0.574 0 1.143-0.011 1.71-0.037l-0.080 0.002h674.951c0.272 0.007 0.597 0.009 0.919 0.009 12.064 0 22.905-5.239 30.37-13.566l0.034-0.039c5.49-6.521 8.827-15.015 8.827-24.288 0-2.277-0.201-4.507-0.587-6.674l0.034 0.229c0-2.955 0-7.682 0-13.593-1.623-14.791-4.117-28.043-7.525-40.923l0.432 1.915c-9.87-44.647-25.575-84.142-46.567-120.176l1.058 1.97c-58.473-99.095-163.669-165.166-284.496-167.845l-0.379-0.007zM512 130.789c-5.41-0.64-11.675-1.006-18.025-1.006-89.504 0-162.059 72.558-162.059 162.059 0 83.152 62.624 151.678 143.282 160.983l0.752 0.071 36.053 5.319 36.053-5.319c81.408-9.376 144.034-77.902 144.034-161.054 0-89.504-72.558-162.059-162.059-162.059-6.352 0-12.617 0.366-18.777 1.077l0.752-0.071z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "contacts"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 3,
+ "paths": [
+ "M256 954.24c-17.655-0.247-33.867-6.222-46.914-16.144l0.194 0.144c-17.986-14.066-29.44-35.769-29.44-60.146 0-0.005 0-0.009 0-0.014v0-49.92c0-5.76 0-6.4-5.76-6.4h-38.4c0 0 0 0-0.002 0-59.865 0-108.434-48.347-108.798-108.126v-535.074c0-60.089 48.711-108.8 108.8-108.8v0h754.56c60.089 0 108.8 48.711 108.8 108.8v0 542.080c0.011 0.574 0.018 1.248 0.018 1.925 0 55.495-44.985 100.48-100.48 100.48-5.657 0-11.202-0.466-16.603-1.367l0.585 0.080h-76.8c-0.405-0.002-0.882-0.005-1.36-0.005-17.717 0-34.885 2.336-51.218 6.72l1.378-0.315-481.28 123.52c-5.161 1.563-11.099 2.496-17.246 2.56h-0.034zM133.76 133.76c-24.743 0-44.8 20.057-44.8 44.8v0 535.040c0.361 24.466 20.279 44.16 44.795 44.16 0.002 0 0.002 0 0.005 0h38.4c0.587-0.018 1.278-0.030 1.968-0.030 37.467 0 67.84 30.373 67.84 67.84 0 0.91-0.018 1.817-0.053 2.718l0.005-0.13v49.92c0 0.007 0 0.014 0 0.021 0 3.977 2.016 7.481 5.079 9.552l0.041 0.025c1.47 0.862 3.234 1.371 5.12 1.371s3.65-0.51 5.168-1.399l-0.048 0.025 481.28-119.68c19.774-5.287 42.478-8.322 65.888-8.322 0.462 0 0.921 0 1.383 0.005h76.729c30.72 0 33.28 0 38.4-5.76 8.642-7.211 14.103-17.986 14.103-30.037 0-0.464-0.009-0.928-0.023-1.39l0.002 0.066v-544c0-24.743-20.057-44.8-44.8-44.8v0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "chats"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 4,
+ "paths": [
+ "M796.16 942.080h-165.76c-35.346 0-64-28.654-64-64v0-136.32h-101.12v136.32c0 35.346-28.654 64-64 64v0h-187.52c-35.346 0-64-28.654-64-64v0-332.16h-35.84c-4.896 1.333-10.519 2.098-16.32 2.098-35.623 0-64.498-28.878-64.498-64.498 0-29.822 20.238-54.914 47.728-62.297l0.45-0.103 384-320c11.63-11.886 27.833-19.255 45.76-19.255s34.13 7.369 45.749 19.243l0.011 0.011 384 320c20.683 10.887 34.544 32.235 34.544 56.818 0 5.504-0.695 10.848-2.002 15.945l0.096-0.443c-5.643 30.053-31.68 52.489-62.955 52.489-0.368 0-0.734-0.002-1.099-0.009h-47.305v329.6c0.032 0.773 0.053 1.68 0.053 2.59 0 35.346-28.654 64-64 64-0.695 0-1.385-0.011-2.073-0.032l0.101 0.002zM462.72 675.2h97.92c0.955-0.050 2.073-0.080 3.2-0.080 35.346 0 64 28.654 64 64 0 0.027 0 0.055 0 0.085v-0.005 133.76h165.76v-396.16h107.52v-8.32l-385.28-320h-7.68l-395.52 328.32 97.92 5.12v393.6h183.040v-136.32c0-0.062 0-0.133 0-0.206 0-35.346 28.654-64 64-64 1.801 0 3.586 0.073 5.351 0.222l-0.231-0.016z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "menu-my"
+ ],
+ "defaultCode": 59770,
+ "grid": 14
+ },
+ {
+ "id": 5,
+ "paths": [
+ "M371.719 497.264h-166.805c0 0 0 0-0.002 0-67.502 0-122.263-54.553-122.597-121.977v-166.837c0-67.71 54.889-122.599 122.599-122.599v0h166.805c67.456 0.334 122.009 55.095 122.009 122.597 0 0 0 0 0 0.002v0 166.805c0 67.385-54.624 122.009-122.009 122.009v0zM204.914 143.614c-0.005 0-0.007 0-0.011 0-35.157 0-63.657 28.501-63.657 63.657 0 0.414 0.005 0.827 0.011 1.241v-0.062 166.805c0 0 0 0.002 0 0.002 0 34.832 28.238 63.067 63.067 63.067 0.208 0 0.414 0 0.622-0.002h166.775c34.832 0 63.067-28.238 63.067-63.067v0-166.805c0 0 0-0.002 0-0.002 0-34.951-28.165-63.321-63.035-63.655h-0.032z",
+ "M819.086 497.264h-166.805c-67.385 0-122.009-54.624-122.009-122.009v0-166.805c0 0 0 0 0-0.002 0-67.502 54.553-122.263 121.977-122.597h166.837c67.71 0 122.599 54.889 122.599 122.599v0 166.805c-0.334 67.456-55.095 122.009-122.597 122.009 0 0 0 0-0.002 0v0zM652.281 143.614c-34.907 0.327-63.079 28.702-63.079 63.655 0 0.416 0.005 0.83 0.011 1.243v-0.062 166.805c0 34.832 28.238 63.067 63.067 63.067v0h166.805c0.176 0.002 0.382 0.002 0.59 0.002 34.832 0 63.067-28.238 63.067-63.067 0 0 0-0.002 0-0.002v0-166.805c0-35.157-28.501-63.657-63.657-63.657v0z",
+ "M371.719 938.149h-166.805c-67.71 0-122.599-54.889-122.599-122.599v-166.805c0.334-67.456 55.095-122.009 122.597-122.009 0 0 0 0 0.002 0h166.805c67.385 0 122.009 54.624 122.009 122.009v0 166.805c0 0 0 0 0 0.002 0 67.502-54.553 122.263-121.977 122.597h-0.032zM204.914 584.498c-0.176-0.002-0.382-0.002-0.59-0.002-34.832 0-63.067 28.238-63.067 63.067 0 0 0 0.002 0 0.002v0 166.805c0 35.157 28.501 63.657 63.657 63.657v0h166.805c34.903-0.334 63.067-28.704 63.067-63.655 0 0 0-0.002 0-0.002v0-165.625c0-34.832-28.238-63.067-63.067-63.067v0z",
+ "M819.086 938.149h-166.805c-67.456-0.334-122.009-55.095-122.009-122.597 0 0 0 0 0-0.002v0-166.805c0-67.385 54.624-122.009 122.009-122.009v0h166.805c0 0 0 0 0.002 0 67.502 0 122.263 54.553 122.597 121.977v166.837c0 67.71-54.889 122.599-122.599 122.599v0zM652.281 584.498c-34.832 0-63.067 28.238-63.067 63.067v0 166.805c0 0 0 0.002 0 0.002 0 34.951 28.165 63.321 63.035 63.655h166.837c35.157 0 63.657-28.501 63.657-63.657v-165.625c0 0 0-0.002 0-0.002 0-34.832-28.238-63.067-63.067-63.067-0.208 0-0.414 0-0.622 0.002h0.032z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "program"
+ ],
+ "defaultCode": 59818,
+ "grid": 14
+ },
+ {
+ "id": 6,
+ "paths": [
+ "M615.040 807.68h-206.080c-1.541 0.101-3.342 0.16-5.154 0.16-45.458 0-82.469-36.181-83.803-81.317l-0.002-0.123v-18.56c-0.299-27.447-13.163-51.826-33.102-67.703l-0.178-0.137c-83.863-59.829-137.963-156.688-138.24-266.197v-0.043c0.56-95.147 41.822-180.549 107.241-239.751l0.279-0.249c33.333-29.6 72.688-53.296 115.893-68.965l2.507-0.795c40.585-17.385 87.744-27.886 137.248-28.795l0.352-0.005h5.12c0.208 0 0.457 0 0.704 0 98.649 0 188.434 37.959 255.543 100.066l-0.249-0.226c64.439 59.538 104.722 144.4 104.96 238.677v0.043c-1.47 109.835-56.334 206.551-139.767 265.545l-1.033 0.695c-20.311 15.465-33.285 39.659-33.285 66.882 0 0.336 0.002 0.672 0.007 1.008v-0.050 18.56c-1.337 45.259-38.345 81.44-83.806 81.44-1.813 0-3.614-0.057-5.399-0.171l0.245 0.011zM512 67.2v32c-0.279 0-0.61 0-0.942 0-40.862 0-79.913 7.751-115.765 21.865l2.144-0.743c-37.792 15.643-70.094 37.271-97.321 64.041l0.041-0.041c-53.641 46.985-87.408 115.522-87.68 191.952v0.048c1.76 87.241 45.218 163.977 111.2 211.296l0.8 0.544c38.24 26.699 63.161 70.192 63.998 119.552l0.002 0.128v18.56c1.552 9.904 10.025 17.394 20.247 17.394 0.759 0 1.509-0.041 2.245-0.121l-0.091 0.009h204.16c0.647 0.071 1.394 0.114 2.153 0.114 10.222 0 18.695-7.488 20.231-17.278l0.016-0.117v-18.56c0.496-49.57 25.525-93.193 63.506-119.36l0.494-0.32c67.447-48.359 111.104-126.187 112-214.261v-0.139c-0.352-75.963-33.008-144.231-84.926-191.824l-0.194-0.176c-55.394-51.047-129.621-82.398-211.168-82.56h-0.032z",
+ "M404.48 581.12c-0.137 0.002-0.297 0.002-0.459 0.002-17.673 0-32-14.327-32-32 0-10.069 4.649-19.049 11.918-24.917l0.062-0.048 128-103.040-99.2 26.88c-2.055 0.373-4.423 0.583-6.839 0.583-22.267 0-40.32-18.053-40.32-40.32 0-9.154 3.051-17.595 8.192-24.363l-0.073 0.101 227.2-168.32c5.223-3.84 11.783-6.146 18.88-6.146 17.71 0 32.066 14.357 32.066 32.066 0 10.613-5.154 20.021-13.097 25.858l-0.089 0.062-113.28 83.2 85.76-24.96c3.097-0.839 6.651-1.321 10.32-1.321 14.837 0 27.831 7.888 35.017 19.701l0.103 0.181c3.49 5.79 5.557 12.779 5.557 20.251 0 11.122-4.576 21.177-11.95 28.382l-0.007 0.007-225.92 183.040c-5.166 3.239-11.442 5.159-18.167 5.159-0.587 0-1.173-0.016-1.753-0.043l0.082 0.002z",
+ "M630.4 910.72h-236.8c-17.673 0-32-14.327-32-32v0c0.352-17.529 14.471-31.648 31.968-32h236.832c17.529 0.352 31.648 14.471 32 31.968v0.032c0 17.673-14.327 32-32 32v0z",
+ "M588.8 988.8h-154.24c-17.673 0-32-14.327-32-32v0c0.352-17.529 14.471-31.648 31.968-32h154.272c17.673 0 32 14.327 32 32v0c0 17.673-14.327 32-32 32v0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "light bulb"
+ ],
+ "defaultCode": 59791,
+ "grid": 14
+ },
+ {
+ "id": 7,
+ "paths": [
+ "M512 992c-17.673 0-32-14.327-32-32v0-134.4c0-17.673 14.327-32 32-32s32 14.327 32 32v0 134.4c0 17.673-14.327 32-32 32v0z",
+ "M427.52 943.36c-17.673 0-32-14.327-32-32v0-79.36c0-17.673 14.327-32 32-32v0c17.673 0 32 14.327 32 32v0 80.64c-0.706 17.113-14.752 30.72-31.975 30.72-0.009 0-0.018 0-0.027 0v0z",
+ "M596.48 943.36c-17.673 0-32-14.327-32-32v0-79.36c0-17.673 14.327-32 32-32v0c17.673 0 32 14.327 32 32v0 80.64c-0.706 17.113-14.752 30.72-31.975 30.72-0.009 0-0.018 0-0.027 0v0z",
+ "M512 477.44c-0.258 0.002-0.565 0.002-0.871 0.002-35.819 0-68.395-13.879-92.647-36.553l0.078 0.071c-24.414-22.715-39.648-55.015-39.68-90.873v-0.007c-0.005-0.423-0.007-0.923-0.007-1.424 0-36.425 15.216-69.298 39.639-92.608l0.050-0.048c24.615-22.585 57.57-36.427 93.76-36.427s69.145 13.84 93.863 36.519l-0.103-0.091c24.414 22.715 39.648 55.015 39.68 90.873v0.007c-0.693 35.861-16.027 68.009-40.256 90.818l-0.064 0.062c-23.84 24.185-56.839 39.289-93.367 39.68h-0.073zM512 285.44c-0.322-0.005-0.704-0.007-1.086-0.007-18.889 0-36.073 7.305-48.875 19.248l0.041-0.039c-11.881 11.333-19.401 27.147-19.838 44.72l-0.002 0.080c0.437 17.335 7.701 32.889 19.189 44.151l0.011 0.009c13.017 12.235 30.59 19.751 49.92 19.751s36.903-7.518 49.959-19.787l-0.039 0.034c11.881-11.333 19.401-27.147 19.838-44.72l0.002-0.080c-0.062-17.527-7.689-33.257-19.783-44.112l-0.057-0.048c-12.583-11.518-29.415-18.574-47.895-18.574-0.487 0-0.974 0.005-1.456 0.016h0.071z",
+ "M426.24 791.040c-17.099-0.613-32.4-7.842-43.509-19.189l-16.651-16.651c-9.342 20.914-29.959 35.225-53.92 35.225-0.619 0-1.237-0.009-1.849-0.030l0.089 0.002c-7.431-0.050-14.464-1.696-20.793-4.61l0.313 0.13c-40.192-13.529-73.623-38.277-97.541-70.505l-0.379-0.535c-25.145-32.153-40.32-73.163-40.32-117.719 0-0.24 0-0.48 0-0.72v0.037c-0.005-0.517-0.009-1.127-0.009-1.737 0-40.747 12.693-78.53 34.341-109.609l-0.414 0.626c15.065-21.488 33.33-39.55 54.318-53.931l0.722-0.469c1.863-82.245 25.415-158.615 65.131-224.089l-1.131 2.009c44.075-71.442 104.43-128.928 176.112-168.366l2.448-1.234c8.368-4.846 18.409-7.705 29.12-7.705s20.752 2.859 29.403 7.856l-0.283-0.151h4.48c72.146 40.782 131.056 97.232 173.543 165.026l1.177 2.014c38.942 63.36 62.56 139.817 63.995 221.685l0.005 0.395c22.208 14.491 40.745 32.619 55.248 53.737l0.432 0.663c21.234 30.453 33.929 68.235 33.929 108.983 0 0.61-0.002 1.221-0.009 1.831v-0.094c0 0.201 0 0.441 0 0.681 0 44.553-15.177 85.563-40.64 118.142l0.32-0.423c-26.537 33.735-62.274 59.134-103.431 72.528l-1.529 0.432c-4.907 1.351-10.544 2.126-16.361 2.126-24.418 0-45.643-13.675-56.432-33.783l-0.167-0.343-19.2 18.56c-10.409 9.253-23.963 15.175-38.875 15.993l-0.165 0.007zM392.32 689.28c10.88 12.8 23.040 24.96 35.2 37.12h170.24c10.88-10.88 21.76-22.4 31.36-33.92 1.298-8.56 5.209-16.037 10.882-21.762l-0.002 0.002c8.016-9.088 19.687-14.791 32.69-14.791 0.882 0 1.76 0.025 2.629 0.078l-0.121-0.007c16.299 1.369 29.609 12.736 33.856 27.89l0.064 0.27c4.56 12.144 7.349 26.176 7.678 40.816l0.002 0.144c27.442-10.293 50.379-27.255 67.595-48.96l0.245-0.32c16.752-21.952 26.841-49.771 26.841-79.945 0-27.458-8.354-52.967-22.661-74.121l0.297 0.469c-13.019-18.567-29.737-33.648-49.173-44.421l-0.747-0.379-18.56-9.6v-20.48c0.002-0.567 0.005-1.234 0.005-1.904 0-74.946-20.949-145.001-57.307-204.629l0.983 1.735c-37.723-61.419-89.161-111.013-150.258-145.49l-2.062-1.070c-62.631 36.535-113.886 86.151-151.259 145.401l-1.061 1.799c-35.122 56.903-56.039 125.819-56.32 199.602v21.198l-18.56 13.44c-20.395 11.392-37.312 26.672-50.245 44.969l-0.315 0.471c-14.007 20.686-22.361 46.194-22.361 73.655 0 30.176 10.089 57.995 27.077 80.27l-0.235-0.322c17.154 22.194 40.213 39.061 66.83 48.334l1.010 0.306c0.112-12.663 2.448-24.745 6.638-35.925l-0.238 0.725c2.818-17.557 16.83-31.131 34.368-33.262l0.192-0.018c0.075 0 0.162 0 0.251 0 20.775 0 38.382 13.559 44.455 32.311l0.094 0.331z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "rocket",
+ "project"
+ ],
+ "defaultCode": 59804,
+ "grid": 14
+ },
+ {
+ "id": 8,
+ "paths": [
+ "M748.119 625.259l-132.405-64.576c44.565-15.435 103.161-50.199 103.049-126.352v-7.566c7.566-6.809 15.131-13.579 22.697-20.427 26.48-23.758 23.68-58.901-5.675-78.571-55.232-36.999-110.802-73.465-166.11-110.386v0c-11.76-8.194-26.594-10.64-40.363-6.658-55.534 15.397-111.031 31.022-166.073 48.007v0c-10.617 3.97-19.829 10.985-26.48 20.162-12.030 15.888-10.215 38.736 1.474 54.325v0c12.265 16.322 33.461 23.179 52.962 17.136 44.942-12.521 89.657-25.723 134.635-38.057v0c5.216-1.175 10.681-0.352 15.321 2.309 25.989 16.494 51.486 33.705 77.136 50.729 4.35 2.875 8.512 5.977 13.392 9.419-3.783 3.783-6.77 6.544-9.835 9.305l-43.278 38.587h-416.201v23.264h390.402c-27.111 24.16-54.21 48.359-81.296 72.594v0c-9.44 7.941-16.149 18.647-19.179 30.603h-452.293v23.417h453.577c4.274 12.334 14.299 23.378 30 31.058 36.821 18.032 73.68 35.989 110.576 53.87 23.113 11.349 46.229 22.697 70.325 34.464-2.571 4.464-4.539 8.021-6.658 11.349-30.491 49.456-60.994 98.912-91.509 148.368-19.71 32.119-4.425 68.094 31.776 75.659 18.688 3.783 37.831-5.41 49.746-24.665 41.184-66.528 82.267-133.111 123.25-199.742 19.975-32.496 11.614-60.754-22.962-77.627v0zM585.865 545.513l14.489-13.013c31.424-28.018 62.862-56.039 94.311-84.057-8.208 65.71-73.806 89.166-108.8 97.033v0.037z",
+ "M429.856 585.198c-3.406 4.88-5.826 8.208-8.057 11.65-21.639 33.479-43.049 67.109-65.067 100.325v0c-4.151 6.226-9.63 11.458-16.041 15.321-71.385 41.614-143.109 83.035-214.647 124.839-25.081 14.601-32.951 42.937-19.218 66.581s42.672 30.757 67.298 16.645c77.273-44.565 154.432-89.291 231.479-134.181v0c8.395-5.093 15.575-11.961 21.033-20.126 24.704-36.921 48.496-74.448 72.594-111.749 1.552-2.384 2.761-4.955 4.464-8.057-29.621-14.601-61.511-25.12-73.842-61.248v0zM818.329 320.958v0c62.155 0.146 112.663-50.123 112.807-112.279s-50.123-112.663-112.279-112.807c-62.155-0.146-112.663 50.123-112.807 112.279 0 0.165 0 0.329 0 0.491v0c0.187 61.938 50.341 112.11 112.279 112.318v0zM1022.608 315.586c-4.313-18.462-15.813-31.248-34.274-36.014-19.218-4.955-35.902 0.302-49.481 15.131-31.815 34.953-63.781 69.758-95.746 104.939l-52.281-34.766c1.929 39.266-21.262 61.966-48.459 83.225 29.81 19.861 57.689 39.57 86.704 57.387 18.082 11.122 41.614 6.507 56.29-9.57 42.471-46 84.688-92.343 126.654-139.024v0c10.363-11.054 14.359-26.635 10.592-41.31v0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "run"
+ ],
+ "defaultCode": 59817,
+ "grid": 14
+ },
+ {
+ "id": 9,
+ "paths": [
+ "M245.634 458.254h91.447c0-93.264 75.607-168.871 168.871-168.871 0 0 0 0 0 0v-91.447c-143.63 0.336-259.984 116.688-260.318 260.318v0z",
+ "M815.042 133.922v0c-179.232-178.841-469.509-178.521-648.347 0.711s-178.521 469.509 0.711 648.347c153.984 153.648 394.745 177.934 576.313 58.128l182.891 182.891 64.622-64.622-174.967-175.579c179.047-179.826 178.503-470.727-1.218-649.881v0zM231.003 717.961v0c-142.263-143.433-141.312-375.033 2.119-517.296s375.033-141.312 517.296 2.121c141.438 142.601 141.438 372.571 0 515.175v0c-142.263 143.433-373.863 144.382-517.296 2.121-0.711-0.704-1.417-1.41-2.119-2.121v0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "test"
+ ],
+ "defaultCode": 59734,
+ "grid": 14
+ },
+ {
+ "id": 10,
+ "paths": [
+ "M804.571 292.571c-55.122 0-116.705 18.728-156.898 52.122l-135.674 112.449-122.010-100.070c-43.072-41.575-109.52-64.501-170.561-64.501-125.933 0-219.429 98.622-219.429 219.429s93.496 219.429 219.429 219.429c55.12 0 116.704-18.727 156.897-52.118l135.674-112.453 121.997 100.058c43.287 41.371 109.397 64.514 170.575 64.514 126.016 0 219.429-98.703 219.429-219.429 0-121.889-92.894-219.429-219.429-219.429zM219.429 365.714c35.898 0 78.337 14.319 106.060 36.978l131.655 109.308-123.088 101.82c-28.181 27.198-74.556 44.465-114.626 44.465-82.519 0-146.286-66.778-146.286-146.286s63.767-146.286 146.286-146.286zM804.571 365.714c82.519 0 146.286 66.778 146.286 146.286s-63.767 146.286-146.286 146.286c-35.656 0-78.376-14.406-106.083-37.007l-131.631-109.279 123.086-101.82c28.181-27.198 74.558-44.465 114.628-44.465z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "infinite"
+ ],
+ "defaultCode": 59811,
+ "grid": 14
+ },
+ {
+ "id": 11,
+ "paths": [
+ "M36.571 0v1024z",
+ "M73.143 0v1024z",
+ "M109.714 0v1024z",
+ "M146.286 0v1024z",
+ "M182.857 0v1024z",
+ "M219.429 0v1024z",
+ "M256 0v1024z",
+ "M292.571 0v1024z",
+ "M329.143 0v1024z",
+ "M365.714 0v1024z",
+ "M402.286 0v1024z",
+ "M438.857 0v1024z",
+ "M475.429 0v1024z",
+ "M512 0v1024z",
+ "M548.571 0v1024z",
+ "M585.143 0v1024z",
+ "M621.714 0v1024z",
+ "M658.286 0v1024z",
+ "M694.857 0v1024z",
+ "M731.429 0v1024z",
+ "M768 0v1024z",
+ "M804.571 0v1024z",
+ "M841.143 0v1024z",
+ "M877.714 0v1024z",
+ "M914.286 0v1024z",
+ "M950.857 0v1024z",
+ "M987.429 0v1024z",
+ "M0 36.571h1024z",
+ "M0 73.143h1024z",
+ "M0 109.714h1024z",
+ "M0 146.286h1024z",
+ "M0 182.857h1024z",
+ "M0 219.429h1024z",
+ "M0 256h1024z",
+ "M0 292.571h1024z",
+ "M0 329.143h1024z",
+ "M0 365.714h1024z",
+ "M0 402.286h1024z",
+ "M0 438.857h1024z",
+ "M0 475.429h1024z",
+ "M0 512h1024z",
+ "M0 548.571h1024z",
+ "M0 585.143h1024z",
+ "M0 621.714h1024z",
+ "M0 658.286h1024z",
+ "M0 694.857h1024z",
+ "M0 731.429h1024z",
+ "M0 768h1024z",
+ "M0 804.571h1024z",
+ "M0 841.143h1024z",
+ "M0 877.714h1024z",
+ "M0 914.286h1024z",
+ "M0 950.857h1024z",
+ "M0 987.429h1024z",
+ "M731.429 731.429v219.429h129.17c9.426 0.002 17.118 27.145 17.115 36.571-0.002 9.422-7.691 36.571-17.115 36.571h-695.707c-9.426 0-18.608-27.145-18.606-36.571 0.002-9.422 9.184-36.569 18.606-36.571h127.68v-219.429h-219.429c-37.703 0-73.141-45.193-73.141-82.896v-580.265c0-37.703 30.565-68.267 68.267-68.267h887.465c37.657 0.112 68.153 30.61 68.267 68.267v580.265c-0.112 37.655-35.488 82.784-73.145 82.896h-219.429zM375.465 951.010h273.065v-220.494h-273.065v220.494zM950.857 103.938c0-17.008-14.034-30.795-31.346-30.795 0 0 0 0 0 0h-815.022c-17.312 0-31.346 13.79-31.346 30.795 0 0 0 0 0 0v523.55c0 17.008 14.034 30.795 31.346 30.795 0 0 0 0 0 0h815.022c17.312 0 31.346-13.79 31.346-30.795 0 0 0 0 0 0v-523.55zM836.949 389.735c10.386 12.224 16.107 28.119 16.043 44.581 0.967 22.391-8.958 43.742-26.283 56.542-22.039 14.594-47.801 21.559-73.728 19.934-12.974-0.176-25.897-1.751-38.571-4.711-11.193-1.625-21.979-5.566-31.744-11.6v-41.319c9.977 8.512 21.472 14.8 33.792 18.485 13.083 4.722 26.8 7.173 40.619 7.25 38.912 0 58.368-13.774 58.368-42.046 0.055-7.513-2.094-14.862-6.144-21.022-4.629-6.8-10.562-12.482-17.408-16.672-7.168-4.711-20.821-12.322-40.96-22.473-20.686-8.672-39.415-21.888-54.955-38.784-8.8-11.726-13.504-26.327-13.312-41.319-0.453-22.411 10.162-43.445 27.989-55.456 20.713-14.496 45.186-21.723 69.973-20.661 20.697-1.154 41.392 2.304 60.757 10.149v39.506c-19.099-12.279-41.177-18.329-63.488-17.399-14.571-0.649-29.017 3.125-41.643 10.873-10.039 6.073-16.181 17.454-16.043 29.719-0.347 10.622 3.781 20.85 11.264 27.909 14.871 11.712 31.033 21.451 48.128 28.997 21.344 9.111 40.818 22.528 57.349 39.509zM513.022 402.421v108.009h-35.499v-289.595h77.824c24.784-1.598 49.275 6.386 68.949 22.473 16.928 16.629 25.945 40.437 24.576 64.88 0.768 26.487-9.769 51.929-28.672 69.227-20.025 17.719-45.659 26.665-71.68 25.008l-35.497-0.002zM513.024 253.815v115.621h32.768c17.627 1.36 35.113-4.185 49.152-15.584 11.634-11.259 17.792-27.543 16.725-44.219 0-37.33-20.821-55.817-62.464-55.817h-36.181zM203.095 471.285c-22.537-28.523-34.119-65.019-32.427-102.21-1.995-39.232 9.806-77.854 33.109-108.373 22.491-27.161 55.408-41.97 89.429-40.233 32.382-1.045 63.481 13.467 84.651 39.506 22.144 28.736 33.566 65.113 32.085 102.21 2.107 39.248-9.705 77.913-33.109 108.373-21.968 26.864-54.245 41.669-87.723 40.233-32.843 1.447-64.514-13.099-86.014-39.506zM291.157 253.093c-24.277-0.601-47.408 10.942-62.464 31.17-31.607 49.239-31.879 113.929-0.683 163.463 14.539 20.071 37.259 31.527 61.099 30.807 24.313 1.241 47.781-9.614 63.488-29.358 16.565-23.819 24.663-53.090 22.869-82.638 1.822-29.833-6.137-59.417-22.528-83.726-15.008-19.726-37.92-30.747-61.781-29.721z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "ops"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 12,
+ "paths": [
+ "M64 586.24v-165.248c0-20.48 14.336-36.992 32-36.992s32 16.512 32 36.864v165.44c0 20.352-14.336 36.864-32 36.864s-32-16.448-32-36.864v-0.064zM874.944 1024h-661.824c-82.24 0-149.12-64.832-149.12-144.576v-74.24c0-22.272 18.624-40.32 41.6-40.384 23.040 0 41.728 18.112 41.728 40.384v74.24c0 35.2 29.44 63.744 65.728 63.744h661.888c36.288 0 65.728-28.608 65.728-63.744v-734.848c0-35.2-29.44-63.744-65.728-63.744h-661.824c-36.224 0-65.728 28.608-65.728 63.744v23.872c-0.352 22.633-18.967 40.704-41.6 40.384v0c-22.654 0.427-41.362-17.591-41.792-40.245 0-0.048 0-0.094 0-0.139v-23.872c0-79.744 66.88-144.576 149.12-144.576h661.76c82.24 0 149.12 64.832 149.12 144.576v734.848c0 79.744-66.88 144.576-149.056 144.576v0zM788.928 332.736h-358.848c-23.040 0-41.792-17.152-41.792-38.4 0-21.12 18.752-38.336 41.792-38.336h358.848c23.040 0 41.792 17.152 41.792 38.4 0 21.12-18.752 38.336-41.792 38.336zM790.208 550.976h-358.848c-23.040 0-41.728-17.216-41.728-38.4 0-21.12 18.688-38.4 41.728-38.4h358.848c23.040 0 41.792 17.28 41.792 38.4 0 21.184-18.688 38.4-41.792 38.4zM790.208 768h-358.848c-23.040 0-41.728-17.152-41.728-38.4 0-21.12 18.688-38.336 41.728-38.336h358.848c23.040 0 41.792 17.152 41.792 38.4 0 21.12-18.688 38.336-41.792 38.336zM214.080 735.104h-168.384c-23.040 0-41.792-17.152-41.792-38.4 0-21.12 18.688-38.336 41.792-38.336h168.32c23.104 0 41.792 17.216 41.792 38.4s-18.688 38.4-41.728 38.4v-0.064zM210.176 339.456h-168.384c-23.040 0-41.792-17.216-41.792-38.4 0-21.12 18.688-38.4 41.792-38.4h168.32c23.104 0 41.792 17.28 41.792 38.4 0 21.184-18.688 38.4-41.728 38.4z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "doc"
+ ],
+ "defaultCode": 59803,
+ "grid": 14
+ },
+ {
+ "id": 13,
+ "paths": [
+ "M510.076 904.936v-133.619h76.893v133.619h230.881c18.442-2.707 35.583 10.053 38.29 28.492s-10.053 35.583-28.492 38.29c-3.249 0.476-6.549 0.476-9.798 0h-538.5c-18.442 2.707-35.583-10.053-38.29-28.492s10.053-35.583 28.492-38.29c3.249-0.476 6.549-0.476 9.798 0h230.729z",
+ "M185.658 130.551v0c-41.736 1.715-74.216 36.886-72.602 78.628v471.719c-1.611 41.742 30.866 76.912 72.602 78.628h725.828c41.736-1.715 74.216-36.886 72.602-78.628v-471.719c1.611-41.742-30.866-76.912-72.602-78.628h-725.828zM185.658 51.92h725.828c83.444 3.485 148.351 73.8 145.155 157.256v471.719c3.194 83.453-61.713 153.773-145.157 157.256h-725.828c-83.444-3.485-148.351-73.8-145.155-157.256v-471.719c-3.194-83.453 61.713-153.773 145.157-157.256v0z",
+ "M281.391 439.496v0c-8.256 18.238-28.91 27.344-47.944 21.137v0c-17.628-3.864-28.787-21.287-24.924-38.915 0.249-1.137 0.558-2.257 0.928-3.36v0c27.617-78.726 104.584-129.158 187.788-123.049 62.799 0 100.635 26.192 179.62 102.78 63.108 61.268 91.598 80.926 123.559 80.926v0c46.546 2.081 91.399-17.691 121.26-53.457v0c13.671-14.896 36.108-17.728 53.048-6.687v0c14.626 8.505 19.59 27.256 11.085 41.883-1.012 1.74-2.194 3.378-3.528 4.887v0c-45.251 53.051-112.229 82.564-181.916 80.159-62.801 0-100.635-26.192-179.62-102.78-63.108-61.268-91.598-80.926-123.559-80.926v0c-52.096-5.026-100.52 27.344-115.797 77.402v0z"
+ ],
+ "width": 1097.1428571428573,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "statistic"
+ ],
+ "defaultCode": 59801,
+ "grid": 14
+ },
+ {
+ "id": 14,
+ "paths": [
+ "M584.672 480.055c59.742-44.875 98.341-114.405 98.341-192.519 0-135.015-114.88-244.873-256.135-244.873s-256.135 109.858-256.135 244.873c0 78.114 38.592 147.641 98.341 192.519-157.463 60.155-269.086 207.184-269.086 378.855v81.602c0 22.571 19.097 40.821 42.674 40.821h768.4c23.584 0 42.677-18.251 42.677-40.821v-81.6c0-171.737-111.623-318.704-269.081-378.855zM241.584 287.214c0-97.71 83.095-177.141 185.294-177.141 102.192 0 185.289 79.433 185.289 177.141 0 97.687-83.099 177.141-185.289 177.141-102.199 0-185.294-79.424-185.294-177.141zM64.16 914.368v-43.346c0-191.2 162.709-346.768 362.75-346.768 199.968 0 362.647 155.57 362.647 346.768v43.346h-725.399zM896 328.418c0-112.544-95.751-204.119-213.456-204.119-3.554 0-6.839 0.834-10.293 0.992 3.328 4.603 6.507 9.305 9.536 14.094 17.339 21.735 30.951 46.315 39.918 72.878 51.415 15.881 107.639 61.719 107.639 116.121 0 48.011-29.525 91.607-75.195 111.426-16.907 6.133-28.832 20.711-28.832 37.749 0 17.643 12.791 32.665 30.656 38.382l8.336 1.922c113.824 27.488 193.097 124.272 193.097 237.106v31.669h-61.173c5.643 26.375 8.606 44.304 8.606 72.27h76.485c23.616 0 42.677-18.247 42.677-40.818v-63.125c0.069-124.533-72.4-234.613-183.531-289.648 34.942-36.823 55.529-85.248 55.529-136.903z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "group"
+ ],
+ "defaultCode": 59774,
+ "grid": 28
+ },
+ {
+ "id": 15,
+ "paths": [
+ "M585.143 731.429c18.755 0 34.213 14.118 36.325 32.306l0.246 4.265v146.286c0 20.198-16.374 36.571-36.571 36.571-18.755 0-34.213-14.118-36.325-32.306l-0.246-4.265v-36.571h-438.857c-20.198 0-36.571-16.374-36.571-36.571 0-18.755 14.118-34.213 32.306-36.325l4.265-0.246h438.857v-36.571c0-20.198 16.374-36.571 36.571-36.571zM914.286 804.571c20.198 0 36.571 16.374 36.571 36.571 0 18.755-14.118 34.213-32.306 36.325l-4.265 0.246h-182.857c-20.198 0-36.571-16.374-36.571-36.571 0-18.755 14.118-34.213 32.306-36.325l4.265-0.246h182.857zM438.857 402.286c18.755 0 34.213 14.118 36.325 32.306l0.246 4.265v36.571h438.857c20.198 0 36.571 16.374 36.571 36.571 0 18.755-14.118 34.213-32.306 36.325l-4.265 0.246h-438.857v36.571c0 20.198-16.374 36.571-36.571 36.571-18.755 0-34.213-14.118-36.325-32.306l-0.246-4.265v-146.286c0-20.198 16.374-36.571 36.571-36.571zM292.571 475.429c20.198 0 36.571 16.374 36.571 36.571 0 18.755-14.118 34.213-32.306 36.325l-4.265 0.246h-182.857c-20.198 0-36.571-16.374-36.571-36.571 0-18.755 14.118-34.213 32.306-36.325l4.265-0.246h182.857zM585.143 73.143c18.755 0 34.213 14.118 36.325 32.306l0.246 4.265v146.286c0 20.198-16.374 36.571-36.571 36.571-18.755 0-34.213-14.118-36.325-32.306l-0.246-4.265v-36.571h-438.857c-20.198 0-36.571-16.374-36.571-36.571 0-18.755 14.118-34.213 32.306-36.325l4.265-0.246h438.857v-36.571c0-20.198 16.374-36.571 36.571-36.571zM914.286 146.286c20.198 0 36.571 16.374 36.571 36.571 0 18.755-14.118 34.213-32.306 36.325l-4.265 0.246h-182.857c-20.198 0-36.571-16.374-36.571-36.571 0-18.755 14.118-34.213 32.306-36.325l4.265-0.246h182.857z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "controls"
+ ],
+ "defaultCode": 59795,
+ "grid": 14
+ },
+ {
+ "id": 16,
+ "paths": [
+ "M537.647 940.368l-0.893 0.844c-0.136 0.126-0.273 0.25-0.411 0.373l-0.421 0.369c-0.376 0.325-0.759 0.641-1.147 0.95-0.056 0.052-0.12 0.103-0.184 0.153l-0.676 0.51c-0.181 0.135-0.363 0.269-0.547 0.401-0.216 0.168-0.418 0.311-0.621 0.451l-0.531 0.344c-0.184 0.122-0.369 0.242-0.556 0.361-0.509 0.333-1.040 0.653-1.581 0.959-0.403 0.24-0.79 0.45-1.179 0.653l-0.433 0.203c-0.191 0.097-0.384 0.191-0.577 0.284-0.106 0.056-0.232 0.115-0.359 0.174l-0.832 0.374c-0.935 0.411-1.887 0.783-2.855 1.115l-0.282 0.093-0.773 0.251c-0.848 0.263-1.706 0.495-2.573 0.696l-0.777 0.169-1.534 0.289c-0.633 0.104-1.27 0.192-1.909 0.262-0.23 0.024-0.462 0.048-0.693 0.069l-1.097 0.084c-0.657 0.040-1.316 0.062-1.977 0.066-0.157-0.009-0.34-0.009-0.524-0.010-0.61 0.005-1.208-0.015-1.805-0.049-0.67-0.040-1.34-0.097-2.011-0.174-0.663-0.074-1.325-0.168-1.983-0.28-0.69-0.119-1.386-0.258-2.081-0.419-0.814-0.185-1.611-0.397-2.399-0.636-0.314-0.098-0.654-0.205-0.993-0.319l-0.354-0.118c-0.905-0.313-1.797-0.66-2.673-1.042l3.027 1.16c-1.504-0.501-2.954-1.091-4.346-1.761-0.174-0.088-0.366-0.183-0.558-0.28-0.147-0.055-0.29-0.129-0.433-0.203l-1.179-0.653c-0.515-0.292-1.020-0.595-1.516-0.91-0.267-0.178-0.539-0.355-0.808-0.536-0.4-0.254-0.808-0.541-1.212-0.838l-0.008-0.018-0.967-0.725c-0.077-0.060-0.153-0.121-0.229-0.181-0.341-0.279-0.687-0.564-1.027-0.857-1.331-1.147-2.598-2.408-3.789-3.782l2.759 2.864-0.77-0.733c-0.070-0.069-0.141-0.139-0.21-0.209-0.472-0.471-0.951-0.976-1.416-1.495l-0.363-0.427-475.429-548.571c-0.228-0.263-0.452-0.528-0.671-0.795l-0.56-0.704-0.451-0.58c-0.661-0.876-1.274-1.768-1.841-2.672l2.292 3.252c-1.023-1.316-1.942-2.679-2.759-4.081-5.431-9.112-6.224-19.464-3.467-28.701 0.225-0.741 0.467-1.477 0.732-2.205 0.188-0.506 0.383-1.005 0.589-1.499 0.296-0.728 0.623-1.451 0.974-2.164 0.223-0.434 0.45-0.873 0.685-1.308 0.333-0.626 0.687-1.233 1.059-1.831 2.597-4.204 6.040-7.914 10.18-10.802l327.564-254.73c5.136-3.994 11.219-6.528 17.611-7.382l4.842-0.322h292.571c6.506 0 12.864 1.735 18.433 4.985l4.019 2.718 327.349 254.582c4.33 2.974 7.91 6.842 10.575 11.249 0.158 0.254 0.308 0.508 0.456 0.764 0.498 0.879 0.968 1.781 1.4 2.701 0.178 0.36 0.338 0.716 0.492 1.074 0.423 0.993 0.815 2.019 1.161 3.060 0.086 0.27 0.167 0.528 0.246 0.787 2.881 9.31 2.134 19.801-3.339 29.046-0.183 0.25-0.345 0.521-0.512 0.791-1.001 1.645-2.173 3.233-3.502 4.766l1.669-2.074c-0.144 0.192-0.29 0.384-0.438 0.575l-0.631 0.66-0.6 0.839-475.727 548.926c-0.408 0.458-0.827 0.906-1.256 1.341l-0.435 0.435zM644.063 402.286h-264.229l132.133 396.325 132.096-396.325zM302.778 402.286h-186.152l302.486 349.038-116.334-349.038zM907.337 402.286h-186.145l-116.297 348.928 302.442-348.928zM383.382 146.286h-5.16l-235.114 182.857h161.902l78.373-182.857zM561.009 146.286h-98.048l-78.409 182.857h254.83l-78.373-182.857zM645.742 146.286h-5.153l78.373 182.857h161.865l-235.085-182.857z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "Assets",
+ "diamond"
+ ],
+ "defaultCode": 59822,
+ "grid": 14
+ },
+ {
+ "id": 17,
+ "paths": [
+ "M804.571 73.143c18.755 0 34.213 14.118 36.325 32.306l0.246 4.265v363.959l55.629-30.349c23.152-12.63 51.127 2.658 53.867 28.019l0.218 4.086v438.857c0 20.198-16.374 36.571-36.571 36.571v0h-804.571c-20.198 0-36.571-16.374-36.571-36.571v0-438.857c0-27.759 29.712-45.398 54.082-32.107v0l55.632 30.351v-363.959c0-18.755 14.118-34.213 32.306-36.325l4.265-0.246h585.143zM877.714 536.978l-348.147 189.984c-10.915 5.955-24.109 5.955-35.025 0.002v0l-348.257-189.949v340.699h731.429v-340.736zM768 146.286h-512v367.287l256.037 139.63 255.963-139.63v-367.287zM548.571 402.286c20.198 0 36.571 16.374 36.571 36.571 0 18.755-14.118 34.213-32.306 36.325l-4.265 0.246h-182.857c-20.198 0-36.571-16.374-36.571-36.571 0-18.755 14.118-34.213 32.306-36.325l4.265-0.246h182.857zM658.286 256c20.198 0 36.571 16.374 36.571 36.571 0 18.755-14.118 34.213-32.306 36.325l-4.265 0.246h-292.571c-20.198 0-36.571-16.374-36.571-36.571 0-18.755 14.118-34.213 32.306-36.325l4.265-0.246h292.571z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "feedback"
+ ],
+ "defaultCode": 59793,
+ "grid": 14
+ },
+ {
+ "id": 18,
+ "paths": [
+ "M731.429 658.286c20.198 0 36.571 16.374 36.571 36.571v0 219.429c0 20.198-16.374 36.571-36.571 36.571v0h-621.714c-20.198 0-36.571-16.374-36.571-36.571v0-219.429c0-20.198 16.374-36.571 36.571-36.571v0zM694.857 731.429h-548.571v146.286h548.571v-146.286zM532.113 613.321c-11.192 11.192-29.337 11.192-40.528 0l-64.759-64.749h-317.111c-18.755 0-34.213-14.118-36.325-32.306l-0.246-4.265v-292.571c0-18.755 14.118-34.213 32.306-36.325l4.265-0.246h146.168v73.143h-109.597v219.429h280.503l64.796-64.749c11.192-11.192 29.337-11.192 40.528 0l64.77 64.749h317.403c18.755 0 34.213 14.118 36.325 32.306l0.246 4.265v292.571c0 18.755-14.118 34.213-32.306 36.325l-4.265 0.246h-146.168v-73.143h109.596v-219.429h-280.869l-64.733 64.749zM914.286 73.143c20.198 0 36.571 16.374 36.571 36.571v0 219.429c0 20.198-16.374 36.571-36.571 36.571v0h-621.714c-20.198 0-36.571-16.374-36.571-36.571v0-219.429c0-20.198 16.374-36.571 36.571-36.571v0zM877.714 146.286h-548.571v146.286h548.571v-146.286z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "flow"
+ ],
+ "defaultCode": 59796,
+ "grid": 14
+ },
+ {
+ "id": 19,
+ "paths": [
+ "M987.429 73.143c20.198 0 36.571 16.374 36.571 36.571v0 621.714c0 20.198-16.374 36.571-36.571 36.571v0h-438.857v109.714h182.857c20.198 0 36.571 16.374 36.571 36.571 0 18.755-14.118 34.213-32.306 36.325l-4.265 0.246h-438.857c-20.198 0-36.571-16.374-36.571-36.571 0-18.755 14.118-34.213 32.306-36.325l4.265-0.246h182.857v-109.714h-438.857c-18.755 0-34.213-14.118-36.325-32.306l-0.246-4.265v-621.714c0-20.198 16.374-36.571 36.571-36.571v0zM950.857 146.286h-877.714v548.571h877.714v-548.571zM371.539 256c25.478 0.299 46.966 6.499 64.28 18.684 13.51 9.47 24.101 20.093 31.446 31.421l4.895 8.621c5.795 8.471 9.696 19.32 11.811 32.579l1.226 11.678 0.869 16.083 0.647 32.453-0.129 37.691-0.519 20.338-0.872 16.075-1.23 11.849c-1.575 10.099-4.161 18.81-7.587 25.741l-3.699 6.324c-7.657 15.473-20.009 28.988-36.847 40.492-17.301 12.175-38.757 18.517-64.538 19.114-25.184-0.598-46.442-6.946-63.455-19.026-17.187-11.542-29.813-25.032-37.858-40.685l-6.266-13.921c-1.854-4.888-3.356-10.864-4.539-17.96l-0.761-5.396-1.211-13.967-0.802-18.23-0.398-22.527 0.148-37.81 0.599-20.589c0.134-3.062 0.285-5.939 0.453-8.633l1.221-13.978c0.239-1.966 0.495-3.752 0.77-5.358 2.37-13 6.057-23.673 10.889-31.554 7.931-15.422 20.531-29.036 37.605-40.799 14.324-10.168 31.496-16.173 51.411-18.066l12.442-0.642zM649.961 258.547c3.089 0 5.846 1.941 6.887 4.85l110.72 309.421c1.361 3.803-0.619 7.99-4.422 9.351-0.791 0.283-1.624 0.428-2.464 0.428h-47.802c-3.116 0-5.889-1.974-6.91-4.917l-22.307-64.308h-104.937l-21.72 64.253c-1.005 2.972-3.792 4.972-6.929 4.972h-48.473c-4.040 0-7.314-3.275-7.314-7.314 0-0.839 0.144-1.672 0.427-2.462l110.62-309.421c1.040-2.91 3.797-4.852 6.887-4.852h37.738zM371.339 317.421l-6.755 0.512c-6.765 0.822-12.661 2.581-17.695 5.241-7.037 3.779-12.628 8.43-17.207 14.4-5.030 5.61-8.413 12.938-10.14 22.25-0.897 4.463-1.61 10.756-2.132 18.849l-0.787 18.576-0.265 23.323 0.266 23.281 0.791 18.493c0.526 8.044 1.245 14.281 2.154 18.692 1.711 9.48 5.098 16.938 10.479 22.974 4.173 5.475 9.7 9.95 17.139 13.702 6.617 3.979 14.666 6.002 24.27 6.002 9.774 0 18.066-2.038 25.278-6.216 6.662-3.461 11.9-7.894 16.289-13.93 5.057-5.64 8.594-13.165 10.546-22.621 0.561-2.9 1.045-6.625 1.451-11.165l0.979-16.061c0.123-3.082 0.226-6.365 0.309-9.849l0.249-23.301-0.248-23.342-0.734-18.573c-0.162-2.694-0.344-5.186-0.544-7.475l-1.434-11.282c-1.964-9.27-5.499-16.667-11.059-22.932-3.94-5.483-9.242-10.094-15.755-13.724-4.707-2.401-10.045-4.072-16.033-4.996l-9.409-0.827zM631.265 351.011l-34.41 106.21h68.892l-34.481-106.21z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "oa"
+ ],
+ "defaultCode": 59809,
+ "grid": 14
+ },
+ {
+ "id": 20,
+ "paths": [
+ "M36.571 0v1024",
+ "M73.143 0v1024",
+ "M109.714 0v1024",
+ "M146.286 0v1024",
+ "M182.857 0v1024",
+ "M219.429 0v1024",
+ "M256 0v1024",
+ "M292.571 0v1024",
+ "M329.143 0v1024",
+ "M365.714 0v1024",
+ "M402.286 0v1024",
+ "M438.857 0v1024",
+ "M475.429 0v1024",
+ "M512 0v1024",
+ "M548.571 0v1024",
+ "M585.143 0v1024",
+ "M621.714 0v1024",
+ "M658.286 0v1024",
+ "M694.857 0v1024",
+ "M731.429 0v1024",
+ "M768 0v1024",
+ "M804.571 0v1024",
+ "M841.143 0v1024",
+ "M877.714 0v1024",
+ "M914.286 0v1024",
+ "M950.857 0v1024",
+ "M987.429 0v1024",
+ "M0 36.571h1024",
+ "M0 73.143h1024",
+ "M0 109.714h1024",
+ "M0 146.286h1024",
+ "M0 182.857h1024",
+ "M0 219.429h1024",
+ "M0 256h1024",
+ "M0 292.571h1024",
+ "M0 329.143h1024",
+ "M0 365.714h1024",
+ "M0 402.286h1024",
+ "M0 438.857h1024",
+ "M0 475.429h1024",
+ "M0 512h1024",
+ "M0 548.571h1024",
+ "M0 585.143h1024",
+ "M0 621.714h1024",
+ "M0 658.286h1024",
+ "M0 694.857h1024",
+ "M0 731.429h1024",
+ "M0 768h1024",
+ "M0 804.571h1024",
+ "M0 841.143h1024",
+ "M0 877.714h1024",
+ "M0 914.286h1024",
+ "M0 950.857h1024",
+ "M0 987.429h1024",
+ "M512 0c282.624 0 512 229.376 512 512s-229.376 512-512 512c-282.624 0-512-229.376-512-512s229.376-512 512-512zM512 73.143c-242.466 0-438.857 196.386-438.857 438.857s196.386 438.857 438.857 438.857c242.466 0 438.857-196.386 438.857-438.857s-196.386-438.857-438.857-438.857zM512 438.857c40.472 0 73.143 32.67 73.143 73.143s-32.67 73.143-73.143 73.143c-40.472 0-73.143-32.67-73.143-73.143s32.67-73.143 73.143-73.143zM294.857 438.857c40.472 0 73.143 32.67 73.143 73.143s-32.67 73.143-73.143 73.143c-40.472 0-73.143-32.67-73.143-73.143s32.67-73.143 73.143-73.143zM729.143 438.857c40.472 0 73.143 32.67 73.143 73.143s-32.67 73.143-73.143 73.143c-40.472 0-73.143-32.67-73.143-73.143s32.67-73.143 73.143-73.143z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "more-circle"
+ ],
+ "defaultCode": 59784,
+ "grid": 14
+ }
+ ],
+ "colorThemes": [],
+ "colorThemeIdx": 0
+ },
+ {
+ "selection": [
+ {
+ "order": 24,
+ "id": 0,
+ "name": "controls",
+ "prevSize": 18,
+ "code": 59797,
+ "tempChar": ""
+ },
+ {
+ "order": 25,
+ "id": 1,
+ "name": "account",
+ "prevSize": 18,
+ "code": 59794,
+ "tempChar": ""
+ },
+ {
+ "order": 26,
+ "id": 2,
+ "name": "about, info",
+ "prevSize": 18,
+ "code": 59798,
+ "tempChar": "",
+ "codes": [
+ 59797,
+ 59980,
+ 59981,
+ 59982,
+ 59983,
+ 59984,
+ 59985,
+ 59986,
+ 59987,
+ 59988,
+ 59989,
+ 59990,
+ 59991,
+ 59992,
+ 59993,
+ 59994,
+ 59995,
+ 59996,
+ 59997,
+ 59998,
+ 59999,
+ 60000,
+ 60001,
+ 60002,
+ 60003,
+ 60004,
+ 60005,
+ 60006,
+ 60007,
+ 60008,
+ 60009,
+ 60010,
+ 60011,
+ 60012,
+ 60013,
+ 60014,
+ 60015,
+ 60016,
+ 60017,
+ 60018,
+ 60019,
+ 60020,
+ 60021,
+ 60022,
+ 60023,
+ 60024,
+ 60025,
+ 60026,
+ 60027,
+ 60028,
+ 60029,
+ 60030,
+ 60031,
+ 60032,
+ 60033
+ ]
+ },
+ {
+ "order": 27,
+ "id": 3,
+ "name": "cog-outline, backend",
+ "prevSize": 18,
+ "code": 59799,
+ "tempChar": ""
+ },
+ {
+ "order": 28,
+ "id": 4,
+ "name": "exit",
+ "prevSize": 18,
+ "code": 59802,
+ "tempChar": ""
+ },
+ {
+ "order": 29,
+ "id": 5,
+ "name": "theme",
+ "prevSize": 18,
+ "code": 59808,
+ "tempChar": ""
+ },
+ {
+ "name": "globe, lang",
+ "id": 6,
+ "order": 30,
+ "prevSize": 18,
+ "code": 61612,
+ "tempChar": ""
+ },
+ {
+ "order": 31,
+ "id": 7,
+ "name": "help",
+ "prevSize": 18,
+ "code": 59752,
+ "tempChar": ""
+ }
+ ],
+ "id": 10,
+ "metadata": {
+ "name": "个人菜单"
+ },
+ "height": 1024,
+ "prevSize": 28,
+ "icons": [
+ {
+ "id": 0,
+ "paths": [
+ "M574.844 678.514c17.682 0 32.387 12.187 35.437 28.259l0.58 6.192v160.772c0 19.028-16.125 34.452-36.017 34.452-17.682 0-32.387-12.187-35.437-28.259l-0.58-6.192-0.029-45.506-423.236 0.054c-19.755 0-35.768-15.532-35.768-34.693 0-17.031 12.653-31.195 29.34-34.133l6.43-0.558 423.236-0.038 0.029-45.896c0-19.028 16.125-34.452 36.017-34.452zM866.709 758.901c19.755 0 35.768 15.532 35.768 34.693 0 17.031-12.653 31.195-29.34 34.133l-6.43 0.558h-125.191c-19.755 0-35.768-15.532-35.768-34.693 0-17.031 12.653-31.195 29.34-34.133l6.43-0.558h125.191zM449.653 397.161c17.682 0 32.387 12.187 35.437 28.259l0.58 6.192-0.035 45.882 422.804 0.053c19.755 0 35.768 15.532 35.768 34.693 0 17.031-12.653 31.195-29.34 34.133l-6.43 0.558-422.804-0.069 0.035 45.522c0 19.028-16.125 34.452-36.017 34.452-17.682 0-32.387-12.187-35.437-28.259l-0.58-6.192v-160.772c0-19.028 16.125-34.452 36.017-34.452zM282.482 477.548c19.755 0 35.768 15.532 35.768 34.693 0 17.031-12.653 31.195-29.34 34.133l-6.43 0.558h-166.922c-19.755 0-35.768-15.532-35.768-34.693 0-17.031 12.653-31.195 29.34-34.133l6.43-0.558h166.922zM574.844 115.809c17.682 0 32.387 12.187 35.437 28.259l0.58 6.192v160.772c0 19.028-16.125 34.452-36.017 34.452-17.682 0-32.387-12.187-35.437-28.259l-0.58-6.192-0.029-45.464-423.236 0.011c-19.755 0-35.768-15.532-35.768-34.693 0-17.031 12.653-31.195 29.34-34.133l6.43-0.558 423.236-0.068 0.029-45.867c0-19.028 16.125-34.452 36.017-34.452zM866.709 196.196c19.755 0 35.768 15.532 35.768 34.693 0 17.031-12.653 31.195-29.34 34.133l-6.43 0.558h-125.191c-19.755 0-35.768-15.532-35.768-34.693 0-17.031 12.653-31.195 29.34-34.133l6.43-0.558h125.191z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "controls"
+ ],
+ "defaultCode": 59795,
+ "grid": 14
+ },
+ {
+ "id": 1,
+ "paths": [
+ "M869.899 876.879v0c-125.27 122.901-304.776 173.043-475.603 132.854v0c-183.049-53.789-326.315-196.759-380.481-379.696v0c-64.959-275.074 105.374-550.724 380.448-615.682 77.563-18.317 158.332-18.265 235.871 0.15v0c183.202 53.529 326.573 196.605 380.481 379.696v0c40.648 174.427-12.701 357.422-140.716 482.678v0zM512.215 949.988v0c100.145 0.606 197.394-33.569 275.142-96.693v0c-50.745-151.957-215.067-234.006-367.024-183.26-86.496 28.885-154.376 96.763-183.26 183.26v0c77.908 62.837 175.053 96.976 275.142 96.693v0zM417.88 85.256v0c-236.026 52.66-384.672 286.685-332.012 522.711 15.767 70.668 48.812 136.322 96.177 191.087v0c84.791-183.217 302.053-263.007 485.27-178.215 78.653 36.4 141.816 99.562 178.215 178.215v0c159.45-181.815 141.321-458.465-40.494-617.915-105.873-92.851-249.941-129.115-387.156-97.455l0.001 1.571zM557.809 542.777v0c-97.503 25.276-197.035-33.275-222.311-130.776-7.726-29.804-7.782-61.079-0.161-90.909v0c15.984-64.906 66.473-115.698 131.281-132.068v0c98.074-24.794 197.679 34.612 222.472 132.687 7.448 29.465 7.448 60.32 0 89.785v0c-15.92 64.782-66.501 115.362-131.281 131.281v-0.001zM512.214 256.63v0c-60.781-0.432-110.405 48.49-110.837 109.271s48.49 110.405 109.271 110.837c60.781 0.432 110.405-48.49 110.837-109.271 0.003-0.522 0.003-1.045 0-1.566v0c0-60.349-48.922-109.273-109.271-109.273 0 0 0 0 0 0v0.003z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "account"
+ ],
+ "defaultCode": 59794,
+ "grid": 14
+ },
+ {
+ "id": 2,
+ "paths": [
+ "M36.571 0v1024",
+ "M73.143 0v1024",
+ "M109.714 0v1024",
+ "M146.286 0v1024",
+ "M182.857 0v1024",
+ "M219.429 0v1024",
+ "M256 0v1024",
+ "M292.571 0v1024",
+ "M329.143 0v1024",
+ "M365.714 0v1024",
+ "M402.286 0v1024",
+ "M438.857 0v1024",
+ "M475.429 0v1024",
+ "M512 0v1024",
+ "M548.571 0v1024",
+ "M585.143 0v1024",
+ "M621.714 0v1024",
+ "M658.286 0v1024",
+ "M694.857 0v1024",
+ "M731.429 0v1024",
+ "M768 0v1024",
+ "M804.571 0v1024",
+ "M841.143 0v1024",
+ "M877.714 0v1024",
+ "M914.286 0v1024",
+ "M950.857 0v1024",
+ "M987.429 0v1024",
+ "M0 36.571h1024",
+ "M0 73.143h1024",
+ "M0 109.714h1024",
+ "M0 146.286h1024",
+ "M0 182.857h1024",
+ "M0 219.429h1024",
+ "M0 256h1024",
+ "M0 292.571h1024",
+ "M0 329.143h1024",
+ "M0 365.714h1024",
+ "M0 402.286h1024",
+ "M0 438.857h1024",
+ "M0 475.429h1024",
+ "M0 512h1024",
+ "M0 548.571h1024",
+ "M0 585.143h1024",
+ "M0 621.714h1024",
+ "M0 658.286h1024",
+ "M0 694.857h1024",
+ "M0 731.429h1024",
+ "M0 768h1024",
+ "M0 804.571h1024",
+ "M0 841.143h1024",
+ "M0 877.714h1024",
+ "M0 914.286h1024",
+ "M0 950.857h1024",
+ "M0 987.429h1024",
+ "M512 0c-282.77 0-512 229.232-512 512s229.232 512 512 512c282.77 0 512-229.232 512-512s-229.232-512-512-512zM512 950.857c-242.375 0-438.857-196.482-438.857-438.857s196.482-438.857 438.857-438.857c242.375 0 438.857 196.484 438.857 438.857s-196.482 438.857-438.857 438.857zM455.104 297.653v-0.009c0 31.422 25.472 56.896 56.896 56.896 31.417 0 56.887-25.465 56.896-56.88v0.009c0-31.422-25.472-56.896-56.896-56.896-31.415 0-56.887 25.465-56.896 56.88zM512 422.402c-25.89 0.064-46.864 21.038-46.928 46.928v276.491c0 25.824 21.104 46.928 46.928 46.928 25.89-0.064 46.864-21.038 46.928-46.928v-276.491c-0.064-25.89-21.035-46.864-46.926-46.928h-0.002z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "about"
+ ],
+ "defaultCode": 59797,
+ "grid": 14
+ },
+ {
+ "id": 3,
+ "paths": [
+ "M512.001 345.264h-0c92.086 0 166.737 74.651 166.737 166.737s-74.651 166.737-166.737 166.737h-0c-92.086 0-166.737-74.651-166.737-166.737s74.651-166.737 166.737-166.737h0zM512.001 419.369h-0c-51.159 0-92.632 41.473-92.632 92.632s41.473 92.632 92.632 92.632h-0c51.159 0 92.632-41.473 92.632-92.632s-41.473-92.632-92.632-92.632h0zM536.696 11.79h0c44.939 0.075 81.928 35.37 84.11 80.256l0.093 3.946v3.242c0.185 10.931 6.855 20.583 16.785 24.696l2.353 0.852c18.897 6.299 37.294 13.95 55.060 22.899 9.634 5.113 21.305 3.946 29.716-2.76l2.038-1.779 2.297-2.297c31.729-31.641 82.661-32.951 115.975-2.983l3.149 2.964 34.885 34.922c31.684 31.661 33.035 82.585 3.075 115.882l-3.075 3.224-2.297 2.316c-8.25 8.468-10.084 21.295-4.539 31.736l0 0c7.148 14.225 13.476 28.848 18.952 43.796l3.946 11.264c3.224 10.43 12.357 17.822 23.047 18.989l2.501 0.148h3.242c44.939 0.075 81.928 35.37 84.11 80.256l0.093 3.946v49.389c-0.074 44.939-35.368 81.929-80.254 84.111l-3.946 0.093h-3.242c-10.931 0.185-20.583 6.855-24.696 16.785l-0.852 2.353c-6.309 18.876-13.962 37.277-22.899 55.060-5.113 9.634-3.946 21.305 2.76 29.716l1.779 2.038 2.297 2.297c31.684 31.661 33.035 82.585 3.075 115.882l-3.075 3.224-34.904 34.904c-31.661 31.684-82.585 33.035-115.882 3.075l-3.224-3.075-2.316-2.297c-7.778-7.511-19.252-9.733-29.272-5.669l-2.464 1.13c-14.228 7.17-28.883 13.506-43.833 18.952l-11.301 3.946c-10.393 3.261-17.785 12.376-18.915 23.047l-0.148 2.501v3.242l0-0.002c-0.074 44.939-35.368 81.929-80.254 84.111l-3.946 0.093h-49.391c-44.939-0.075-81.928-35.37-84.11-80.256l-0.093-3.946v-3.242l-0-0c-0.176-10.84-6.77-20.542-16.785-24.696l-2.353-0.852c-18.876-6.309-37.277-13.962-55.060-22.899h0c-9.572-5.077-21.243-3.993-29.716 2.76l-2.038 1.779-2.297 2.297c-31.661 31.684-82.585 33.035-115.882 3.075l-3.224-3.075-34.904-34.904c-31.684-31.661-33.035-82.585-3.075-115.882l3.075-3.224 2.297-2.316c8.244-8.467 10.078-21.305 4.539-31.736l0 0c-7.148-14.225-13.476-28.848-18.952-43.796l-3.946-11.264c-3.214-10.356-12.268-17.816-23.047-18.989l-2.501-0.148h-3.242c-44.939-0.075-81.928-35.37-84.11-80.256l-0.096-3.946v-49.389c0.074-44.939 35.368-81.929 80.254-84.111l3.946-0.093h3.242c10.931-0.185 20.583-6.855 24.696-16.785l0.852-2.353c6.309-18.876 13.962-37.277 22.899-55.060 5.113-9.634 3.946-21.305-2.76-29.716l-1.779-2.038-2.297-2.297c-31.684-31.661-33.035-82.585-3.075-115.882l3.075-3.224 34.904-34.904c31.729-31.641 82.661-32.951 115.975-2.983l3.149 2.964 2.297 2.316c8.467 8.244 21.305 10.078 31.736 4.539l0-0c14.215-7.156 28.832-13.484 43.778-18.952l11.283-3.946c10.356-3.214 17.816-12.268 18.989-23.047l0.148-2.501v-3.242l-0 0.002c0.074-44.939 35.368-81.929 80.254-84.111l3.95-0.093h49.391zM487.435 85.895c-5.076 0-9.282 3.705-10.078 8.485l-0.148 1.612v4.446c-0.704 43.778-29.457 82.164-69.807 94.67-15.507 5.15-30.606 11.431-43.722 18.008-37.553 19.953-83.369 14.265-115.53-14.413l-3.39-3.149-2.223-2.223c-3.478-3.476-8.933-3.996-13.005-1.241l-1.389 1.149-34.922 34.922c-3.512 3.515-3.944 9.063-1.019 13.080l1.037 1.223 3.001 3.001c30.717 31.55 37.534 79.311 17.656 116.716-7.336 14.617-13.635 29.735-18.341 43.722-12.524 40.443-48.817 68.677-91.835 71.141l-4.483 0.185h-3.112c-5.076 0-9.3 3.705-10.097 8.467l-0.13 1.612v49.262c0 5.076 3.705 9.282 8.485 10.078l1.612 0.148h4.446c42.314 0.685 79.589 27.586 93.299 65.768l1.334 4.002c5.187 15.525 11.486 30.643 18.045 43.778 19.953 37.534 14.265 83.369-14.413 115.512l-3.149 3.39-2.334 2.316c-3.512 3.515-3.944 9.063-1.019 13.080l1.037 1.223 34.922 34.922c3.515 3.512 9.063 3.944 13.080 1.019l1.223-1.037 3.001-3.001c31.55-30.717 79.311-37.534 116.716-17.656 14.617 7.336 29.735 13.635 43.722 18.341 40.443 12.524 68.677 48.817 71.141 91.835l0.185 4.483v3.112c0 5.076 3.705 9.3 8.467 10.097l1.612 0.13h49.262c5.076 0 9.282-3.705 10.078-8.485l0.148-1.612v-4.372c0.667-43.722 29.309-82.072 69.826-94.744l-0 0c15.068-4.998 29.759-11.066 43.963-18.156 37.423-19.693 82.998-14.043 115.252 14.562l3.409 3.149 2.316 2.334c3.515 3.512 9.063 3.944 13.080 1.019l1.223-1.037 34.922-34.922c3.512-3.515 3.944-9.063 1.019-13.080l-1.037-1.223-3.001-3.001c-30.717-31.55-37.534-79.311-17.656-116.716 7.336-14.617 13.635-29.735 18.341-43.722 12.524-40.443 48.817-68.677 91.835-71.141l4.483-0.185h3.112c5.076 0 9.3-3.705 10.097-8.467l0.13-1.612v-49.262c0-5.076-3.705-9.282-8.485-10.078l-1.612-0.148h-4.446c-42.314-0.685-79.589-27.586-93.299-65.768l-1.334-4.002c-5.187-15.525-11.486-30.643-18.045-43.778-19.953-37.534-14.265-83.369 14.413-115.512l3.149-3.39 2.334-2.316c3.512-3.515 3.944-9.063 1.019-13.080l-1.037-1.223-34.83-34.83c-3.483-3.47-8.937-3.983-13.005-1.223l-1.389 1.149-3.001 3.001c-31.55 30.717-79.311 37.534-116.753 17.637v0c-14.114-7.12-28.712-13.236-43.685-18.304-40.443-12.542-68.677-48.835-71.141-91.854l-0.185-4.483v-3.112c0-5.076-3.705-9.3-8.467-10.097l-1.612-0.13h-49.262z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "cog-outline"
+ ],
+ "defaultCode": 59798,
+ "grid": 14
+ },
+ {
+ "id": 4,
+ "paths": [
+ "M1024 519.315c0 0 0 0 0 0 0-4.876 0-9.752-2.438-12.191 0 0 0 0 0 0-2.438-4.876-4.876-9.752-7.314-12.191l-190.171-190.171c-14.629-14.629-36.571-14.629-51.2 0s-14.629 36.571 0 51.2l126.781 126.781h-521.752c-19.505 0-36.571 17.067-36.571 36.571s17.067 36.571 36.571 36.571h526.628l-131.658 131.658c-14.629 14.629-14.629 36.571 0 51.2s36.571 14.629 51.2 0l190.171-190.171c7.314-7.314 9.752-17.067 9.752-26.819 0 0 0-2.438 0-2.438v-0.001zM658.286 950.858h-463.239c-41.448 0-73.143-31.695-73.143-73.143v-731.429c0-41.448 31.695-73.143 73.143-73.143h499.81c19.505 0 36.571-17.067 36.571-36.571v0c0-19.505-17.066-36.571-36.571-36.571h-499.81c-80.457 0-146.286 65.829-146.286 146.286v731.429c0 80.457 65.829 146.285 146.286 146.285h499.81c19.505 0 36.571-17.066 36.571-36.571v0c0-19.505-17.066-36.571-36.571-36.571l-36.571 0.001z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "exit"
+ ],
+ "defaultCode": 59802,
+ "grid": 14
+ },
+ {
+ "id": 5,
+ "paths": [
+ "M1023.063 328.985l-0.125-0.574c-0.1-0.674-0.1-2.497-0.1-3.496v-1.374l-1.948-8.517-0.25-0.699c-6.618-18.731-18.282-30.32-26.773-38.712l-6.169-6.169c-6.565-7.191-13.483-14.050-20.729-20.554-5.944-5.444-11.539-10.565-17.258-16.583l-0.25-0.25-152.671-148.001c-7.892-7.967-16.933-16.933-30.22-23.751-14.411-7.742-32.268-9.316-54.695-9.316-1.249 0-4.595 0-9.166-0.125-9.965-0.1-24.95-0.324-37.088-0.324-14.186 0-18.082 0.225-20.029 0.549v0c-6.115 1.251-12.125 2.962-17.982 5.12l-1.349 0.449-19.355 12.837-0.225 0.125c-8.816 6.493-14.635 14.311-18.88 20.105l-0.449 0.574-0.125 0.225c-1.255 1.838-2.632 3.591-4.121 5.245-15.435 12.238-26.099 15.66-56.069 21.903l-0.35 0.125-0.35 0.1c-4.92 1.374-8.816 1.499-10.514 1.599l-18.332-0.9c-15.784-2.972-27.572-5.694-37.537-9.99l-0.324-0.125c-8.716-3.422-17.407-9.665-20.28-13.411l-1.499-1.923c-6.496-9.239-14.275-17.505-23.102-24.55-7.543-6.144-22.977-14.436-32.618-16.359-7.217-1.499-18.656-2.272-34.665-2.272-25.974 0-54.844 1.923-56.094 2.048l-1.024 0.1-25.875 6.368-0.799 0.35c-17.282 6.818-29.196 18.631-37.088 26.473l-159.89 155.842c-4.695 4.121-8.816 8.191-12.812 12.187-3.422 3.397-6.743 6.694-11.439 10.889-13.986 11.938-35.015 29.995-41.459 63.411-3.646 18.855 3.696 35.54 7.693 44.531l0.25 0.449c7.193 16.009 18.282 26.224 26.299 33.717l1.499 1.374 0.574 0.474c1.249 0.9 2.972 2.598 4.246 3.846l5.819 5.794c5.719 6.243 11.888 11.814 17.858 17.282l19.806 19.656 36.489 34.765 10.415 10.34c0.699 0.674 1.374 1.474 2.198 2.148 4.096 4.096 9.141 9.215 15.884 13.986l0.25 0.225c14.985 9.99 33.641 15.784 51.149 15.784 7.793 0 15.11-1.024 21.853-3.172v349.648c0 13.062-0.1 27.722 5.394 41.708 7.443 19.081 22.877 33.516 33.867 40.11 18.082 11.689 40.184 13.286 61.464 13.286h339.010l30.57 0.449c25.274 0 54.121-1.374 76.774-18.282 14.534-11.039 25.774-29.096 29.995-48.301l0.125-0.549 0.674-5.694v-0.574c0.474-30.768 0.474-60.54 0.474-91.908v-280.593c13.077 4.060 26.964 4.765 40.385 2.048 31.244-5.794 51.174-28.522 63.062-42.257l96.028-92.357 2.647-3.297 0.999-1.499c6.993-9.066 23.027-30.42 18.457-61.213l-0.125-0.574zM851.609 440.321l-0.9 1.024c-6.643 7.268-15.584 17.258-21.653 18.407v0c-0.976 0.221-1.972 0.339-2.972 0.35-4.795 0-8.916-3.297-19.231-12.962l-33.192-31.718-44.056 30.12v363.084c0 14.885-0.125 29.97-0.25 44.656-0.1 13.737-0.199 27.822-0.199 41.682v0c-0.775 1.515-1.74 2.925-2.872 4.195-4.92 3.422-24.6 3.871-32.842 3.871l-349.774-0.449-19.455 0.449c-16.808 0-21.504-1.499-22.652-2.048v0c-2.031-1.538-3.773-3.424-5.145-5.569-0.699-3.496-0.699-13.411-0.699-18.98v-431.566l-48.752-28.397-6.643 7.492c-6.032 6.844-12.176 13.589-18.432 20.23l-0.225 0.225c-7.092 7.367-12.937 13.286-19.455 15.784h-0.449c-3.398-0.275-6.687-1.326-9.616-3.072l-0.449-0.324-0.474-0.25c-1.917-1.347-3.648-2.943-5.145-4.745v0c-0.753-0.738-1.478-1.504-2.173-2.298l-47.852-45.878c-6.669-6.171-13.117-12.578-19.331-19.206l-0.799-0.799-2.647-1.923c-3.547-2.847-6.743-6.144-10.065-9.54-1.149-1.249-2.397-2.497-3.646-3.646l-6.543-6.918-0.1-0.125c-2.647-2.622-4.92-4.895-7.793-7.143-6.169-5.245-8.342-7.742-9.741-10.69v0c-0.367-1.244-0.818-2.462-1.349-3.646v0c-0.24-0.47-0.433-0.964-0.574-1.474 1.599-6.243 5.719-10.44 18.531-21.803l0.25-0.25 13.237-13.161c1.499-1.499 3.122-2.947 4.82-4.545 1.948-1.823 3.896-3.621 6.069-5.794l132.867-128.946 29.321-28.622c9.041-9.54 10.739-10.34 15.235-10.565l13.737-1.024h57.766l0.924 0.324c1.024 0.35 1.823 0.574 2.298 0.924l0.799 0.324 0.799 0.25c0.629 0.25 1.281 0.434 1.948 0.549 2.847 2.747 5.719 6.019 9.141 10.565l1.499 1.948 0.25 0.225c16.109 20.23 41.757 32.143 49.2 35.314l0.225 0.125c15.459 6.243 31.817 10.565 54.945 14.534l0.449 0.125 16.583 1.474c3.322 0.574 6.868 0.799 10.764 0.799 7.318 0 15.81-0.924 26.099-2.947 36.738-7.043 59.291-14.436 87.663-36.588 7.668-5.919 12.712-12.263 16.958-18.182 1.499-1.599 2.747-3.172 3.871-4.545 0.125-0.25 0.35-0.449 0.574-0.674l6.868-3.871c1.149-0.225 2.647-0.449 4.47-0.9h17.157c2.647 0 5.394-0.125 8.017-0.25 2.747-0.1 5.62-0.225 8.492-0.225h0.9c5.495-0.449 11.089-0.449 16.933-0.449 13.862 0 19.48 0.924 21.179 1.249 3.896 2.272 9.391 7.742 14.186 12.487l150.274 145.204c6.069 6.493 12.587 12.487 20.029 19.331 5.045 4.521 11.913 10.789 17.282 16.583l0.25 0.225 6.844 6.818 0.25 0.1c4.346 3.996 6.844 6.719 8.566 9.215l0.699 4.646v0.25c0.1 0.449 0.324 1.573-3.797 7.143l-94.081 90.659-3.198 3.747z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "theme"
+ ],
+ "defaultCode": 59808,
+ "grid": 14
+ },
+ {
+ "id": 6,
+ "paths": [
+ "M512 1024c-282.32 0-511.929-229.609-511.929-511.929s229.609-511.929 511.929-511.929c282.32 0 511.929 229.752 511.929 511.929 0.143 282.176-229.609 511.929-511.929 511.929zM512 54.286c-252.383 0-457.786 205.401-457.786 457.786s205.401 457.786 457.786 457.786c252.383 0 457.786-205.401 457.786-457.786 0.143-252.527-205.259-457.786-457.786-457.786zM512 1024c-84.223 0-162.288-55.289-219.582-155.555-54.716-95.539-84.796-222.161-84.796-356.373s30.080-260.691 84.796-356.373c57.438-100.409 135.359-155.699 219.582-155.699s162.144 55.289 219.582 155.699c54.716 95.682 84.796 222.161 84.796 356.373s-30.080 260.691-84.796 356.373c-57.295 100.266-135.359 155.555-219.582 155.555zM512 54.286c-63.884 0-125.189 45.549-172.601 128.34-50.133 87.518-77.634 204.542-77.634 329.444s27.645 241.927 77.634 329.444c47.412 82.791 108.717 128.34 172.601 128.34s125.189-45.549 172.601-128.34c50.133-87.518 77.634-204.542 77.634-329.444s-27.645-241.927-77.634-329.444c-47.268-82.791-108.573-128.34-172.601-128.34zM484.928 27.071h54.143v969.714h-54.143v-969.714zM27.143 484.857h969.714v54.143h-969.714v-54.143z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "globe",
+ "lang"
+ ],
+ "defaultCode": 61612,
+ "grid": 14
+ },
+ {
+ "id": 7,
+ "paths": [
+ "M466.488 785.066h91.022v-91.022h-91.022v91.022zM512 56.888c-251.222 0-455.112 203.89-455.112 455.112s203.89 455.112 455.112 455.112c251.222 0 455.112-203.89 455.112-455.112s-203.89-455.112-455.112-455.112zM512 876.088c-200.704 0-364.088-163.384-364.088-364.088s163.384-364.088 364.088-364.088c200.704 0 364.088 163.384 364.088 364.088s-163.384 364.088-364.088 364.088zM512 238.934c-100.58 0-182.044 81.464-182.044 182.044h91.022c0-50.062 40.96-91.022 91.022-91.022s91.022 40.96 91.022 91.022c0 91.022-136.534 79.644-136.534 227.555h91.022c0-102.4 136.534-113.778 136.534-227.555 0-100.58-81.464-182.044-182.044-182.044z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "help"
+ ],
+ "defaultCode": 59752,
+ "grid": 18
+ }
+ ],
+ "colorThemes": [],
+ "colorThemeIdx": 0
+ },
+ {
+ "selection": [
+ {
+ "order": 2,
+ "id": 0,
+ "name": "seal",
+ "prevSize": 18,
+ "code": 59896,
+ "tempChar": ""
+ },
+ {
+ "order": 401,
+ "id": 1,
+ "name": "menu-arrow-left",
+ "prevSize": 18,
+ "code": 59888,
+ "tempChar": ""
+ },
+ {
+ "order": 400,
+ "id": 2,
+ "name": "menu-arrow-right",
+ "prevSize": 18,
+ "code": 59889,
+ "tempChar": ""
+ },
+ {
+ "order": 398,
+ "id": 3,
+ "name": "add-directory",
+ "prevSize": 18,
+ "code": 59887,
+ "tempChar": ""
+ },
+ {
+ "order": 395,
+ "id": 4,
+ "name": "design",
+ "prevSize": 18,
+ "code": 59884,
+ "tempChar": ""
+ },
+ {
+ "order": 391,
+ "id": 5,
+ "name": "download-alt",
+ "prevSize": 18,
+ "code": 59882,
+ "tempChar": ""
+ },
+ {
+ "order": 374,
+ "id": 6,
+ "name": "blame",
+ "prevSize": 18,
+ "code": 59872,
+ "tempChar": ""
+ },
+ {
+ "order": 365,
+ "id": 7,
+ "name": "draft-edit",
+ "prevSize": 18,
+ "code": 59868,
+ "tempChar": ""
+ },
+ {
+ "order": 371,
+ "id": 8,
+ "name": "sub-review-user",
+ "prevSize": 18,
+ "code": 59867,
+ "tempChar": ""
+ },
+ {
+ "order": 366,
+ "id": 9,
+ "name": "sub-review",
+ "prevSize": 18,
+ "code": 59871,
+ "tempChar": ""
+ },
+ {
+ "order": 363,
+ "id": 10,
+ "name": "ztf",
+ "prevSize": 18,
+ "code": 59869,
+ "tempChar": ""
+ },
+ {
+ "order": 348,
+ "id": 11,
+ "name": "save",
+ "prevSize": 18,
+ "code": 59864,
+ "tempChar": ""
+ },
+ {
+ "order": 292,
+ "id": 12,
+ "name": "list-box",
+ "prevSize": 18,
+ "code": 59828,
+ "tempChar": ""
+ },
+ {
+ "order": 32,
+ "id": 13,
+ "name": "usecase",
+ "prevSize": 18,
+ "code": 59805,
+ "tempChar": ""
+ },
+ {
+ "order": 33,
+ "id": 14,
+ "name": "code",
+ "prevSize": 18,
+ "code": 59792,
+ "tempChar": ""
+ },
+ {
+ "order": 34,
+ "id": 15,
+ "name": "summary",
+ "prevSize": 18,
+ "code": 59821,
+ "tempChar": ""
+ },
+ {
+ "order": 35,
+ "id": 16,
+ "name": "estimate",
+ "prevSize": 28,
+ "code": 59820,
+ "codes": [
+ 59820
+ ],
+ "tempChar": ""
+ },
+ {
+ "order": 280,
+ "id": 17,
+ "name": "sprint",
+ "prevSize": 28,
+ "code": 59810,
+ "tempChar": ""
+ },
+ {
+ "order": 37,
+ "id": 18,
+ "name": "shield-check",
+ "prevSize": 28,
+ "code": 59813,
+ "tempChar": ""
+ },
+ {
+ "order": 38,
+ "id": 19,
+ "name": "ok",
+ "prevSize": 28,
+ "code": 59814,
+ "tempChar": "",
+ "codes": [
+ 59814,
+ 59816,
+ 59817,
+ 59818,
+ 59819,
+ 59820,
+ 59821,
+ 59822,
+ 59823,
+ 59824,
+ 59825,
+ 59826,
+ 59827,
+ 59828,
+ 59829,
+ 59830,
+ 59831,
+ 59832,
+ 59833,
+ 59834,
+ 59835,
+ 59836,
+ 59837,
+ 59838,
+ 59839,
+ 59840,
+ 59841,
+ 59842,
+ 59843,
+ 59844,
+ 59845,
+ 59846,
+ 59847,
+ 59848,
+ 59849,
+ 59850,
+ 59851,
+ 59852,
+ 59853,
+ 59854,
+ 59855,
+ 59856,
+ 59857,
+ 59858,
+ 59859,
+ 59860,
+ 59861,
+ 59862,
+ 59863,
+ 59864,
+ 59865,
+ 59866,
+ 59867,
+ 59868,
+ 59869
+ ]
+ },
+ {
+ "order": 39,
+ "id": 20,
+ "name": "more-alt",
+ "prevSize": 18,
+ "code": 59815,
+ "tempChar": "",
+ "codes": [
+ 59815,
+ 59870,
+ 59871,
+ 59872,
+ 59873,
+ 59874,
+ 59875,
+ 59876,
+ 59877,
+ 59878,
+ 59879,
+ 59880,
+ 59881,
+ 59882,
+ 59883,
+ 59884,
+ 59885,
+ 59886,
+ 59887,
+ 59888,
+ 59889,
+ 59890,
+ 59891,
+ 59892,
+ 59893,
+ 59894,
+ 59895,
+ 59896,
+ 59897,
+ 59898,
+ 59899,
+ 59900,
+ 59901,
+ 59902,
+ 59903,
+ 59904,
+ 59905,
+ 59906,
+ 59907,
+ 59908,
+ 59909,
+ 59910,
+ 59911,
+ 59912,
+ 59913,
+ 59914,
+ 59915,
+ 59916,
+ 59917,
+ 59918,
+ 59919,
+ 59920,
+ 59921,
+ 59922,
+ 59923,
+ 59924
+ ]
+ },
+ {
+ "order": 40,
+ "id": 21,
+ "name": "import, download",
+ "prevSize": 18,
+ "code": 59652,
+ "tempChar": ""
+ },
+ {
+ "order": 41,
+ "id": 22,
+ "name": "export",
+ "prevSize": 18,
+ "code": 59653,
+ "tempChar": ""
+ },
+ {
+ "id": 23,
+ "order": 370,
+ "prevSize": 28,
+ "name": "printer",
+ "code": 59654,
+ "tempChar": ""
+ },
+ {
+ "order": 43,
+ "id": 24,
+ "name": "bullhorn",
+ "prevSize": 28,
+ "code": 59664,
+ "tempChar": ""
+ },
+ {
+ "id": 25,
+ "order": 343,
+ "prevSize": 28,
+ "name": "person",
+ "code": 59713,
+ "tempChar": ""
+ },
+ {
+ "order": 45,
+ "id": 26,
+ "name": "fields",
+ "prevSize": 28,
+ "code": 59785,
+ "tempChar": ""
+ },
+ {
+ "order": 46,
+ "id": 27,
+ "name": "trigger",
+ "prevSize": 28,
+ "code": 59786,
+ "tempChar": ""
+ },
+ {
+ "order": 47,
+ "id": 28,
+ "name": "layout",
+ "prevSize": 28,
+ "code": 59787,
+ "tempChar": ""
+ },
+ {
+ "order": 48,
+ "id": 29,
+ "name": "audit",
+ "prevSize": 28,
+ "code": 59788,
+ "tempChar": ""
+ },
+ {
+ "order": 49,
+ "id": 30,
+ "name": "cancel, ban-circle",
+ "prevSize": 28,
+ "code": 59729,
+ "tempChar": ""
+ },
+ {
+ "order": 50,
+ "id": 31,
+ "name": "eye",
+ "prevSize": 28,
+ "code": 59726,
+ "tempChar": ""
+ },
+ {
+ "order": 51,
+ "id": 32,
+ "name": "eye-off",
+ "prevSize": 28,
+ "code": 59758,
+ "tempChar": ""
+ },
+ {
+ "order": 52,
+ "id": 33,
+ "name": "unlock",
+ "prevSize": 28,
+ "code": 59727,
+ "tempChar": ""
+ },
+ {
+ "order": 53,
+ "id": 34,
+ "name": "lock, private",
+ "prevSize": 28,
+ "code": 59728,
+ "tempChar": ""
+ },
+ {
+ "id": 35,
+ "order": 54,
+ "prevSize": 28,
+ "name": "move",
+ "code": 59724,
+ "tempChar": ""
+ },
+ {
+ "order": 55,
+ "id": 36,
+ "name": "hand-right",
+ "prevSize": 28,
+ "code": 59655,
+ "tempChar": ""
+ },
+ {
+ "order": 56,
+ "id": 37,
+ "name": "checked",
+ "prevSize": 28,
+ "code": 59656,
+ "tempChar": ""
+ },
+ {
+ "order": 57,
+ "id": 38,
+ "name": "off",
+ "prevSize": 28,
+ "code": 59657,
+ "tempChar": ""
+ },
+ {
+ "order": 58,
+ "id": 39,
+ "name": "start, play",
+ "prevSize": 28,
+ "code": 59658,
+ "tempChar": ""
+ },
+ {
+ "order": 59,
+ "id": 40,
+ "name": "time",
+ "prevSize": 28,
+ "code": 59659,
+ "tempChar": ""
+ },
+ {
+ "order": 281,
+ "id": 41,
+ "name": "edit",
+ "prevSize": 28,
+ "code": 59660,
+ "tempChar": ""
+ },
+ {
+ "order": 61,
+ "id": 42,
+ "name": "trash",
+ "prevSize": 28,
+ "code": 59661,
+ "tempChar": ""
+ },
+ {
+ "order": 62,
+ "id": 43,
+ "name": "link",
+ "prevSize": 28,
+ "code": 59662,
+ "tempChar": ""
+ },
+ {
+ "order": 63,
+ "id": 44,
+ "name": "unlink",
+ "prevSize": 28,
+ "code": 59663,
+ "tempChar": ""
+ },
+ {
+ "order": 64,
+ "id": 45,
+ "name": "bug",
+ "prevSize": 28,
+ "code": 59665,
+ "tempChar": ""
+ },
+ {
+ "order": 65,
+ "id": 46,
+ "name": "list-alt",
+ "prevSize": 28,
+ "code": 59666,
+ "tempChar": ""
+ },
+ {
+ "order": 66,
+ "id": 47,
+ "name": "change, alter",
+ "prevSize": 28,
+ "code": 59760,
+ "tempChar": "",
+ "codes": [
+ 59760,
+ 59761,
+ 59762,
+ 59763,
+ 59764,
+ 59765,
+ 59766,
+ 59767,
+ 59768,
+ 59769,
+ 59770,
+ 59771,
+ 59772,
+ 59773,
+ 59774,
+ 59775,
+ 59776,
+ 59777,
+ 59779,
+ 59780,
+ 59781,
+ 59782,
+ 59783,
+ 59784,
+ 59785,
+ 59786,
+ 59787,
+ 59788,
+ 59789,
+ 59790,
+ 59791,
+ 59792,
+ 59793,
+ 59794,
+ 59795,
+ 59796,
+ 59797,
+ 59798,
+ 59799,
+ 59800,
+ 59801,
+ 59802,
+ 59803,
+ 59804,
+ 59805,
+ 59806,
+ 59807,
+ 59808,
+ 59809,
+ 59810,
+ 59811,
+ 59812,
+ 59813,
+ 59814,
+ 59815,
+ 59816,
+ 59817,
+ 59818,
+ 59819,
+ 59820,
+ 59821,
+ 59822,
+ 59823,
+ 59824,
+ 59825,
+ 59826,
+ 59827,
+ 59828,
+ 59829,
+ 59830,
+ 59831,
+ 59832,
+ 59833,
+ 59834,
+ 59835
+ ]
+ },
+ {
+ "order": 67,
+ "id": 48,
+ "name": "glasses, review",
+ "prevSize": 28,
+ "code": 59668,
+ "tempChar": ""
+ },
+ {
+ "order": 68,
+ "id": 49,
+ "name": "sitemap, testcase",
+ "prevSize": 28,
+ "code": 59669,
+ "tempChar": ""
+ },
+ {
+ "order": 69,
+ "id": 50,
+ "name": "pluses",
+ "prevSize": 28,
+ "code": 59671,
+ "tempChar": ""
+ },
+ {
+ "order": 399,
+ "id": 51,
+ "name": "report-list",
+ "prevSize": 28,
+ "code": 59672,
+ "tempChar": ""
+ },
+ {
+ "order": 71,
+ "id": 52,
+ "name": "magic, active",
+ "prevSize": 28,
+ "code": 59673,
+ "tempChar": ""
+ },
+ {
+ "order": 72,
+ "id": 53,
+ "name": "treemap",
+ "prevSize": 28,
+ "code": 59674,
+ "tempChar": ""
+ },
+ {
+ "order": 73,
+ "id": 54,
+ "name": "confirm",
+ "prevSize": 28,
+ "code": 59675,
+ "tempChar": ""
+ },
+ {
+ "order": 347,
+ "id": 55,
+ "name": "customer",
+ "prevSize": 18,
+ "code": 59865,
+ "tempChar": ""
+ },
+ {
+ "order": 74,
+ "id": 56,
+ "name": "lightbulb",
+ "prevSize": 18,
+ "code": 59676,
+ "tempChar": ""
+ },
+ {
+ "order": 75,
+ "id": 57,
+ "name": "split",
+ "prevSize": 28,
+ "code": 59790,
+ "tempChar": "",
+ "codes": [
+ 59790,
+ 59811,
+ 59816,
+ 59817,
+ 59818,
+ 59819,
+ 59820,
+ 59821,
+ 59822,
+ 59823,
+ 59824,
+ 59825,
+ 59826,
+ 59827,
+ 59828,
+ 59829,
+ 59830,
+ 59831,
+ 59832,
+ 59833,
+ 59834,
+ 59835,
+ 59836,
+ 59837,
+ 59838,
+ 59839,
+ 59840,
+ 59841,
+ 59842,
+ 59843,
+ 59844,
+ 59845,
+ 59846,
+ 59847,
+ 59848,
+ 59849,
+ 59850,
+ 59851,
+ 59852,
+ 59853,
+ 59854,
+ 59855,
+ 59856,
+ 59857,
+ 59858,
+ 59859,
+ 59860,
+ 59861,
+ 59862,
+ 59863,
+ 59864,
+ 59865,
+ 59866,
+ 59867,
+ 59868,
+ 59869,
+ 59870,
+ 59871,
+ 59872,
+ 59873,
+ 59874
+ ]
+ },
+ {
+ "order": 76,
+ "id": 58,
+ "name": "delay, calendar",
+ "prevSize": 28,
+ "code": 59677,
+ "tempChar": ""
+ },
+ {
+ "order": 77,
+ "id": 59,
+ "name": "pause",
+ "prevSize": 28,
+ "code": 59678,
+ "tempChar": ""
+ },
+ {
+ "order": 78,
+ "id": 60,
+ "name": "ban",
+ "prevSize": 28,
+ "code": 59679,
+ "tempChar": ""
+ },
+ {
+ "order": 79,
+ "id": 61,
+ "name": "plus-bold",
+ "prevSize": 28,
+ "code": 59680,
+ "tempChar": ""
+ },
+ {
+ "order": 80,
+ "id": 62,
+ "name": "copy",
+ "prevSize": 28,
+ "code": 59681,
+ "tempChar": ""
+ },
+ {
+ "order": 81,
+ "id": 63,
+ "name": "refresh",
+ "prevSize": 28,
+ "code": 59682,
+ "tempChar": ""
+ }
+ ],
+ "id": 9,
+ "metadata": {
+ "name": "操作",
+ "importSize": {
+ "width": 17,
+ "height": 17
+ }
+ },
+ "height": 1024,
+ "prevSize": 28,
+ "icons": [
+ {
+ "id": 0,
+ "paths": [
+ "M983.447 312.636l0 0c-110.105-260.373-410.438-382.189-670.811-272.083s-382.189 410.438-272.083 670.811c110.105 260.373 410.438 382.189 670.811 272.083 189.418-80.1 312.504-265.788 312.504-471.447v0.146c0-68.487-13.725-136.281-40.363-199.375l-0.057-0.135zM511.015 969.874c-252.475 0-457.874-205.4-457.874-457.874s205.4-457.874 457.874-457.874c252.475 0 457.874 205.4 457.874 457.874s-205.4 457.874-457.874 457.874z",
+ "M688.548 557.345h-40.18c-18.75-5.498-34.808-17.959-43.524-34.040-11.144-20.502-11.683-28.142 9.163-54.898l8.018-8.991c20.949-23.663 30.925-53.065 28.13-82.799-2.921-30.868-19.242-59.239-45.964-79.878-24.717-19.070-56.719-30.066-90.118-30.925s-65.996 8.373-92.031 26.034c-28.52 19.38-46.96 47.132-51.908 78.149-4.662 29.127 3.161 58.643 22.026 83.085l-0-0c0.656 0.859 1.364 1.677 2.119 2.451l17.57 17.937c1.656 1.683 3.519 3.149 5.544 4.364 4.272 3.15 12.267 22.644-0.115 45.494-8.751 16.035-24.82 28.554-43.524 34.040h-40.271c-28.231 0.032-51.109 22.91-51.141 51.141v110.529c0.063 28.209 22.932 51.052 51.141 51.084h355.066c28.236-0.032 51.116-22.917 51.141-51.152v-110.529c-0.057-28.213-22.928-51.064-51.141-51.095l0-0zM449.027 432.82l-14.283-14.569c-8.991-12.198-12.599-25.885-10.377-39.653 2.543-15.886 12.668-30.57 28.52-41.337 33.96-23.056 85.651-21.762 117.653 2.944 14.546 11.236 23.366 25.989 24.832 41.531 1.386 14.626-3.654 28.875-14.535 41.165l-8.533 9.598c-0.367 0.424-0.733 0.859-1.077 1.306-28.279 36.102-40.603 68.058-14.707 115.683 1.443 2.657 3.001 5.269 4.65 7.811h-100.289c1.649-2.554 3.218-5.154 4.662-7.811 25.244-46.559 11.969-96.566-16.516-116.668v0zM684.745 715.144h-347.46v-102.82h32.403c3.554 0.71 7.213 0.71 10.767 0h261.134c1.769 0.354 3.568 0.534 5.372 0.538v0c1.781-0.005 3.557-0.186 5.303-0.538h32.506l-0.023 102.82z"
+ ],
+ "attrs": [
+ {
+ "fill": "rgb(255, 137, 54)"
+ },
+ {
+ "fill": "rgb(255, 137, 54)"
+ }
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {
+ "f": 0
+ },
+ {
+ "f": 0
+ }
+ ]
+ },
+ "tags": [
+ "seal"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 1,
+ "paths": [
+ "M30.5 512.042l332.886-192.192v384.384l-332.886-192.192z",
+ "M42.854 38.633h1035.647v85.333h-1035.647v-85.333zM30.5 900.035h1035.644v85.333h-1035.644v-85.333zM1066.144 456.186h-887.695v85.333h887.695v-85.333z"
+ ],
+ "width": 1109,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": []
+ },
+ "tags": [
+ "menu-arrow-left"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 2,
+ "paths": [
+ "M1078.494 511.959l-332.882 192.192v-384.384l332.882 192.192z",
+ "M1066.146 985.368h-1035.648v-85.333h1035.648v85.333zM1078.502 123.967h-1035.651v-85.334h1035.651v85.333zM42.851 567.816h887.7v-85.333h-887.7v85.333z"
+ ],
+ "width": 1109,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": []
+ },
+ "tags": [
+ "menu-arrow-right"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 3,
+ "paths": [
+ "M768 146.286v182.857h182.857v73.143h-182.857v182.857h-73.143v-182.857h-182.857v-73.143h182.857v-182.857h73.143zM73.143 804.571v73.143h877.714v-73.143h-877.714zM438.857 548.571h-365.714v-73.143h365.714v73.143zM73.143 219.429h365.714v-73.143h-365.714v73.143z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": []
+ },
+ "tags": [
+ "add-directory"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 4,
+ "paths": [
+ "M1022.95 256.488l-255.488-255.488-255.486 255.488-255.489-255.488-255.488 255.488 255.488 255.489-255.488 255.486v255.488h255.488l255.489-255.488 255.486 255.488 255.488-255.488-255.488-255.486 255.488-255.489zM262.888 428.968l108.544-108.608-44.672-44.736-108.609 108.608-38.336-38.336 115.009-114.881-51.136-44.799-108.545 115.007-44.8-44.672 166.144-166.079 210.689 210.688-166.016 166.080-38.272-38.272zM64.872 959.078v-127.744l127.743 127.744h-127.743zM256.488 933.542l-166.080-166.080 677.119-677.119 166.016 166.144-677.055 677.055zM933.606 767.462l-166.144 166.080-44.672-44.736 114.944-114.944-44.736-44.736-114.944 115.008-38.334-38.336 115.006-114.944-51.136-44.8-114.942 115.008-38.401-38.272 166.143-166.078 217.216 210.75z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {}
+ ]
+ },
+ "tags": [
+ "design"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 5,
+ "paths": [
+ "M492.405 752.027l-301.796-312.266c-16.137-16.312-4.61-46.607 18.442-46.607h117.376c16.137 0 27.663-11.652 27.663-27.964v-291.293c0-16.312 11.526-27.964 27.663-27.964h255.882c16.137 0 27.664 11.652 27.664 27.964v291.293c0 16.312 11.526 27.964 27.662 27.964h117.373c25.364 0 36.888 30.295 18.448 46.607l-299.493 312.266c-9.221 9.322-27.663 9.322-36.884 0zM957.869 978.068h-894.048c-25.358 0-48.41-20.968-48.41-48.939 0-25.632 20.747-48.931 48.41-48.931h896.356c25.356 0 48.412 20.968 48.412 48.931-2.308 27.971-23.056 48.939-50.72 48.939z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": []
+ },
+ "tags": [
+ "download-alt"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 6,
+ "paths": [
+ "M702.761 36.779c134.683 0 209.717 64.921 214.729 184.704l0.274 13.035v498.304c0.016 7.906-3.223 15.529-9.081 21.374s-13.913 9.479-22.574 10.192c-8.663 0.715-17.305-1.545-24.226-6.334-6.917-4.789-11.616-11.76-13.166-19.536l-0.555-5.696v-498.304c0-93.333-44.544-134.464-145.403-134.464-96.747 0-143.385 38.094-149.785 122.631l-0.626 11.833v553.666c0 128.201-76.357 197.737-217.234 197.737-136.007 0-212.014-64.791-217.513-184.704l-0.279-13.033v-498.299c-0.016-7.906 3.225-15.531 9.083-21.374s13.913-9.479 22.574-10.192c8.663-0.715 17.303 1.545 24.222 6.334s11.616 11.76 13.168 19.538l0.555 5.696v498.24c0.279 93.269 45.73 134.523 148.185 134.523 98.142 0 143.733-37.838 147.422-123.074l0.208-11.39v-554.551c3.899-127.755 80.951-196.853 220.018-196.853z",
+ "M30.315 178.368c0 29.159 11.584 57.125 32.201 77.744s48.585 32.201 77.744 32.201c29.159 0 57.125-11.584 77.744-32.201s32.201-48.583 32.201-77.744c0-29.161-11.584-57.125-32.201-77.744s-48.583-32.201-77.744-32.201c-29.161 0-57.125 11.584-77.744 32.201s-32.201 48.583-32.201 77.744v0z",
+ "M761.159 842.773c0 29.159 11.582 57.122 32.203 77.742s48.585 32.203 77.742 32.203c29.159 0 57.122-11.582 77.742-32.203s32.203-48.585 32.203-77.742c0-29.163-11.582-57.129-32.203-77.742-20.619-20.619-48.585-32.203-77.742-32.203s-57.122 11.582-77.742 32.203c-20.619 20.615-32.203 48.581-32.203 77.742v0z"
+ ],
+ "attrs": [
+ {},
+ {},
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {},
+ {},
+ {}
+ ]
+ },
+ "tags": [
+ "blame"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 7,
+ "paths": [
+ "M726.633 100.28c-0.011-0.006-0.017-0.013-0.021-0.019l0.021 0.019zM736.44 110.089l192.108 192.106-97.342 97.342-192.108-192.108 97.342-97.339zM599.804 246.723l192.108 192.108-377.74 377.734-193.403-190.812 379.033-379.028zM374.857 855.844c-5.13 4.684-11.842 7.285-18.819 7.263l-159.486-0.511c-15.683-0.050-28.219-13.065-27.682-28.737l5.175-150.806c0.231-6.708 2.881-13.099 7.441-17.995l193.369 190.786zM746.248 100.28c0.006-0.006 0.011-0.013 0.017-0.018l-0.017 0.018zM765.91 60.972c-16.276-16.281-42.668-16.281-58.946 0l-564.094 564.091c-14.932 14.932-23.642 34.977-24.366 56.083l-5.175 150.806c-1.613 47.025 35.99 86.065 83.043 86.215l159.486 0.511c22.2 0.065 43.512-8.719 59.211-24.418l562.6-562.597c16.271-16.276 16.271-42.662 0-58.938v-0.004l-211.758-211.752z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {}
+ ]
+ },
+ "tags": [
+ "draft-edit"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 8,
+ "paths": [
+ "M494.775 66.455c-117.594 0-212.927 95.33-212.927 212.927 0 78.768 42.752 147.592 106.481 184.458l16.587 9.598 0.011 269.953h-279.391c-15.632 0-28.309 12.672-28.309 28.306v123.078c0 15.634 12.674 28.306 28.309 28.306h172.31c18.352 0 33.23 14.878 33.23 33.232s-14.875 33.232-33.23 33.232h-172.31c-52.341 0-94.77-42.432-94.77-94.768v-123.078c0-52.345 42.432-94.768 94.77-94.768h212.922l-0.007-165.951c-74.197-50.174-123.071-135.162-123.071-231.594 0-154.3 125.084-279.386 279.388-279.386s279.386 125.087 279.386 279.386c0 96.409-48.843 181.377-123.016 231.555l-0.023 82.994-131.729 114.376 49.243 214.774c52.345 0 101.815 79.872 216.346 61.682 114.527-18.19 79.815-28.45 79.815-28.45 0 18.354-102.441 33.232-120.796 33.232s-83.079 25.118-83.079 6.763c0 0-55.385-39.749-55.385-55.385s-39.749-55.385-55.385-55.385l-27.691-83.079 62.192-194.065 0.046-134.991 16.571-9.591c63.698-36.875 106.428-105.683 106.428-184.428 0-117.594-95.328-212.927-212.922-212.927z",
+ "M744.001 968.614c-107.059 0-193.848-86.789-193.848-193.848s86.789-193.848 193.848-193.848c107.059 0 193.848 86.789 193.848 193.848s-86.789 193.848-193.848 193.848zM744.001 1023.999c137.649 0 249.233-111.585 249.233-249.233s-111.585-249.233-249.233-249.233c-137.649 0-249.233 111.585-249.233 249.233s111.585 249.233 249.233 249.233z",
+ "M764.764 673.365l123.681 140.17h-282.908v-55.385h160.175l-42.475-48.139 41.527-36.642z"
+ ],
+ "attrs": [
+ {},
+ {},
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {},
+ {},
+ {}
+ ]
+ },
+ "tags": [
+ "sub-review-user"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 9,
+ "paths": [
+ "M443.733 102.4v68.267h-341.333v750.933h682.667v-504.698h68.267v572.964h-819.2v-887.467z",
+ "M513.974 263.693l96.447 96.544 242.703-242.607 48.272 48.272-290.879 290.879-144.815-144.815z",
+ "M477.867 614.4v68.267h-273.067v-68.267z",
+ "M682.667 750.933v68.267h-477.867v-68.267z"
+ ],
+ "width": 956,
+ "attrs": [
+ {},
+ {},
+ {},
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {},
+ {},
+ {},
+ {}
+ ]
+ },
+ "tags": [
+ "sub-review"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 10,
+ "paths": [
+ "M510.904 73.143c35.724 0 64.685 28.961 64.685 64.685 0 19.518-8.645 37.017-22.314 48.877l-0.061 105.266 302.163 0.004c20.707 0.216 37.793 15.516 40.77 35.458l0.453 5.546v492.708c0-0.227 0.059-0.015-0.007 0.432l-0.080 0.176-0.307 4.703c-2.597 17.408-17.708 31.466-35.277 34.962l-5.332 0.724h-687.195c-20.702-0.212-37.791-15.514-40.769-35.452l-0.454-5.544v-492.708c0.325-20.7 15.716-37.707 35.675-40.579l5.549-0.425 302.585-0.004-0.031-103.265c-15.063-11.843-24.737-30.231-24.737-50.879 0-35.724 28.961-64.685 64.685-64.685zM814.373 374.203h-604.968v410.261h604.968v-410.261zM360.044 515.743c35.725 0 64.685 28.96 64.685 64.685s-28.96 64.685-64.685 64.685c-35.724 0-64.685-28.96-64.685-64.685s28.96-64.685 64.685-64.685zM662.859 515.743c35.724 0 64.685 28.96 64.685 64.685s-28.961 64.685-64.685 64.685c-35.725 0-64.685-28.96-64.685-64.685s28.96-64.685 64.685-64.685zM0 445.248v313.558c1.574 21.541 19.512 38.217 41.114 38.217s39.539-16.677 41.114-38.217v-313.558c-0.238-22.547-18.457-40.767-41.004-41.004-22.536 0.349-40.754 18.47-41.223 41.004zM941.773 445.248v313.558c0.234 22.55 18.454 40.77 41.004 41.004 22.535-0.351 40.755-18.469 41.223-41.004v-313.558c-1.573-21.544-19.515-38.219-41.114-38.219s-39.541 16.674-41.114 38.219z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {}
+ ]
+ },
+ "tags": [
+ "ztf"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 11,
+ "paths": [
+ "M870.4 1024.001c42.393 0 80.896-17.256 108.594-45.006s45.006-66.201 45.006-108.594v-563.2c0-13.109-5.017-26.216-15.002-36.199l-256-256c-9.269-9.269-22.066-15.002-36.199-15.002h-563.2c-42.393 0-80.896 17.257-108.594 45.006s-45.006 66.201-45.006 108.594v716.8c0 42.393 17.257 80.896 45.006 108.594s66.201 45.006 108.594 45.006zM307.2 921.6v-307.2h409.6v307.2zM204.8 102.4v204.8c0 28.263 22.94 51.2 51.2 51.2h409.6c28.263 0 51.2-22.94 51.2-51.2s-22.94-51.2-51.2-51.2h-358.4v-153.602h388.402l225.998 225.998v542.003c0 14.13-5.682 26.88-15.002 36.199s-22.066 15.002-36.199 15.002h-51.2v-358.4c0-28.263-22.94-51.2-51.2-51.2h-512.001c-28.263 0-51.2 22.94-51.2 51.2v358.4h-51.2c-14.13 0-26.88-5.682-36.199-15.002s-15.002-22.066-15.002-36.199v-716.8c0-14.13 5.682-26.88 15.002-36.199s22.066-15.002 36.199-15.002z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {}
+ ]
+ },
+ "tags": [
+ "save"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 12,
+ "paths": [
+ "M0.002 0v1024z",
+ "M18.288 0v1024z",
+ "M36.574 0v1024z",
+ "M54.859 0v1024z",
+ "M73.145 0v1024z",
+ "M91.431 0v1024z",
+ "M109.717 0v1024z",
+ "M128.002 0v1024z",
+ "M146.288 0v1024z",
+ "M164.574 0v1024z",
+ "M182.859 0v1024z",
+ "M201.145 0v1024z",
+ "M219.431 0v1024z",
+ "M237.717 0v1024z",
+ "M256.002 0v1024z",
+ "M274.288 0v1024z",
+ "M292.574 0v1024z",
+ "M310.859 0v1024z",
+ "M329.145 0v1024z",
+ "M347.431 0v1024z",
+ "M365.717 0v1024z",
+ "M384.002 0v1024z",
+ "M402.288 0v1024z",
+ "M420.574 0v1024z",
+ "M438.859 0v1024z",
+ "M457.145 0v1024z",
+ "M475.431 0v1024z",
+ "M493.717 0v1024z",
+ "M512.002 0v1024z",
+ "M530.288 0v1024z",
+ "M548.574 0v1024z",
+ "M566.859 0v1024z",
+ "M585.145 0v1024z",
+ "M603.431 0v1024z",
+ "M621.717 0v1024z",
+ "M640.002 0v1024z",
+ "M658.288 0v1024z",
+ "M676.574 0v1024z",
+ "M694.859 0v1024z",
+ "M713.145 0v1024z",
+ "M731.431 0v1024z",
+ "M749.717 0v1024z",
+ "M768.002 0v1024z",
+ "M786.288 0v1024z",
+ "M804.574 0v1024z",
+ "M822.859 0v1024z",
+ "M841.145 0v1024z",
+ "M859.431 0v1024z",
+ "M877.717 0v1024z",
+ "M896.002 0v1024z",
+ "M914.288 0v1024z",
+ "M932.574 0v1024z",
+ "M-36.569 18.286h1024z",
+ "M-36.569 36.571h1024z",
+ "M-36.569 54.857h1024z",
+ "M-36.569 73.143h1024z",
+ "M-36.569 91.429h1024z",
+ "M-36.569 109.714h1024z",
+ "M-36.569 128h1024z",
+ "M-36.569 146.286h1024z",
+ "M-36.569 164.571h1024z",
+ "M-36.569 182.857h1024z",
+ "M-36.569 201.143h1024z",
+ "M-36.569 219.429h1024z",
+ "M-36.569 237.714h1024z",
+ "M-36.569 256h1024z",
+ "M-36.569 274.286h1024z",
+ "M-36.569 292.571h1024z",
+ "M-36.569 310.857h1024z",
+ "M-36.569 329.143h1024z",
+ "M-36.569 347.429h1024z",
+ "M-36.569 365.714h1024z",
+ "M-36.569 384h1024z",
+ "M-36.569 402.286h1024z",
+ "M-36.569 420.571h1024z",
+ "M-36.569 438.857h1024z",
+ "M-36.569 457.143h1024z",
+ "M-36.569 475.429h1024z",
+ "M-36.569 493.714h1024z",
+ "M-36.569 512h1024z",
+ "M-36.569 530.286h1024z",
+ "M-36.569 548.571h1024z",
+ "M-36.569 566.857h1024z",
+ "M-36.569 585.143h1024z",
+ "M-36.569 603.429h1024z",
+ "M-36.569 621.714h1024z",
+ "M-36.569 640h1024z",
+ "M-36.569 658.286h1024z",
+ "M-36.569 676.571h1024z",
+ "M-36.569 694.857h1024z",
+ "M-36.569 713.143h1024z",
+ "M-36.569 731.429h1024z",
+ "M-36.569 749.714h1024z",
+ "M-36.569 768h1024z",
+ "M-36.569 786.286h1024z",
+ "M-36.569 804.571h1024z",
+ "M-36.569 822.857h1024z",
+ "M-36.569 841.143h1024z",
+ "M-36.569 859.429h1024z",
+ "M-36.569 877.714h1024z",
+ "M-36.569 896h1024z",
+ "M-36.569 914.286h1024z",
+ "M-36.569 932.571h1024z",
+ "M-36.569 950.857h1024z",
+ "M-36.569 969.143h1024z",
+ "M-36.569 987.429h1024z",
+ "M-36.569 1005.714h1024z",
+ "M0.002 146.286c0-60.594 49.12-109.714 109.714-109.714h731.429c60.594 0 109.714 49.12 109.714 109.714v731.429c0 60.594-49.12 109.714-109.714 109.714h-731.429c-60.594 0-109.714-49.12-109.714-109.714v-731.429zM109.717 109.714c-20.199 0-36.571 16.375-36.571 36.571v731.429c0 20.199 16.375 36.571 36.571 36.571h731.429c20.199 0 36.571-16.373 36.571-36.571v-731.429c0-20.199-16.373-36.571-36.571-36.571h-731.429z",
+ "M182.859 292.571c0-20.199 16.375-36.571 36.571-36.571s36.304 16.375 36.304 36.571c0 20.199-16.105 36.571-36.304 36.571s-36.571-16.375-36.571-36.571z",
+ "M330.359 292.571c0-20.199 14.475-36.571 34.674-36.571h366.4c20.199 0 36.571 16.375 36.571 36.571s-16.373 36.571-36.571 36.571h-366.4c-20.199 0-34.674-16.375-34.674-36.571z",
+ "M182.859 512c0-20.199 16.375-36.571 36.571-36.571s36.304 16.375 36.304 36.571c0 20.199-16.105 36.571-36.304 36.571s-36.571-16.375-36.571-36.571z",
+ "M330.288 512c0-20.199 14.475-36.571 34.674-36.571h366.4c20.199 0 36.571 16.375 36.571 36.571s-16.373 36.571-36.571 36.571h-366.4c-20.199 0-34.674-16.375-34.674-36.571z",
+ "M182.859 731.429c0-20.199 16.375-36.571 36.571-36.571s36.304 16.375 36.304 36.571c0 20.199-16.105 36.571-36.304 36.571s-36.571-16.375-36.571-36.571z",
+ "M330.288 731.429c0-20.199 14.475-36.571 34.674-36.571h366.4c20.199 0 36.571 16.375 36.571 36.571s-16.373 36.571-36.571 36.571h-366.4c-20.199 0-34.674-16.375-34.674-36.571z"
+ ],
+ "width": 951,
+ "attrs": [
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {}
+ ]
+ },
+ "tags": [
+ "list-box"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 13,
+ "paths": [
+ "M1024 120.471v783.058c0 66.534-53.937 120.471-120.471 120.471h-783.058c-66.534 0-120.471-53.937-120.471-120.471v-783.058c0-66.534 53.937-120.471 120.471-120.471h783.058c66.534 0 120.471 53.937 120.471 120.471zM890.622 73.143h-757.242c-33.267 0-60.235 26.968-60.235 60.235v757.242c0 33.267 26.968 60.235 60.235 60.235h757.242c33.267 0 60.235-26.968 60.235-60.235v-757.242c0-33.267-26.968-60.235-60.235-60.235zM406.675 563.2l51.785 51.712-77.531 77.605 77.531 77.531-51.712 51.785-77.531-77.605-77.678 77.531-51.712-51.712 77.605-77.531-77.531-77.531 51.639-51.785 77.605 77.605 77.531-77.605zM877.714 658.285v73.143h-292.57v-73.143h292.57zM460.801 168.229l56.027 47.104-188.050 224.11-56.027-47.031v-0.146l-87.772-73.655 46.958-56.027 87.918 73.655 140.946-168.010zM877.714 292.572v73.143h-292.57v-73.143h292.57z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": []
+ },
+ "tags": [
+ "usecase"
+ ],
+ "defaultCode": 59805,
+ "grid": 14
+ },
+ {
+ "id": 14,
+ "paths": [
+ "M354.115 776.254l-74.676 54.739-279.438-319.376 279.438-318.611 74.644 54.835-231.43 263.839 231.462 264.573zM669.886 776.254l231.462-264.573-231.43-263.839 74.644-54.835 279.438 318.611-279.438 319.376-74.676-54.739zM521.714 222.418l92.891 19.523-116.592 568.19-92.891-19.523 116.592-568.19z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": []
+ },
+ "tags": [
+ "code"
+ ],
+ "defaultCode": 59792,
+ "grid": 14
+ },
+ {
+ "id": 15,
+ "paths": [
+ "M659.195 71.261h-289.059c-17.315-0.357-31.642 13.39-31.999 30.707 0 0.004 0 0.009 0 0.013v0c0.371 15.846 12.584 28.885 28.373 30.292h292.687c16.907 1.412 31.758-11.148 33.17-28.055s-11.148-31.758-28.055-33.17c-1.702-0.142-3.413-0.142-5.116 0l-0.001 0.213zM684.582 420.479v0c10.306-0.011 20.198 4.053 27.519 11.306v0c13.792 13.715 14.989 35.636 2.774 50.772l-2.774 3.2-221.434 218.234c-7.295 7.293-17.204 11.365-27.519 11.307v0c-8.737-0.013-17.22-2.941-24.106-8.321l-2.56-2.986-126.29-124.797c-14.844-14.646-15.006-38.553-0.36-53.398 0.12-0.121 0.239-0.241 0.361-0.361v0c14.189-14.194 36.771-15.48 52.479-2.986l3.2 2.986 98.558 97.491 193.275-191.996c5.147-5.141 11.664-8.695 18.773-10.239h4.267l3.84-0.214zM270.938 138.245h-103.463c-3.622-0.058-6.845 2.293-7.893 5.761v801.26c0.205 3.53 2.733 6.494 6.186 7.253h690.756c3.683 0.033 6.925-2.421 7.893-5.974v-800.833c-0.205-3.53-2.733-6.494-6.186-7.253h-98.984v1.92c-16.145 37.137-51.929 61.93-92.371 63.999h-296.738c-41.191 0.331-78.892-23.086-96.851-60.158l-2.347-5.974zM659.195 0.005v0c40.579-0.399 77.87 22.258 96.21 58.458l2.133 5.12 1.493 3.413h2.774l1.28-4.907v4.907h93.438c40.965-0.968 76.212 28.785 82.131 69.332v808.939c-0.758 42.499-34.539 77.029-77.011 78.718h-694.169c-42.608 0.826-78.541-31.561-82.131-74.025v-804.246c0.863-42.455 34.585-76.924 77.011-78.718h107.944c14.302-37.13 48.298-63.039 87.891-66.991h301.005z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": []
+ },
+ "tags": [
+ "summary"
+ ],
+ "defaultCode": 59821,
+ "grid": 14
+ },
+ {
+ "id": 16,
+ "paths": [
+ "M146.286 109.714v573.030h438.356v-573.030h-438.356zM73.143 109.714c0-40.396 32.747-73.143 73.143-73.143h438.356c40.397 0 73.143 32.747 73.143 73.143v115.939l1.591 0.519 228.535 72.96c47.557 15.183 74.39 65.772 58.544 113.697l-169.355 512.121c-15.846 47.927-67.818 73.355-115.379 58.174l-312.729-99.84c-47.558-15.184-74.392-65.774-58.543-113.697l1.676-5.069 0.136-0.413h0.002l2.827-8.218h-148.804c-40.396 0-73.143-32.75-73.143-73.143v-573.030zM657.785 682.745c0 40.393-32.746 73.143-73.143 73.143h-212.22l-10.687 31.078-1.608 4.864c-2.858 8.645 1.815 18.812 11.831 22.009l312.73 99.84c10.013 3.196 19.877-2.33 22.736-10.971l169.351-512.124c2.86-8.642-1.814-18.809-11.827-22.005l-207.163-66.137v380.304zM441.563 495.338c-26.503 0-49.006-14.142-57.757-34.348-0.541-1.093-0.987-2.081-1.386-2.955-1.434-3.171-2.209-4.875-4.363-4.875-2.344 0-2.271 5.109-2.253 6.371 0 0.080 0.004 0.15 0.004 0.197 2.249 36.871 15.002 56.068 34.501 72.989 3.752 3.533 1.251 7.069 0 7.069h-89.761c-1.25 0-4.25-3.536 0-7.069 19.503-16.417 32.504-36.118 34.505-72.989 0-0.048 0.001-0.117 0.002-0.197 0.018-1.262 0.093-6.371-2.252-6.371-2.349 0-3.012 1.551-4.39 4.769-0.381 0.892-0.818 1.909-1.36 3.061-8.751 20.458-31.254 34.348-57.758 34.348-41.506 0-70.009-36.118-70.009-77.283 0-48.446 37.347-83.783 62.925-107.983 1.223-1.157 2.42-2.289 3.584-3.396 31.254-30.054 66.259-69.454 79.010-89.406 0.25-0.758 1.001-0.758 1.25 0 12.504 19.952 47.759 59.351 79.013 89.406 1.192 1.134 2.414 2.293 3.664 3.477 25.772 24.396 62.844 59.485 62.844 107.902 0 40.912-28.255 77.283-70.012 77.283z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {}
+ ]
+ },
+ "tags": [
+ "estimate"
+ ],
+ "defaultCode": 59820,
+ "grid": 28
+ },
+ {
+ "id": 17,
+ "paths": [
+ "M0 877.714c0-20.198 16.374-36.571 36.571-36.571h841.143v73.143h-841.143c-20.198 0-36.571-16.373-36.571-36.571z",
+ "M124.498 578.399l91.666-114.673c5.716-7.153 3.73-17.006-4.435-22.012-3.033-1.858-6.646-2.856-10.349-2.856h-183.333c-9.967 0-18.047 7.077-18.047 15.803 0 3.244 1.139 6.407 3.262 9.066l91.667 114.673c5.716 7.153 16.969 8.891 25.134 3.884 1.726-1.057 3.227-2.37 4.435-3.884z",
+ "M1017.256 862.932l-114.673-91.67c-7.153-5.712-17.006-3.727-22.012 4.436-1.858 3.035-2.856 6.649-2.856 10.35v183.333c0 9.969 7.077 18.048 15.803 18.048 3.244 0 6.407-1.137 9.066-3.262l114.673-91.666c7.153-5.716 8.891-16.969 3.884-25.136-1.057-1.726-2.37-3.226-3.884-4.432z",
+ "M512 109.714c-201.979 0-365.714 163.736-365.714 365.714h-73.143c0-242.374 196.483-438.857 438.857-438.857s438.857 196.483 438.857 438.857c0 242.373-196.484 438.857-438.857 438.857v-73.143c201.977 0 365.714-163.738 365.714-365.714 0-201.979-163.738-365.714-365.714-365.714z"
+ ],
+ "attrs": [
+ {},
+ {},
+ {},
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {},
+ {},
+ {},
+ {}
+ ]
+ },
+ "tags": [
+ "sprint"
+ ],
+ "defaultCode": 59810,
+ "grid": 28
+ },
+ {
+ "id": 18,
+ "paths": [
+ "M525.407 2.545c-8.616-3.393-18.198-3.393-26.811-0l-402.286 158.476c-14.609 5.755-23.914 20.193-23.12 35.874l15.913 314.552c7.393 146.117 81.65 280.697 201.324 364.862l200.533 141.034c12.624 8.876 29.462 8.876 42.083-0.004l200.521-141.060c119.621-84.151 193.858-218.679 201.271-364.745l15.974-314.634c0.797-15.684-8.507-30.125-23.12-35.881l-402.282-158.476zM162.153 507.75l-14.586-288.308 364.433-143.564 364.431 143.563-14.643 288.386c-6.276 123.597-69.087 237.425-170.309 308.63l-179.482 126.259-179.493-126.237c-101.263-71.216-164.096-185.088-170.351-308.729zM722.128 390.082c13.458-15.060 12.156-38.179-2.904-51.637s-38.181-12.159-51.639 2.902l-201.49 225.482-109.682-122.741c-13.458-15.064-36.578-16.362-51.638-2.904s-16.36 36.579-2.902 51.639l136.955 153.26c6.938 7.764 16.856 12.204 27.268 12.204 10.416 0 20.334-4.44 27.271-12.204l228.762-256z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {}
+ ]
+ },
+ "tags": [
+ "shield-check"
+ ],
+ "defaultCode": 59813,
+ "grid": 28
+ },
+ {
+ "id": 19,
+ "paths": [
+ "M442.342 322.652c19.632 17.91 30.504 42.018 32.68 72.042l0.406 11.535-0.004 211.745-0.395 11.224c-2.154 30.073-13.041 54.228-32.688 72.152-22.056 20.122-53.91 30.080-95.231 30.080-40.902 0-72.545-9.962-94.597-30.080-19.632-17.909-30.504-42.021-32.678-72.042l-0.407-11.535 0.004-211.745 0.395-11.224c2.152-30.074 13.041-54.229 32.686-72.151 22.053-20.119 53.695-30.080 94.597-30.080 41.321 0 73.175 9.957 95.231 30.080zM347.135 365.714c-15.858 0-28.873 4.005-39.309 12.010-8.473 6.499-13.413 15.166-14.825 26.262l-0.423 6.949-0.007 201.878 0.331 6.36c1.268 11.491 6.22 20.429 14.923 27.103 10.436 8.005 23.451 12.010 39.309 12.010 15.871 0 28.999-4.012 39.641-12.039 8.62-6.499 13.637-15.159 15.071-26.24l0.432-6.941 0.007-201.874-0.336-6.356c-1.287-11.476-6.32-20.403-15.173-27.081-10.642-8.027-23.77-12.039-39.641-12.039z",
+ "M585.143 475.429v-164.571h-73.143v402.286h73.143v-164.571l10.971-14.629 93.63 179.2h78.256l-109.714-219.429 109.714-182.857h-87.771l-95.086 164.571z",
+ "M511.985 0c-282.762 0-511.985 229.224-511.985 511.985 0 282.763 229.224 511.985 511.985 511.985 282.763 0 511.985-229.222 511.985-511.985 0-282.762-229.222-511.985-511.985-511.985zM73.143 511.985c0-242.366 196.477-438.843 438.843-438.843s438.843 196.477 438.843 438.843c0 242.366-196.476 438.843-438.843 438.843s-438.843-196.476-438.843-438.843z"
+ ],
+ "attrs": [
+ {},
+ {},
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {},
+ {},
+ {}
+ ]
+ },
+ "tags": [
+ "ok"
+ ],
+ "defaultCode": 59814,
+ "grid": 28
+ },
+ {
+ "id": 20,
+ "paths": [
+ "M36.571 0v1024",
+ "M73.143 0v1024",
+ "M109.714 0v1024",
+ "M146.286 0v1024",
+ "M182.857 0v1024",
+ "M219.429 0v1024",
+ "M256 0v1024",
+ "M292.571 0v1024",
+ "M329.143 0v1024",
+ "M365.714 0v1024",
+ "M402.286 0v1024",
+ "M438.857 0v1024",
+ "M475.429 0v1024",
+ "M512 0v1024",
+ "M548.571 0v1024",
+ "M585.143 0v1024",
+ "M621.714 0v1024",
+ "M658.286 0v1024",
+ "M694.857 0v1024",
+ "M731.429 0v1024",
+ "M768 0v1024",
+ "M804.571 0v1024",
+ "M841.143 0v1024",
+ "M877.714 0v1024",
+ "M914.286 0v1024",
+ "M950.857 0v1024",
+ "M987.429 0v1024",
+ "M0 36.571h1024",
+ "M0 73.143h1024",
+ "M0 109.714h1024",
+ "M0 146.286h1024",
+ "M0 182.857h1024",
+ "M0 219.429h1024",
+ "M0 256h1024",
+ "M0 292.571h1024",
+ "M0 329.143h1024",
+ "M0 365.714h1024",
+ "M0 402.286h1024",
+ "M0 438.857h1024",
+ "M0 475.429h1024",
+ "M0 512h1024",
+ "M0 548.571h1024",
+ "M0 585.143h1024",
+ "M0 621.714h1024",
+ "M0 658.286h1024",
+ "M0 694.857h1024",
+ "M0 731.429h1024",
+ "M0 768h1024",
+ "M0 804.571h1024",
+ "M0 841.143h1024",
+ "M0 877.714h1024",
+ "M0 914.286h1024",
+ "M0 950.857h1024",
+ "M0 987.429h1024",
+ "M512 1024c-282.331 0-512-229.669-512-512s229.669-512 512-512c282.331 0 512 229.669 512 512s-229.669 512-512 512zM512 73.143c-242.003 0-438.857 196.854-438.857 438.857s196.854 438.857 438.857 438.857c242.001 0 438.857-196.854 438.857-438.857s-196.854-438.857-438.857-438.857z",
+ "M742.857 534.464c0 3.707-1.851 7.878-4.626 10.659l-215.59 215.957c-2.776 2.781-6.94 4.634-10.641 4.634s-7.865-1.854-10.641-4.634l-215.59-215.957c-2.776-2.781-4.626-6.951-4.626-10.659s1.851-7.878 4.626-10.659l23.132-23.171c2.776-2.781 6.477-4.634 10.641-4.634 3.701 0 7.865 1.854 10.641 4.634l181.817 182.127 181.817-182.127c2.776-2.781 6.94-4.634 10.641-4.634s7.865 1.854 10.641 4.634l23.132 23.171c2.776 2.781 4.626 6.951 4.626 10.659zM742.857 331.036c0 3.707-1.851 7.878-4.626 10.659l-215.59 215.957c-2.776 2.781-6.94 4.634-10.641 4.634s-7.865-1.854-10.641-4.634l-215.59-215.957c-2.776-2.781-4.626-6.951-4.626-10.659s1.851-7.878 4.626-10.659l23.132-23.171c2.776-2.781 6.477-4.634 10.641-4.634 3.701 0 7.865 1.854 10.641 4.634l181.817 182.127 181.817-182.127c2.776-2.781 6.94-4.634 10.641-4.634s7.865 1.854 10.641 4.634l23.132 23.171c2.776 2.781 4.626 6.951 4.626 10.659z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": []
+ },
+ "tags": [
+ "more-alt"
+ ],
+ "defaultCode": 59815,
+ "grid": 14
+ },
+ {
+ "id": 21,
+ "paths": [
+ "M146.286 402.286c-20.198 0-36.571 16.373-36.571 36.571v438.857c0 20.198 16.374 36.571 36.571 36.571h731.429c20.198 0 36.571-16.373 36.571-36.571v-438.857c0-20.198-16.373-36.571-36.571-36.571h-196.923c-20.198 0-36.571-16.373-36.571-36.571s16.373-36.571 36.571-36.571h196.923c60.595 0 109.714 49.119 109.714 109.714v438.857c0 60.595-49.119 109.714-109.714 109.714h-731.429c-60.593 0-109.714-49.119-109.714-109.714v-438.857c0-60.595 49.121-109.714 109.714-109.714h196.923c20.198 0 36.571 16.373 36.571 36.571s-16.373 36.571-36.571 36.571h-196.923z",
+ "M531.712 723.003l122.222-143.349c7.621-8.938 4.974-21.255-5.914-27.513-4.045-2.322-8.861-3.569-13.798-3.569h-244.443c-13.29 0-24.064 8.843-24.064 19.756 0 4.052 1.518 8.005 4.348 11.326l122.222 143.349c7.621 8.938 22.627 11.11 33.514 4.853 2.3-1.324 4.301-2.966 5.914-4.853z",
+ "M512 36.571c-20.198 0-36.571 16.374-36.571 36.571v512h73.143v-512c0-20.198-16.373-36.571-36.571-36.571z"
+ ],
+ "attrs": [
+ {},
+ {},
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {},
+ {},
+ {}
+ ]
+ },
+ "tags": [
+ "import"
+ ],
+ "defaultCode": 59652,
+ "grid": 18
+ },
+ {
+ "id": 22,
+ "paths": [
+ "M146.286 402.286c-20.198 0-36.571 16.373-36.571 36.571v438.857c0 20.198 16.374 36.571 36.571 36.571h731.429c20.198 0 36.571-16.373 36.571-36.571v-438.857c0-20.198-16.373-36.571-36.571-36.571h-196.923c-20.198 0-36.571-16.373-36.571-36.571s16.373-36.571 36.571-36.571h196.923c60.595 0 109.714 49.119 109.714 109.714v438.857c0 60.595-49.119 109.714-109.714 109.714h-731.429c-60.593 0-109.714-49.119-109.714-109.714v-438.857c0-60.595 49.121-109.714 109.714-109.714h196.923c20.198 0 36.571 16.373 36.571 36.571s-16.373 36.571-36.571 36.571h-196.923z",
+ "M531.712 44.999l122.222 143.346c7.621 8.938 4.974 21.256-5.914 27.512-4.045 2.324-8.861 3.571-13.798 3.571h-244.443c-13.29 0-24.064-8.844-24.064-19.755 0-4.053 1.518-8.008 4.348-11.329l122.222-143.346c7.621-8.938 22.627-11.112 33.514-4.855 2.3 1.323 4.301 2.966 5.914 4.855z",
+ "M512 694.857c-20.198 0-36.571-16.373-36.571-36.571v-512h73.143v512c0 20.198-16.373 36.571-36.571 36.571z"
+ ],
+ "attrs": [
+ {},
+ {},
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {},
+ {},
+ {}
+ ]
+ },
+ "tags": [
+ "export"
+ ],
+ "defaultCode": 59653,
+ "grid": 18
+ },
+ {
+ "id": 23,
+ "paths": [
+ "M36.571 292.571c0-60.593 49.121-109.714 109.714-109.714h731.429c60.595 0 109.714 49.121 109.714 109.714v365.714c0 60.595-49.119 109.714-109.714 109.714h-73.143v-73.143h73.143c20.198 0 36.571-16.373 36.571-36.571v-365.714c0-20.198-16.373-36.571-36.571-36.571h-731.429c-20.198 0-36.571 16.374-36.571 36.571v365.714c0 20.198 16.374 36.571 36.571 36.571h73.143v73.143h-73.143c-60.593 0-109.714-49.119-109.714-109.714v-365.714z",
+ "M182.857 621.714c0-40.397 32.747-73.143 73.143-73.143h512c40.397 0 73.143 32.746 73.143 73.143v292.571c0 40.397-32.746 73.143-73.143 73.143h-512c-40.396 0-73.143-32.746-73.143-73.143v-292.571zM768 621.714h-512v292.571h512v-292.571z",
+ "M292.571 109.714c0-40.396 32.747-73.143 73.143-73.143h292.571c40.397 0 73.143 32.747 73.143 73.143v73.143c0 40.396-32.746 73.143-73.143 73.143h-292.571c-40.396 0-73.143-32.747-73.143-73.143v-73.143zM658.286 109.714h-292.571v73.143h292.571v-73.143z"
+ ],
+ "attrs": [
+ {},
+ {},
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {},
+ {},
+ {}
+ ]
+ },
+ "tags": [
+ "printer"
+ ],
+ "defaultCode": 59654,
+ "grid": 28
+ },
+ {
+ "id": 24,
+ "paths": [
+ "M329.169 746.675l548.545 167.563v-804.474l-0.048-0.035-548.524 167.632v469.278l0.026 0.037zM307.795 207.376l548.499-167.597c46.961-14.35 94.563 20.741 94.563 69.985v804.474c0 49.236-47.594 84.337-94.563 69.983l-548.499-167.596c-30.747-9.395-51.795-37.778-51.795-69.987v-469.278c0-32.214 21.054-60.592 51.795-69.985z",
+ "M73.143 292.572c0-40.396 32.747-73.143 73.143-73.143h182.857v585.142h-182.857c-40.396 0-73.143-32.746-73.143-73.143v-438.857zM256 292.572h-109.714v438.857h109.714v-438.857z"
+ ],
+ "width": 1024,
+ "attrs": [
+ {},
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {},
+ {}
+ ]
+ },
+ "tags": [
+ "bullhorn"
+ ],
+ "defaultCode": 59664,
+ "grid": 28
+ },
+ {
+ "id": 25,
+ "paths": [
+ "M512 109.714c-80.79 0-146.286 65.494-146.286 146.286s65.496 146.286 146.286 146.286c80.79 0 146.286-65.494 146.286-146.286s-65.496-146.286-146.286-146.286zM292.571 256c0-121.187 98.242-219.429 219.429-219.429s219.429 98.241 219.429 219.429c0 121.187-98.242 219.429-219.429 219.429s-219.429-98.242-219.429-219.429zM73.143 804.571v73.143c0 60.595 49.121 109.714 109.714 109.714h658.286c60.595 0 109.714-49.119 109.714-109.714v-73.143c0-141.385-114.615-256-256-256h-365.714c-141.385 0-256 114.615-256 256zM329.143 621.714h365.714c100.988 0 182.857 81.869 182.857 182.857v73.143c0 20.198-16.373 36.571-36.571 36.571h-658.286c-20.198 0-36.571-16.373-36.571-36.571v-73.143c0-100.988 81.868-182.857 182.857-182.857z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {}
+ ]
+ },
+ "tags": [
+ "person"
+ ],
+ "defaultCode": 59713,
+ "grid": 28
+ },
+ {
+ "id": 26,
+ "paths": [
+ "M36.571 146.286c0-60.594 49.121-109.714 109.714-109.714h731.429c60.595 0 109.714 49.121 109.714 109.714v731.429c0 60.595-49.119 109.714-109.714 109.714h-731.429c-60.594 0-109.714-49.119-109.714-109.714v-731.429zM146.286 109.714c-20.198 0-36.571 16.374-36.571 36.571v731.429c0 20.198 16.374 36.571 36.571 36.571h731.429c20.198 0 36.571-16.373 36.571-36.571v-731.429c0-20.198-16.373-36.571-36.571-36.571h-731.429z",
+ "M219.429 329.143c0-20.198 16.374-36.571 36.571-36.571h182.857c20.198 0 36.571 16.374 36.571 36.571s-16.373 36.571-36.571 36.571h-182.857c-20.198 0-36.571-16.374-36.571-36.571z",
+ "M548.571 329.143c0-20.198 16.373-36.571 36.571-36.571h182.857c20.198 0 36.571 16.374 36.571 36.571s-16.373 36.571-36.571 36.571h-182.857c-20.198 0-36.571-16.374-36.571-36.571z",
+ "M219.429 512c0-20.198 16.374-36.571 36.571-36.571h182.857c20.198 0 36.571 16.373 36.571 36.571s-16.373 36.571-36.571 36.571h-182.857c-20.198 0-36.571-16.373-36.571-36.571z",
+ "M548.571 512c0-20.198 16.373-36.571 36.571-36.571h182.857c20.198 0 36.571 16.373 36.571 36.571s-16.373 36.571-36.571 36.571h-182.857c-20.198 0-36.571-16.373-36.571-36.571z",
+ "M219.429 694.857c0-20.198 16.374-36.571 36.571-36.571h182.857c20.198 0 36.571 16.373 36.571 36.571s-16.373 36.571-36.571 36.571h-182.857c-20.198 0-36.571-16.373-36.571-36.571z",
+ "M548.571 694.857c0-20.198 16.373-36.571 36.571-36.571h182.857c20.198 0 36.571 16.373 36.571 36.571s-16.373 36.571-36.571 36.571h-182.857c-20.198 0-36.571-16.373-36.571-36.571z"
+ ],
+ "attrs": [
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {}
+ ]
+ },
+ "tags": [
+ "fields"
+ ],
+ "defaultCode": 59785,
+ "grid": 28
+ },
+ {
+ "id": 27,
+ "paths": [
+ "M329.143 109.714c-121.187 0-219.429 98.241-219.429 219.429s98.241 219.429 219.429 219.429c20.198 0 36.571 16.373 36.571 36.571s-16.374 36.571-36.571 36.571c-161.583 0-292.571-130.988-292.571-292.571s130.989-292.571 292.571-292.571c161.584 0 292.571 130.989 292.571 292.571 0 20.198-16.373 36.571-36.571 36.571s-36.571-16.374-36.571-36.571c0-121.187-98.242-219.429-219.429-219.429z",
+ "M329.143 256c-40.396 0-73.143 32.747-73.143 73.143 0 40.397 32.747 73.143 73.143 73.143 8.614 0 16.805-1.474 24.384-4.151l24.373 68.959c-15.297 5.409-31.725 8.335-48.757 8.335-80.791 0-146.286-65.496-146.286-146.286 0-80.791 65.494-146.286 146.286-146.286 80.79 0 146.286 65.494 146.286 146.286 0 17.032-2.926 33.46-8.335 48.757l-68.959-24.373c2.677-7.579 4.151-15.77 4.151-24.384 0-40.396-32.746-73.143-73.143-73.143z",
+ "M327.305 327.306c9.741-9.741 24.13-13.182 37.224-8.901l597.691 195.406c13.027 4.261 22.579 15.444 24.744 28.979 2.169 13.531-3.412 27.14-14.457 35.255l-227.394 167.069-167.066 227.397c-8.115 11.045-21.723 16.625-35.259 14.457-13.531-2.169-24.719-11.721-28.976-24.748l-195.41-597.69c-4.281-13.094-0.84-27.483 8.901-37.225zM410.331 410.331l150.894 461.535 128.252-174.566c2.198-2.988 4.835-5.625 7.819-7.819l174.57-128.256-461.535-150.894z"
+ ],
+ "attrs": [
+ {},
+ {},
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {},
+ {},
+ {}
+ ]
+ },
+ "tags": [
+ "trigger"
+ ],
+ "defaultCode": 59786,
+ "grid": 28
+ },
+ {
+ "id": 28,
+ "paths": [
+ "M36.571 146.286c0-60.594 49.121-109.714 109.714-109.714h731.429c60.595 0 109.714 49.121 109.714 109.714v731.429c0 60.595-49.119 109.714-109.714 109.714h-731.429c-60.594 0-109.714-49.119-109.714-109.714v-731.429zM146.286 109.714c-20.198 0-36.571 16.374-36.571 36.571v731.429c0 20.198 16.374 36.571 36.571 36.571h731.429c20.198 0 36.571-16.373 36.571-36.571v-731.429c0-20.198-16.373-36.571-36.571-36.571h-731.429z",
+ "M914.286 402.286h-804.571v-73.143h804.571v73.143z",
+ "M329.143 914.286v-512h73.143v512h-73.143z"
+ ],
+ "attrs": [
+ {},
+ {},
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {},
+ {},
+ {}
+ ]
+ },
+ "tags": [
+ "layout"
+ ],
+ "defaultCode": 59787,
+ "grid": 28
+ },
+ {
+ "id": 29,
+ "paths": [
+ "M713.143 585.143c-70.693 0-128 57.307-128 128s57.307 128 128 128c70.689 0 127.996-57.307 127.996-128s-57.307-128-127.996-128zM512 713.143c0-111.086 90.053-201.143 201.143-201.143 111.086 0 201.139 90.057 201.139 201.143s-90.053 201.143-201.139 201.143c-111.089 0-201.143-90.057-201.143-201.143z",
+ "M815.283 815.283c14.281-14.281 37.438-14.281 51.719 0l109.714 109.714c14.281 14.281 14.281 37.438 0 51.719s-37.438 14.281-51.719 0l-109.714-109.714c-14.281-14.281-14.281-37.438 0-51.719z",
+ "M36.571 146.286v731.429c0 60.595 49.121 109.714 109.714 109.714h365.714c20.198 0 36.571-16.373 36.571-36.571s-16.373-36.571-36.571-36.571h-365.714c-20.198 0-36.571-16.373-36.571-36.571v-731.429c0-20.198 16.374-36.571 36.571-36.571h731.429c20.198 0 36.571 16.374 36.571 36.571v365.714c0 20.198 16.373 36.571 36.571 36.571s36.571-16.373 36.571-36.571v-365.714c0-60.593-49.119-109.714-109.714-109.714h-731.429c-60.593 0-109.714 49.121-109.714 109.714z",
+ "M219.429 292.571c0-20.198 16.374-36.571 36.571-36.571h512c20.198 0 36.571 16.374 36.571 36.571s-16.373 36.571-36.571 36.571h-512c-20.198 0-36.571-16.374-36.571-36.571z",
+ "M219.429 512c0-20.198 16.374-36.571 36.571-36.571h219.429c20.198 0 36.571 16.373 36.571 36.571s-16.373 36.571-36.571 36.571h-219.429c-20.198 0-36.571-16.373-36.571-36.571z"
+ ],
+ "attrs": [
+ {},
+ {},
+ {},
+ {},
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {},
+ {},
+ {},
+ {},
+ {}
+ ]
+ },
+ "tags": [
+ "audit"
+ ],
+ "defaultCode": 59788,
+ "grid": 28
+ },
+ {
+ "id": 30,
+ "paths": [
+ "M512 109.714c-222.176 0-402.286 180.11-402.286 402.286 0 222.175 180.11 402.286 402.286 402.286 222.175 0 402.286-180.111 402.286-402.286 0-222.176-180.111-402.286-402.286-402.286zM36.571 512c0-262.572 212.857-475.429 475.429-475.429s475.429 212.857 475.429 475.429c0 262.572-212.857 475.429-475.429 475.429s-475.429-212.857-475.429-475.429z",
+ "M858.887 238.253l-620.637 620.638-51.72-51.719 620.638-620.639 51.719 51.72z"
+ ],
+ "attrs": [
+ {},
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {},
+ {}
+ ]
+ },
+ "tags": [
+ "cancel"
+ ],
+ "defaultCode": 59729,
+ "grid": 28
+ },
+ {
+ "id": 31,
+ "paths": [
+ "M658.286 512c0 80.79-65.496 146.286-146.286 146.286s-146.286-65.496-146.286-146.286c0-80.79 65.496-146.286 146.286-146.286s146.286 65.496 146.286 146.286z",
+ "M0 512c0 0 128 329.143 512 329.143s512-329.143 512-329.143c0 0-128-329.143-512-329.143s-512 329.143-512 329.143zM68.109 538.668c-0.042 0.102-0.063 0.157-0.063 0.157l0.041-0.102 0.022-0.055zM81.023 512c2.374-4.432 5.089-9.315 8.156-14.574 15.705-26.924 40.267-63.016 75.264-99.010 69.126-71.103 179.115-142.416 347.557-142.416 168.441 0 278.429 71.314 347.557 142.416 34.999 35.994 59.56 72.086 75.264 99.010 3.068 5.259 5.782 10.141 8.155 14.574-2.373 4.432-5.087 9.315-8.155 14.574-15.704 26.924-40.265 63.016-75.264 99.010-69.127 71.102-179.116 142.416-347.557 142.416-168.442 0-278.431-71.314-347.557-142.416-34.997-35.994-59.559-72.086-75.264-99.010-3.068-5.259-5.782-10.141-8.156-14.574zM955.889 485.332c0.033-0.084 0.055-0.132 0.062-0.15l-0.037 0.095-0.026 0.055zM955.889 538.668l0.026 0.055 0.037 0.095c-0.007-0.018-0.029-0.066-0.062-0.15zM68.109 485.332l-0.060-0.15c-0.010-0.026 0.010 0.026 0.060 0.15z"
+ ],
+ "attrs": [
+ {},
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {},
+ {}
+ ]
+ },
+ "tags": [
+ "eye-outline"
+ ],
+ "defaultCode": 59726,
+ "grid": 28
+ },
+ {
+ "id": 32,
+ "paths": [
+ "M150.723 149.962l53.924 53.924c1.195 1.697 2.552 3.315 4.069 4.833l620.636 620.638c1.518 1.518 3.138 2.875 4.835 4.070l14.753 14.753c14.281 14.281 14.281 37.438 0 51.719s-37.438 14.281-51.719 0l-90.745-90.745c-55.921 19.752-120.441 31.989-194.476 31.989-384 0-512-329.143-512-329.143s50.45-129.73 183.024-226.298l-84.021-84.021c-14.282-14.282-14.282-37.438 0-51.72s37.438-14.282 51.72 0zM318.084 214.647c55.793-19.636 120.125-31.79 193.916-31.79 384 0 512 329.143 512 329.143s-50.341 129.445-182.587 225.979l-52.432-52.436c27.22-18.853 50.604-39.413 70.576-59.959 34.999-35.994 59.56-72.086 75.264-99.010 3.068-5.259 5.782-10.141 8.155-14.574-2.373-4.432-5.087-9.315-8.155-14.574-15.704-26.924-40.265-63.016-75.264-99.010-69.127-71.103-179.116-142.416-347.557-142.416-50.187 0-95.188 6.331-135.461 17.101l-58.455-58.454zM653.33 549.892l-179.222-179.222c12.083-3.233 24.788-4.955 37.892-4.955 80.79 0 146.286 65.496 146.286 146.286 0 13.104-1.723 25.808-4.955 37.892zM235.468 338.146c-27.411 18.938-50.943 39.611-71.025 60.27-34.997 35.994-59.559 72.086-75.264 99.010-3.068 5.259-5.782 10.141-8.156 14.574 2.374 4.432 5.089 9.315 8.156 14.574 15.705 26.924 40.267 63.016 75.264 99.010 69.126 71.102 179.115 142.416 347.557 142.416 50.436 0 95.634-6.393 136.060-17.262l-97.569-97.569c-12.266 3.335-25.172 5.116-38.491 5.116-80.79 0-146.286-65.496-146.286-146.286 0-13.319 1.781-26.225 5.116-38.491l-135.363-135.362zM68.109 538.668l-0.022 0.055-0.041 0.102 0.063-0.157zM68.109 485.332v0z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {}
+ ]
+ },
+ "tags": [
+ "eye-off-outline"
+ ],
+ "defaultCode": 59758,
+ "grid": 28
+ },
+ {
+ "id": 33,
+ "paths": [
+ "M365.714 198.531v20.898c0 20.198-16.374 36.571-36.571 36.571s-36.571-16.374-36.571-36.571v-20.898c0-89.447 72.512-161.959 161.96-161.959h114.937c89.45 0 161.96 72.512 161.96 161.959v167.184h120.163c54.824 0 99.266 44.442 99.266 99.266v423.183c0 54.824-44.442 99.266-99.266 99.266h-679.183c-54.822 0-99.265-44.442-99.265-99.266v-423.183c0-54.824 44.443-99.266 99.265-99.266h485.877v-167.184c0-49.052-39.764-88.816-88.817-88.816h-114.937c-49.053 0-88.817 39.764-88.817 88.816zM694.857 438.857h-522.449c-14.427 0-26.123 11.696-26.123 26.123v423.183c0 14.427 11.696 26.123 26.122 26.123h679.183c14.427 0 26.123-11.696 26.123-26.123v-423.183c0-14.427-11.696-26.123-26.123-26.123h-156.734zM512 548.571c-20.198 0-36.571 16.373-36.571 36.571v182.857c0 20.198 16.373 36.571 36.571 36.571s36.571-16.373 36.571-36.571v-182.857c0-20.198-16.373-36.571-36.571-36.571z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {}
+ ]
+ },
+ "tags": [
+ "lock-open-outline"
+ ],
+ "defaultCode": 59727,
+ "grid": 28
+ },
+ {
+ "id": 34,
+ "paths": [
+ "M512 548.571c20.198 0 36.571 16.373 36.571 36.571v182.857c0 20.198-16.373 36.571-36.571 36.571s-36.571-16.373-36.571-36.571v-182.857c0-20.198 16.373-36.571 36.571-36.571z",
+ "M292.571 365.714v-182.857c0-80.791 65.494-146.286 146.286-146.286h146.286c80.79 0 146.286 65.494 146.286 146.286v182.857h109.714c60.595 0 109.714 49.119 109.714 109.714v402.286c0 60.595-49.119 109.714-109.714 109.714h-658.286c-60.594 0-109.714-49.119-109.714-109.714v-402.286c0-60.595 49.121-109.714 109.714-109.714h109.714zM365.714 182.857v182.857h292.571v-182.857c0-40.396-32.746-73.143-73.143-73.143h-146.286c-40.397 0-73.143 32.747-73.143 73.143zM182.857 438.857c-20.198 0-36.571 16.373-36.571 36.571v402.286c0 20.198 16.374 36.571 36.571 36.571h658.286c20.198 0 36.571-16.373 36.571-36.571v-402.286c0-20.198-16.373-36.571-36.571-36.571h-658.286z"
+ ],
+ "attrs": [
+ {},
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {},
+ {}
+ ]
+ },
+ "tags": [
+ "lock-outline"
+ ],
+ "defaultCode": 59728,
+ "grid": 28
+ },
+ {
+ "id": 35,
+ "paths": [
+ "M497.218 43.314l-91.67 114.677c-5.712 7.15-3.727 17.005 4.436 22.010 3.035 1.86 6.649 2.857 10.35 2.857h55.095v292.571h-292.571v-55.095c0-9.969-7.076-18.048-15.804-18.048-3.242 0-6.407 1.137-9.063 3.262l-114.677 91.666c-7.15 5.716-8.889 16.969-3.884 25.136 1.058 1.726 2.373 3.226 3.884 4.432l114.677 91.67c7.15 5.712 17.005 3.727 22.010-4.436 1.86-3.035 2.857-6.649 2.857-10.35v-55.095h292.571v292.571h-55.095c-9.969 0-18.048 7.077-18.048 15.803 0 3.244 1.137 6.407 3.262 9.066l91.666 114.673c5.716 7.153 16.969 8.891 25.136 3.884 1.726-1.057 3.226-2.37 4.432-3.884l91.67-114.673c5.712-7.153 3.727-17.006-4.436-22.012-3.035-1.858-6.649-2.856-10.35-2.856h-55.095v-292.571h292.571v55.095c0 9.969 7.077 18.048 15.803 18.048 3.244 0 6.407-1.137 9.066-3.262l114.673-91.666c7.153-5.716 8.891-16.969 3.884-25.136-1.057-1.726-2.37-3.226-3.884-4.432l-114.673-91.67c-7.153-5.712-17.006-3.727-22.012 4.436-1.858 3.035-2.856 6.649-2.856 10.35v55.095h-292.571v-292.571h55.095c9.969 0 18.048-7.076 18.048-15.804 0-3.242-1.137-6.407-3.262-9.063l-91.666-114.677c-5.716-7.15-16.969-8.889-25.136-3.884-1.726 1.058-3.226 2.373-4.432 3.884z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {}
+ ]
+ },
+ "tags": [
+ "move"
+ ],
+ "defaultCode": 59724,
+ "grid": 28
+ },
+ {
+ "id": 36,
+ "paths": [
+ "M219.429 182.857v694.857h365.714c20.198 0 36.571-16.373 36.571-36.571s-16.373-36.571-36.571-36.571h-36.571c-20.198 0-36.571-16.373-36.571-36.571s16.373-36.571 36.571-36.571h73.143c20.198 0 36.571-16.373 36.571-36.571s-16.373-36.571-36.571-36.571h-36.571c-20.198 0-36.571-16.373-36.571-36.571s16.373-36.571 36.571-36.571h73.143c20.198 0 36.571-16.373 36.571-36.571s-16.373-36.571-36.571-36.571h-36.571c-20.198 0-36.571-16.373-36.571-36.571s16.373-36.571 36.571-36.571h292.571c20.198 0 36.571-16.373 36.571-36.571s-16.373-36.571-36.571-36.571h-585.143c-20.198 0-36.571-16.374-36.571-36.571v-146.286c0-20.198-16.374-36.571-36.571-36.571s-36.571 16.374-36.571 36.571zM717.349 641.046c8.964 15.901 14.080 34.256 14.080 53.811 0 38.85-20.191 72.982-50.651 92.475 8.964 15.901 14.080 34.256 14.080 53.811 0 60.595-49.119 109.714-109.714 109.714h-399.559c-21.704 0-39.299-17.595-39.299-39.3v-728.7c0-60.594 49.121-109.714 109.714-109.714s109.714 49.121 109.714 109.714v109.714h548.571c60.595 0 109.714 49.121 109.714 109.714 0 60.595-49.119 109.714-109.714 109.714h-152.528c4.041 11.44 6.243 23.749 6.243 36.571 0 38.85-20.191 72.982-50.651 92.475zM73.143 329.143v512c0 20.198-16.374 36.571-36.571 36.571s-36.571-16.373-36.571-36.571v-512c0-20.198 16.374-36.571 36.571-36.571s36.571 16.374 36.571 36.571z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {}
+ ]
+ },
+ "tags": [
+ "hand-right"
+ ],
+ "defaultCode": 59655,
+ "grid": 28
+ },
+ {
+ "id": 37,
+ "paths": [
+ "M512 36.571c-262.572 0-475.429 212.857-475.429 475.429s212.857 475.429 475.429 475.429c262.572 0 475.429-212.857 475.429-475.429 0-39.212-4.754-77.36-13.736-113.883-4.824-19.617-24.631-31.605-44.244-26.781-19.617 4.824-31.605 24.631-26.781 44.244 7.585 30.855 11.619 63.141 11.619 96.421 0 222.175-180.111 402.286-402.286 402.286-222.176 0-402.286-180.111-402.286-402.286 0-222.176 180.11-402.286 402.286-402.286 53.592 0 104.645 10.459 151.307 29.414 18.714 7.602 40.046-1.406 47.645-20.118 7.603-18.713-1.404-40.045-20.118-47.647-55.252-22.446-115.646-34.792-178.834-34.792zM978.695 170.005c13.1-15.374 11.253-38.456-4.118-51.556-15.375-13.1-38.459-11.256-51.558 4.118l-412.442 484.040-194.164-166.93c-15.316-13.166-38.406-11.425-51.573 3.891-13.168 15.312-11.426 38.404 3.889 51.573l222.019 190.877c7.376 6.341 16.973 9.483 26.672 8.73s18.695-5.339 25.004-12.741l436.272-512.001z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {}
+ ]
+ },
+ "tags": [
+ "checked"
+ ],
+ "defaultCode": 59656,
+ "grid": 28
+ },
+ {
+ "id": 38,
+ "paths": [
+ "M548.571 73.143c0-20.198-16.373-36.571-36.571-36.571s-36.571 16.374-36.571 36.571v402.286c0 20.198 16.373 36.571 36.571 36.571s36.571-16.373 36.571-36.571v-402.286zM231.858 208.836c14.348-14.216 14.455-37.371 0.239-51.719s-37.372-14.454-51.719-0.238c-88.744 87.928-143.807 210.866-143.807 346.707 0 266.562 212.205 483.844 475.429 483.844s475.429-217.282 475.429-483.844c0-134.246-53.778-255.89-140.694-343.594-14.219-14.346-37.372-14.451-51.719-0.233s-14.449 37.373-0.234 51.719c73.75 74.419 119.504 177.72 119.504 292.108 0 227.482-180.762 410.701-402.286 410.701s-402.286-183.219-402.286-410.701c0-115.749 46.846-220.143 122.144-294.749z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {}
+ ]
+ },
+ "tags": [
+ "off"
+ ],
+ "defaultCode": 59657,
+ "grid": 28
+ },
+ {
+ "id": 39,
+ "paths": [
+ "M109.714 146.286c0-20.198 16.374-36.571 36.571-36.571h731.429c20.198 0 36.571 16.374 36.571 36.571v731.429c0 20.198-16.373 36.571-36.571 36.571h-731.429c-20.198 0-36.571-16.373-36.571-36.571v-731.429zM146.286 36.571c-60.593 0-109.714 49.121-109.714 109.714v731.429c0 60.595 49.121 109.714 109.714 109.714h731.429c60.595 0 109.714-49.119 109.714-109.714v-731.429c0-60.593-49.119-109.714-109.714-109.714h-731.429zM365.714 654.716v-285.433c0-8.684 3.046-17.135 8.682-24.083 14.38-17.735 41.585-21.329 60.763-8.028l205.762 142.717c3.291 2.282 6.213 4.985 8.682 8.027 14.38 17.733 10.496 42.895-8.682 56.196l-205.762 142.716c-7.512 5.211-16.651 8.027-26.043 8.027-23.969 0-43.403-17.971-43.403-40.141z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {}
+ ]
+ },
+ "tags": [
+ "start"
+ ],
+ "defaultCode": 59658,
+ "grid": 28
+ },
+ {
+ "id": 40,
+ "paths": [
+ "M109.714 135.837c0-14.427 11.696-26.122 26.123-26.122h752.326c14.427 0 26.123 11.696 26.123 26.123v752.326c0 14.427-11.696 26.123-26.123 26.123h-752.326c-14.427 0-26.122-11.696-26.122-26.123v-752.326zM135.837 36.571c-54.823 0-99.265 44.443-99.265 99.265v752.326c0 54.824 44.443 99.266 99.265 99.266h752.326c54.824 0 99.266-44.442 99.266-99.266v-752.326c0-54.823-44.442-99.265-99.266-99.265h-752.326zM548.571 292.571c0-20.198-16.373-36.571-36.571-36.571s-36.571 16.374-36.571 36.571v213.716c0 13.356 5.307 26.167 14.753 35.613l142.245 142.245c14.281 14.281 37.438 14.281 51.719 0s14.281-37.438 0-51.719l-135.574-135.574v-204.281z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {}
+ ]
+ },
+ "tags": [
+ "time"
+ ],
+ "defaultCode": 59659,
+ "grid": 28
+ },
+ {
+ "id": 41,
+ "paths": [
+ "M109.714 146.286c0-20.198 16.373-36.571 36.571-36.571h491.103c20.198 0 36.571-16.374 36.571-36.571s-16.373-36.571-36.571-36.571h-491.103c-60.593 0-109.714 49.121-109.714 109.714v731.429c0 60.595 49.121 109.714 109.714 109.714h731.429c60.595 0 109.714-49.119 109.714-109.714v-491.103c0-20.198-16.373-36.57-36.571-36.57s-36.571 16.372-36.571 36.57v491.103c0 20.198-16.373 36.571-36.571 36.571h-731.429c-20.198 0-36.571-16.373-36.571-36.571v-731.429zM979.485 102.439c14.457-14.108 14.735-37.262 0.629-51.716-14.109-14.454-37.263-14.735-51.716-0.627l-518.173 505.753c-14.453 14.106-14.735 37.259-0.629 51.716 14.109 14.453 37.263 14.735 51.716 0.625l518.173-505.751z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {}
+ ]
+ },
+ "tags": [
+ "edit"
+ ],
+ "defaultCode": 59660,
+ "grid": 28
+ },
+ {
+ "id": 42,
+ "paths": [
+ "M329.143 73.143c0-40.396 32.747-73.143 73.143-73.143h219.429c40.397 0 73.143 32.747 73.143 73.143v109.714h292.571c20.198 0 36.571 16.374 36.571 36.571s-16.373 36.571-36.571 36.571h-950.857c-20.198 0-36.571-16.374-36.571-36.571s16.374-36.571 36.571-36.571h292.571v-109.714zM402.286 182.857h219.429v-109.714h-219.429v109.714z",
+ "M144.138 329.206c20.163-1.186 37.47 14.198 38.656 34.361l32.522 552.866c1.137 19.332 17.144 34.425 36.508 34.425h520.353c19.365 0 35.372-15.093 36.509-34.425l32.519-552.866c1.189-20.163 18.494-35.547 38.656-34.361 20.165 1.186 35.547 18.493 34.363 38.655l-32.523 552.869c-3.412 57.991-51.434 103.27-109.524 103.27h-520.353c-58.091 0-106.114-45.279-109.525-103.27l-32.522-552.869c-1.186-20.162 14.198-37.469 34.361-38.655z",
+ "M621.714 438.857c20.198 0 36.571 16.373 36.571 36.571v292.571c0 20.198-16.373 36.571-36.571 36.571s-36.571-16.373-36.571-36.571v-292.571c0-20.198 16.373-36.571 36.571-36.571z",
+ "M438.857 475.429c0-20.198-16.373-36.571-36.571-36.571s-36.571 16.373-36.571 36.571v292.571c0 20.198 16.373 36.571 36.571 36.571s36.571-16.373 36.571-36.571v-292.571z"
+ ],
+ "attrs": [
+ {},
+ {},
+ {},
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {},
+ {},
+ {},
+ {}
+ ]
+ },
+ "tags": [
+ "trash"
+ ],
+ "defaultCode": 59661,
+ "grid": 28
+ },
+ {
+ "id": 43,
+ "paths": [
+ "M752.837 57.995c-28.566-28.564-74.876-28.565-103.442-0.001l-213.098 213.095c-28.566 28.564-28.566 74.876 0 103.439l11.97 11.973c14.281 14.281 37.438 14.281 51.719 0 14.285-14.285 14.285-37.439 0-51.722l-11.97-11.971 213.098-213.095 213.091 213.095-213.094 213.094-11.97-11.97c-14.281-14.281-37.438-14.281-51.719 0s-14.281 37.438 0 51.719l11.97 11.97c28.566 28.566 74.876 28.566 103.439 0l213.098-213.094c28.562-28.563 28.562-74.874 0-103.438l-213.091-213.095zM689.145 334.776c14.281 14.282 14.281 37.437 0 51.718l-302.647 302.647c-14.281 14.281-37.438 14.281-51.72 0s-14.282-37.438 0-51.719l302.647-302.646c14.281-14.282 37.435-14.282 51.719 0zM271.089 436.297c28.564-28.562 74.876-28.562 103.439 0l11.973 11.973c14.281 14.281 14.281 37.438 0 51.719-14.285 14.281-37.44 14.281-51.722 0l-11.971-11.97-213.095 213.094 213.095 213.094 213.094-213.094-11.97-11.97c-14.281-14.285-14.281-37.438 0-51.723 14.281-14.281 37.438-14.281 51.719 0l11.97 11.973c28.566 28.562 28.566 74.873 0 103.439l-213.094 213.094c-28.563 28.566-74.875 28.566-103.439 0l-213.095-213.094c-28.564-28.566-28.564-74.876 0-103.439l213.095-213.098z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {}
+ ]
+ },
+ "tags": [
+ "link"
+ ],
+ "defaultCode": 59662,
+ "grid": 28
+ },
+ {
+ "id": 44,
+ "paths": [
+ "M757.288 47.283c-6.857-6.859-16.161-10.712-25.86-10.712s-19.003 3.853-25.86 10.711l-256 256c-14.281 14.282-14.281 37.438 0 51.72 14.281 14.281 37.438 14.281 51.719 0l230.14-230.14 167.709 167.711-230.14 230.142c-14.281 14.281-14.281 37.435 0 51.719 14.281 14.281 37.438 14.281 51.719 0l256-256.001c14.281-14.282 14.281-37.438 0-51.72l-219.429-219.431zM438.857 109.716c0-20.198-16.373-36.571-36.571-36.571s-36.571 16.374-36.571 36.571v109.714c0 20.198 16.373 36.571 36.571 36.571s36.571-16.373 36.571-36.571v-109.714zM658.286 804.571c0-20.198-16.373-36.571-36.571-36.571s-36.571 16.373-36.571 36.571v109.714c0 20.198 16.373 36.571 36.571 36.571s36.571-16.373 36.571-36.571v-109.714zM793.86 742.14l73.143 73.143c14.281 14.281 14.281 37.438 0 51.719s-37.438 14.281-51.719 0l-73.143-73.143c-14.281-14.281-14.281-37.438 0-51.719s37.438-14.281 51.719 0zM208.717 156.999c-14.282-14.282-37.438-14.282-51.72 0s-14.282 37.438 0 51.72l73.143 73.143c14.282 14.282 37.438 14.282 51.72 0s14.282-37.438 0-51.72l-73.143-73.143zM768 621.714c0-20.198 16.373-36.571 36.571-36.571h109.714c20.198 0 36.571 16.373 36.571 36.571s-16.373 36.571-36.571 36.571h-109.714c-20.198 0-36.571-16.373-36.571-36.571zM109.714 365.718c-20.198 0-36.571 16.373-36.571 36.571 0 20.195 16.374 36.571 36.571 36.571h109.714c20.198 0 36.571-16.377 36.571-36.571 0-20.198-16.374-36.571-36.571-36.571h-109.714zM355.003 449.569c14.281 14.281 14.281 37.438 0 51.719l-230.14 230.14 167.709 167.709 230.14-230.14c14.281-14.281 37.438-14.281 51.719 0s14.281 37.438 0 51.719l-256 256c-14.282 14.281-37.438 14.281-51.72 0l-219.429-219.429c-14.282-14.281-14.282-37.438 0-51.719l256-256c14.282-14.281 37.438-14.281 51.72 0z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {}
+ ]
+ },
+ "tags": [
+ "unlink"
+ ],
+ "defaultCode": 59663,
+ "grid": 28
+ },
+ {
+ "id": 45,
+ "paths": [
+ "M512 109.714c-60.595 0-109.714 49.121-109.714 109.714v36.571c0 20.198-16.373 36.571-36.571 36.571s-36.571-16.374-36.571-36.571v-36.571c0-100.989 81.869-182.857 182.857-182.857s182.857 81.868 182.857 182.857v36.571c0 20.198-16.373 36.571-36.571 36.571s-36.571-16.374-36.571-36.571v-36.571c0-60.593-49.119-109.714-109.714-109.714zM219.429 438.857h-36.571c-60.593 0-109.714-49.119-109.714-109.714v-36.571c0-20.198 16.374-36.571 36.571-36.571s36.571 16.374 36.571 36.571v36.571c0 20.198 16.374 36.571 36.571 36.571h658.286c20.198 0 36.571-16.373 36.571-36.571v-36.571c0-20.198 16.373-36.571 36.571-36.571s36.571 16.374 36.571 36.571v36.571c0 60.595-49.119 109.714-109.714 109.714h-36.571v109.714h109.714c20.198 0 36.571 16.373 36.571 36.571s-16.373 36.571-36.571 36.571h-109.714v73.143c0 12.387-0.768 24.591-2.264 36.571h38.835c60.595 0 109.714 49.119 109.714 109.714v36.571c0 20.198-16.373 36.571-36.571 36.571s-36.571-16.373-36.571-36.571v-36.571c0-20.198-16.373-36.571-36.571-36.571h-57.838c-43.403 107.22-148.52 182.857-271.305 182.857s-227.903-75.637-271.304-182.857h-57.838c-20.198 0-36.571 16.373-36.571 36.571v36.571c0 20.198-16.374 36.571-36.571 36.571s-36.571-16.373-36.571-36.571v-36.571c0-60.595 49.121-109.714 109.714-109.714h38.835c-1.494-11.981-2.263-24.185-2.263-36.571v-73.143h-109.714c-20.198 0-36.571-16.373-36.571-36.571s16.374-36.571 36.571-36.571h109.714v-109.714zM292.571 438.857v256c0 121.187 98.242 219.429 219.429 219.429s219.429-98.242 219.429-219.429v-256h-438.857z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {}
+ ]
+ },
+ "tags": [
+ "bug"
+ ],
+ "defaultCode": 59665,
+ "grid": 28
+ },
+ {
+ "id": 46,
+ "paths": [
+ "M109.714 36.571h804.571c40.397 0 73.143 32.747 73.143 73.143v804.571c0 40.397-32.746 73.143-73.143 73.143h-804.571c-40.396 0-73.143-32.746-73.143-73.143v-804.571c0-40.396 32.747-73.143 73.143-73.143zM109.714 109.714v146.286h804.571v-146.286h-804.571zM109.714 329.143v585.143h804.571v-585.143h-804.571zM475.429 512h292.571c20.198 0 36.571 16.373 36.571 36.571s-16.373 36.571-36.571 36.571h-292.571c-20.198 0-36.571-16.373-36.571-36.571s16.373-36.571 36.571-36.571zM438.857 731.429c0 20.198 16.373 36.571 36.571 36.571h292.571c20.198 0 36.571-16.373 36.571-36.571s-16.373-36.571-36.571-36.571h-292.571c-20.198 0-36.571 16.373-36.571 36.571zM256 694.857h73.143c20.198 0 36.571 16.373 36.571 36.571s-16.374 36.571-36.571 36.571h-73.143c-20.198 0-36.571-16.373-36.571-36.571s16.374-36.571 36.571-36.571zM219.429 548.571c0 20.198 16.374 36.571 36.571 36.571h73.143c20.198 0 36.571-16.373 36.571-36.571s-16.374-36.571-36.571-36.571h-73.143c-20.198 0-36.571 16.373-36.571 36.571z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {}
+ ]
+ },
+ "tags": [
+ "list-alt"
+ ],
+ "defaultCode": 59666,
+ "grid": 28
+ },
+ {
+ "id": 47,
+ "paths": [
+ "M984.166 157.99l-91.67-114.677c-1.207-1.511-2.706-2.826-4.432-3.884-8.166-5.005-19.419-3.266-25.136 3.884l-91.666 114.677c-2.125 2.656-3.262 5.82-3.262 9.063 0 8.728 8.079 15.804 18.048 15.804h55.095v412.734c0 14.427-11.696 26.123-26.123 26.123h-449.306c-20.198 0-36.571 16.373-36.571 36.571s16.373 36.571 36.571 36.571h449.306c54.824 0 99.266-44.442 99.266-99.266v-412.734h55.095c3.701 0 7.314-0.997 10.35-2.857 8.163-5.005 10.149-14.859 4.436-22.010zM208.98 329.143c-54.823 0-99.265 44.442-99.265 99.266v412.734h-55.096c-9.967 0-18.047 7.077-18.047 15.803 0 3.244 1.139 6.407 3.262 9.066l91.667 114.673c5.716 7.153 16.969 8.891 25.134 3.884 1.726-1.057 3.227-2.37 4.435-3.884l91.666-114.673c5.716-7.153 3.73-17.006-4.435-22.012-3.033-1.858-6.646-2.856-10.349-2.856h-55.094v-412.734c0-14.427 11.696-26.123 26.123-26.123h449.306c20.198 0 36.571-16.373 36.571-36.571s-16.373-36.571-36.571-36.571h-449.306z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {}
+ ]
+ },
+ "tags": [
+ "change"
+ ],
+ "defaultCode": 59760,
+ "grid": 28
+ },
+ {
+ "id": 48,
+ "paths": [
+ "M363.003 169.038c7.634 18.7-1.339 40.047-20.039 47.68l-113.772 46.437-101.612 248.845h311.277c10.346 0 20.206 4.381 27.14 12.061 6.938 7.676 10.295 17.931 9.245 28.222l-7.088 69.431h87.691l-7.084-69.431c-1.050-10.291 2.308-20.546 9.242-28.222 6.934-7.68 16.794-12.061 27.14-12.061h311.278l-101.61-248.845-113.774-46.437c-18.699-7.633-27.67-28.98-20.037-47.68s28.979-27.672 47.678-20.039l128 52.245c9.099 3.714 16.322 10.935 20.037 20.035l127.978 313.415c0.051 0.128 0.102 0.252 0.154 0.38 2.337 5.884 3.043 12.021 2.322 17.902l-26.050 255.309c-1.905 18.666-17.624 32.859-36.385 32.859h-313.468c-18.761 0-34.48-14.193-36.381-32.859l-11.575-113.426h-102.619l-11.571 113.426c-1.905 18.666-17.624 32.859-36.385 32.859h-313.468c-18.76 0-34.478-14.193-36.383-32.859l-26.052-255.309c-0.719-5.881-0.016-12.017 2.322-17.902l0.156-0.384 127.976-313.411c3.715-9.099 10.937-16.32 20.037-20.035l128-52.245c18.7-7.632 40.047 1.339 47.68 20.039zM113.637 585.143l18.659 182.857h247.411l18.659-182.857h-284.729zM625.638 585.143l18.659 182.857h247.409l18.659-182.857h-284.727z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {}
+ ]
+ },
+ "tags": [
+ "glasses"
+ ],
+ "defaultCode": 59668,
+ "grid": 28
+ },
+ {
+ "id": 49,
+ "paths": [
+ "M256 73.143h512c40.397 0 73.143 32.747 73.143 73.143v292.571h73.143c40.397 0 73.143 32.746 73.143 73.143v365.714c0 40.397-32.746 73.143-73.143 73.143h-292.571c-40.397 0-73.143-32.746-73.143-73.143v-365.714c0-40.397 32.746-73.143 73.143-73.143h146.286v-292.571h-512v292.571h146.286c40.397 0 73.143 32.746 73.143 73.143v365.714c0 40.397-32.746 73.143-73.143 73.143h-292.571c-40.396 0-73.143-32.746-73.143-73.143v-365.714c0-40.397 32.747-73.143 73.143-73.143h73.143v-292.571c0-40.396 32.747-73.143 73.143-73.143zM402.286 877.714v-365.714h-292.571v365.714h292.571zM914.286 877.714v-365.714h-292.571v365.714h292.571z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {}
+ ]
+ },
+ "tags": [
+ "sitemap"
+ ],
+ "defaultCode": 59669,
+ "grid": 28
+ },
+ {
+ "id": 50,
+ "paths": [
+ "M36.571 109.714c0-40.396 32.747-73.143 73.143-73.143h804.571c40.397 0 73.143 32.747 73.143 73.143v804.571c0 40.397-32.746 73.143-73.143 73.143h-804.571c-40.396 0-73.143-32.746-73.143-73.143v-804.571zM914.286 109.714h-804.571v804.571h804.571v-804.571zM402.286 402.286c20.198 0 36.571 16.373 36.571 36.571v146.286h146.286c20.198 0 36.571 16.373 36.571 36.571s-16.373 36.571-36.571 36.571h-146.286v146.286c0 20.198-16.373 36.571-36.571 36.571s-36.571-16.373-36.571-36.571v-146.286h-146.286c-20.198 0-36.571-16.373-36.571-36.571s16.374-36.571 36.571-36.571h146.286v-146.286c0-20.198 16.373-36.571 36.571-36.571zM731.429 219.429c0-20.198-16.373-36.571-36.571-36.571s-36.571 16.374-36.571 36.571v73.143h-73.143c-20.198 0-36.571 16.374-36.571 36.571s16.373 36.571 36.571 36.571h73.143v73.143c0 20.198 16.373 36.571 36.571 36.571s36.571-16.373 36.571-36.571v-73.143h73.143c20.198 0 36.571-16.374 36.571-36.571s-16.373-36.571-36.571-36.571h-73.143v-73.143z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {}
+ ]
+ },
+ "tags": [
+ "pluses"
+ ],
+ "defaultCode": 59671,
+ "grid": 28
+ },
+ {
+ "id": 51,
+ "paths": [
+ "M323.592 116.579l-62.23 294.104c0.214 0.040 0.428 0.084 0.642 0.132l519.363 110.896-49.635-145.108c-4.359-12.746-1.379-26.845 7.764-36.706l104.101-112.283-520.005-111.033zM246.223 482.227l-100.75 476.145c-4.181 19.763-23.583 32.362-43.336 28.145-19.753-4.22-32.376-23.658-28.195-43.418l185.689-877.573c3.536-16.712 17.96-28.303 34.275-28.929 2.978-0.115 6.018 0.135 9.067 0.786l618.798 132.128c12.873 2.749 23.289 12.207 27.271 24.764s0.918 26.277-8.024 35.923l-133.040 143.498 63.437 185.454c4.264 12.464 1.507 26.251-7.216 36.096s-22.067 14.23-34.94 11.48l-582.399-124.357c-0.214-0.044-0.427-0.091-0.639-0.143z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {}
+ ]
+ },
+ "tags": [
+ "report-list"
+ ],
+ "defaultCode": 59672,
+ "grid": 28
+ },
+ {
+ "id": 52,
+ "paths": [
+ "M583.559 73.143c0-20.198-16.373-36.571-36.571-36.571s-36.571 16.374-36.571 36.571v147.040c0 20.198 16.373 36.571 36.571 36.571s36.571-16.373 36.571-36.571v-147.040zM858.522 217.455c14.277-14.288 14.277-37.454 0-51.742-14.274-14.288-37.42-14.288-51.697 0l-103.852 103.941c-14.277 14.288-14.277 37.454 0 51.742 14.274 14.288 37.42 14.288 51.697 0l103.852-103.941zM566.638 301.126c-14.274-14.288-37.42-14.288-51.697 0l-467.483 467.879c-14.276 14.288-14.276 37.453 0 51.741l155.828 155.959c14.276 14.288 37.422 14.288 51.698 0l467.486-467.877c14.274-14.288 14.274-37.456 0-51.745l-155.831-155.958zM125.004 794.876l415.785-416.139 104.13 104.221-415.785 416.135-104.13-104.218zM987.586 477.509c0 20.198-16.373 36.571-36.571 36.571h-146.918c-20.198 0-36.571-16.373-36.571-36.571s16.373-36.571 36.571-36.571h146.918c20.198 0 36.571 16.373 36.571 36.571zM806.832 789.307c14.274 14.288 37.42 14.288 51.697 0 14.274-14.288 14.274-37.453 0-51.741l-103.856-103.94c-14.274-14.288-37.42-14.288-51.697 0s-14.277 37.453 0 51.741l103.856 103.94zM235.459 165.721c14.276-14.288 37.422-14.288 51.698 0l103.854 103.941c14.274 14.288 14.274 37.454 0 51.742-14.277 14.288-37.423 14.288-51.699 0l-103.853-103.941c-14.276-14.288-14.276-37.454 0-51.742z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {}
+ ]
+ },
+ "tags": [
+ "magic"
+ ],
+ "defaultCode": 59673,
+ "grid": 28
+ },
+ {
+ "id": 53,
+ "paths": [
+ "M36.571 402.286c0-40.396 32.747-73.143 73.143-73.143h219.429c40.397 0 73.143 32.747 73.143 73.143v219.429c0 40.397-32.746 73.143-73.143 73.143h-219.429c-40.396 0-73.143-32.746-73.143-73.143v-219.429zM329.143 402.286h-219.429v219.429h219.429v-219.429z",
+ "M621.714 109.714c0-40.396 32.746-73.143 73.143-73.143h219.429c40.397 0 73.143 32.747 73.143 73.143v219.429c0 40.397-32.746 73.143-73.143 73.143h-219.429c-40.397 0-73.143-32.746-73.143-73.143v-219.429zM914.286 109.714h-219.429v219.429h219.429v-219.429z",
+ "M621.714 694.857c0-40.397 32.746-73.143 73.143-73.143h219.429c40.397 0 73.143 32.746 73.143 73.143v219.429c0 40.397-32.746 73.143-73.143 73.143h-219.429c-40.397 0-73.143-32.746-73.143-73.143v-219.429zM914.286 694.857h-219.429v219.429h219.429v-219.429z",
+ "M339.854 540.46c-14.282-14.281-14.282-37.438 0-51.719l284.46-284.46c14.281-14.282 37.438-14.282 51.719 0s14.281 37.437 0 51.72l-284.46 284.46c-14.281 14.281-37.437 14.281-51.72 0z",
+ "M339.854 501.288c-14.282 14.281-14.282 37.438 0 51.719l284.46 284.46c14.281 14.281 37.438 14.281 51.719 0s14.281-37.438 0-51.719l-284.46-284.46c-14.281-14.281-37.437-14.281-51.72 0z"
+ ],
+ "attrs": [
+ {},
+ {},
+ {},
+ {},
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {},
+ {},
+ {},
+ {},
+ {}
+ ]
+ },
+ "tags": [
+ "treemap"
+ ],
+ "defaultCode": 59674,
+ "grid": 28
+ },
+ {
+ "id": 54,
+ "paths": [
+ "M36.571 146.286c0-60.593 49.121-109.714 109.714-109.714h658.286c60.595 0 109.714 49.121 109.714 109.714v292.571c0 20.198-16.373 36.571-36.571 36.571s-36.571-16.373-36.571-36.571v-292.571c0-20.198-16.373-36.571-36.571-36.571h-658.286c-20.198 0-36.571 16.374-36.571 36.571v731.429c0 20.198 16.374 36.571 36.571 36.571h658.286c20.198 0 36.571-16.373 36.571-36.571v-109.714c0-20.198 16.373-36.571 36.571-36.571s36.571 16.373 36.571 36.571v109.714c0 60.595-49.119 109.714-109.714 109.714h-658.286c-60.594 0-109.714-49.119-109.714-109.714v-731.429z",
+ "M1011.646 448.022c-15.137-13.374-38.25-11.944-51.624 3.189l-267.377 302.588-120.733-100.089c-15.547-12.891-38.605-10.737-51.493 4.813-12.891 15.55-10.737 38.605 4.813 51.496l148.012 122.704c15.203 12.606 37.669 10.862 50.747-3.935l290.845-329.143c13.374-15.137 11.944-38.25-3.189-51.624z",
+ "M292.571 256c0-20.198 16.374-36.571 36.571-36.571h365.714c20.198 0 36.571 16.374 36.571 36.571s-16.373 36.571-36.571 36.571h-365.714c-20.198 0-36.571-16.374-36.571-36.571z",
+ "M292.571 438.857c0-20.198 16.374-36.571 36.571-36.571h365.714c20.198 0 36.571 16.373 36.571 36.571s-16.373 36.571-36.571 36.571h-365.714c-20.198 0-36.571-16.373-36.571-36.571z",
+ "M256 256c0 20.198-16.374 36.571-36.571 36.571s-36.571-16.374-36.571-36.571c0-20.198 16.374-36.571 36.571-36.571s36.571 16.374 36.571 36.571z",
+ "M256 438.857c0 20.198-16.374 36.571-36.571 36.571s-36.571-16.373-36.571-36.571c0-20.198 16.374-36.571 36.571-36.571s36.571 16.373 36.571 36.571z"
+ ],
+ "attrs": [
+ {},
+ {},
+ {},
+ {},
+ {},
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {},
+ {},
+ {},
+ {},
+ {},
+ {}
+ ]
+ },
+ "tags": [
+ "confirm"
+ ],
+ "defaultCode": 59675,
+ "grid": 28
+ },
+ {
+ "id": 55,
+ "paths": [
+ "M511.398 531.609c-146.647 0-265.985-119.338-265.985-265.985s119.338-265.865 265.985-265.865 265.985 119.338 265.985 265.985-119.338 265.865-265.985 265.865zM511.398 57.263c-114.887 0-208.481 93.474-208.481 208.481s93.594 208.361 208.481 208.361 208.481-93.474 208.481-208.481-93.594-208.361-208.481-208.361z",
+ "M979.849 1023.759h-936.902l-2.526-25.865c-1.564-15.88-2.406-31.759-2.406-47.278 0-261.053 212.451-473.504 473.504-473.504s473.504 212.451 473.504 473.504c0 15.519-0.842 31.398-2.406 47.278l-2.767 25.865zM95.76 966.255h831.278c0.241-5.293 0.241-10.586 0.241-15.759 0-229.413-186.586-416-416-416s-415.88 186.707-415.88 416c0 5.173 0.12 10.466 0.361 15.759z",
+ "M516.090 787.248c-12.632 0-23.94-7.459-29.113-18.887l-110.075-249.143c-4.331-9.865-3.368-21.173 2.406-30.195 5.895-9.023 15.88-14.436 26.586-14.436h210.767c10.586 0 20.451 5.293 26.346 13.955 5.895 8.782 7.098 19.85 3.128 29.714l-100.692 249.143c-4.812 11.789-16.241 19.729-28.992 19.85h-0.361zM454.737 538.105l60.030 135.819 54.977-135.819h-115.007z"
+ ],
+ "attrs": [
+ {},
+ {},
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {},
+ {},
+ {}
+ ]
+ },
+ "tags": [
+ "customer"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 56,
+ "paths": [
+ "M604.024 788.7h-175.835c-12.325-85.54-54.638-167.424-122.551-234.715-56.43-55.845-85.906-129.573-82.98-207.653 5.449-148.188 134.875-270.702 288.549-273.153l5.046-0.036c161.975 0 293.779 127.233 293.779 283.612 0 75.556-30.538 146.579-86.053 200.009-66.596 64.329-108.069 145.261-119.954 231.936zM549.715 950.858h-66.999l-42.020-84.444h151.076l-42.058 84.444zM509.962 0.073c-191.525 3.035-353.537 157.404-360.375 343.553-3.876 102.326 36.864 195.291 104.558 262.327 64.074 63.525 104.85 145.738 104.85 234.715v25.746l43.325 87.033c21.519 43.228 65.646 70.554 113.933 70.554v0 0c48.285 0 92.41-27.33 113.919-70.56l43.301-87.026v-26.039c0-87.186 37.633-169.509 101.303-230.985 66.926-64.439 108.398-153.746 108.398-252.635 0-197.010-164.279-356.754-366.922-356.754-2.085 0-4.169 0.036-6.29 0.074z",
+ "M340.19 367.565h73.143c0-55.954 45.495-101.449 101.449-101.449v-73.143c-96.256 0-174.593 78.3-174.593 174.593z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": []
+ },
+ "tags": [
+ "lightbulb"
+ ],
+ "defaultCode": 59676,
+ "grid": 18
+ },
+ {
+ "id": 57,
+ "paths": [
+ "M577.408 390.239c68.685-26.315 117.449-92.868 117.449-170.811 0-100.989-81.869-182.857-182.857-182.857s-182.857 81.868-182.857 182.857c0 77.942 48.764 144.495 117.449 170.811l-238.596 306.768c-8.167-1.412-16.567-2.15-25.138-2.15-80.791 0-146.286 65.496-146.286 146.286s65.494 146.286 146.286 146.286c80.791 0 146.286-65.496 146.286-146.286 0-45.319-20.609-85.826-52.966-112.658l199.252-256.183v227.163c-63.093 16.241-109.714 73.516-109.714 141.678 0 80.79 65.496 146.286 146.286 146.286s146.286-65.496 146.286-146.286c0-68.162-46.621-125.436-109.714-141.678v-227.163l199.252 256.183c-32.358 26.832-52.966 67.339-52.966 112.658 0 80.79 65.496 146.286 146.286 146.286s146.286-65.496 146.286-146.286c0-80.79-65.496-146.286-146.286-146.286-8.572 0-16.973 0.739-25.139 2.15l-238.596-306.768zM512 329.143c-60.595 0-109.714-49.121-109.714-109.714s49.119-109.714 109.714-109.714c60.595 0 109.714 49.121 109.714 109.714s-49.119 109.714-109.714 109.714zM109.714 841.143c0-40.397 32.747-73.143 73.143-73.143s73.143 32.746 73.143 73.143c0 40.397-32.747 73.143-73.143 73.143s-73.143-32.746-73.143-73.143zM512 914.286c-40.397 0-73.143-32.746-73.143-73.143s32.746-73.143 73.143-73.143c40.397 0 73.143 32.746 73.143 73.143s-32.746 73.143-73.143 73.143zM841.143 914.286c-40.397 0-73.143-32.746-73.143-73.143s32.746-73.143 73.143-73.143c40.397 0 73.143 32.746 73.143 73.143s-32.746 73.143-73.143 73.143z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {}
+ ]
+ },
+ "tags": [
+ "split"
+ ],
+ "defaultCode": 59790,
+ "grid": 28
+ },
+ {
+ "id": 58,
+ "paths": [
+ "M365.714 36.571c20.198 0 36.571 16.374 36.571 36.571v109.714h219.429v-109.714c0-20.198 16.373-36.571 36.571-36.571s36.571 16.374 36.571 36.571v109.714h182.857c60.595 0 109.714 49.121 109.714 109.714v585.143c0 60.595-49.119 109.714-109.714 109.714h-731.429c-60.593 0-109.714-49.119-109.714-109.714v-585.143c0-60.593 49.121-109.714 109.714-109.714h182.857v-109.714c0-20.198 16.374-36.571 36.571-36.571zM329.143 256h-182.857c-20.198 0-36.571 16.374-36.571 36.571v585.143c0 20.198 16.374 36.571 36.571 36.571h731.429c20.198 0 36.571-16.373 36.571-36.571v-585.143c0-20.198-16.373-36.571-36.571-36.571h-182.857v109.714c0 20.198-16.373 36.571-36.571 36.571s-36.571-16.373-36.571-36.571v-109.714h-219.429v109.714c0 20.198-16.373 36.571-36.571 36.571s-36.571-16.373-36.571-36.571v-109.714zM329.143 585.143c0-20.198 16.374-36.571 36.571-36.571h292.571c20.198 0 36.571 16.373 36.571 36.571s-16.373 36.571-36.571 36.571h-292.571c-20.198 0-36.571-16.373-36.571-36.571zM329.143 768c0-20.198 16.374-36.571 36.571-36.571h292.571c20.198 0 36.571 16.373 36.571 36.571s-16.373 36.571-36.571 36.571h-292.571c-20.198 0-36.571-16.373-36.571-36.571z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {}
+ ]
+ },
+ "tags": [
+ "delay"
+ ],
+ "defaultCode": 59677,
+ "grid": 28
+ },
+ {
+ "id": 59,
+ "paths": [
+ "M135.837 109.714c-14.427 0-26.123 11.696-26.123 26.122v752.326c0 14.427 11.696 26.123 26.122 26.123h752.326c14.427 0 26.123-11.696 26.123-26.123v-752.326c0-14.427-11.696-26.123-26.123-26.123h-752.326zM36.571 135.837c0-54.822 44.443-99.265 99.265-99.265h752.326c54.824 0 99.266 44.443 99.266 99.265v752.326c0 54.824-44.442 99.266-99.266 99.266h-752.326c-54.822 0-99.265-44.442-99.265-99.266v-752.326zM402.286 292.571c20.198 0 36.571 16.374 36.571 36.571v365.714c0 20.198-16.373 36.571-36.571 36.571s-36.571-16.373-36.571-36.571v-365.714c0-20.198 16.373-36.571 36.571-36.571zM658.286 329.143c0-20.198-16.373-36.571-36.571-36.571s-36.571 16.374-36.571 36.571v365.714c0 20.198 16.373 36.571 36.571 36.571s36.571-16.373 36.571-36.571v-365.714z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {}
+ ]
+ },
+ "tags": [
+ "pause"
+ ],
+ "defaultCode": 59678,
+ "grid": 28
+ },
+ {
+ "id": 60,
+ "paths": [
+ "M109.714 36.571c-40.396 0-73.143 32.747-73.143 73.143v804.571c0 40.397 32.747 73.143 73.143 73.143h804.564c40.397 0 73.143-32.746 73.143-73.143v-804.571c0-40.396-32.746-73.143-73.143-73.143h-804.564zM109.714 109.714h804.564v804.571h-804.564v-804.571zM830.431 245.289c14.281-14.282 14.281-37.438 0-51.72s-37.438-14.282-51.719 0l-585.143 585.143c-14.282 14.281-14.282 37.438 0 51.719s37.438 14.281 51.72 0l585.142-585.142z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {}
+ ]
+ },
+ "tags": [
+ "ban"
+ ],
+ "defaultCode": 59679,
+ "grid": 28
+ },
+ {
+ "id": 61,
+ "paths": [
+ "M548.571 73.143c0-20.198-16.373-36.571-36.571-36.571s-36.571 16.374-36.571 36.571v402.286h-402.286c-20.198 0-36.571 16.373-36.571 36.571s16.374 36.571 36.571 36.571h402.286v402.286c0 20.198 16.373 36.571 36.571 36.571s36.571-16.373 36.571-36.571v-402.286h402.286c20.198 0 36.571-16.373 36.571-36.571s-16.373-36.571-36.571-36.571h-402.286v-402.286z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {}
+ ]
+ },
+ "tags": [
+ "plus-bold"
+ ],
+ "defaultCode": 59680,
+ "grid": 28
+ },
+ {
+ "id": 62,
+ "paths": [
+ "M402.286 73.143c0-40.396 32.746-73.143 73.143-73.143l240.852 0.001c19.397 0 38.001 7.706 51.719 21.423l234.576 234.577c13.718 13.717 21.424 32.321 21.424 51.72v350.068c0 40.397-32.746 73.143-73.143 73.143h-219.429c-20.198 0-36.571-16.373-36.571-36.571s16.373-36.571 36.571-36.571h219.429v-292.070h-256c-20.198 0-36.571-16.375-36.571-36.573v-256l-182.857-0.002v146.286c0 20.198-16.373 36.571-36.571 36.571s-36.571-16.374-36.571-36.571v-146.286zM731.429 88.292v204.281h204.281l-204.281-204.281z",
+ "M73.143 292.571c-40.396 0-73.143 32.747-73.143 73.143v584.646c0 40.397 32.747 73.143 73.143 73.143h475.429c40.397 0 73.143-32.746 73.143-73.143v-350.069c0-19.397-7.706-38.001-21.424-51.719l-234.576-234.577c-13.717-13.717-32.321-21.423-51.72-21.423l-240.851-0.001zM73.143 365.714l182.857 0.004v256c0 20.195 16.374 36.571 36.571 36.571h256v292.070h-475.429v-584.646zM533.424 585.147h-204.281v-204.284l204.281 204.284z"
+ ],
+ "attrs": [
+ {},
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": [
+ {},
+ {}
+ ]
+ },
+ "tags": [
+ "copy"
+ ],
+ "defaultCode": 59681,
+ "grid": 28
+ },
+ {
+ "id": 63,
+ "paths": [
+ "M114.619 600.543c40.264 177.44 198.948 309.902 388.571 309.902s348.308-132.462 388.571-309.902h-91.503c-38.098 128.011-156.682 221.359-297.068 221.359s-258.97-93.347-297.068-221.359h-91.503zM107.179 467.729c22.022-199.22 190.922-354.172 396.012-354.172s373.989 154.952 396.012 354.172h-89.25c-21.48-150.183-150.64-265.629-306.763-265.629s-285.281 115.447-306.763 265.629h-89.25z",
+ "M91.408 639.913l3.71-13.846c10.608-39.587 51.299-63.080 90.886-52.472l227.663 61.002-22.917 85.526-299.341-80.209z",
+ "M119.642 876.645l-85.526-22.917 61.002-227.663c10.608-39.587 51.299-63.080 90.886-52.472l13.846 3.71-80.209 299.341z",
+ "M932.592 419.414l-3.71 13.846c-10.608 39.587-51.299 63.080-90.886 52.472l-227.663-61.002 22.917-85.526 299.341 80.209z",
+ "M904.358 182.682l85.526 22.917-61.002 227.663c-10.608 39.587-51.299 63.080-90.886 52.472l-13.846-3.71 80.209-299.341z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "2552552551431282551": []
+ },
+ "tags": [
+ "refresh"
+ ],
+ "defaultCode": 59682,
+ "grid": 28
+ }
+ ],
+ "colorThemes": [
+ [
+ [
+ 43,
+ 128,
+ 255,
+ 1
+ ],
+ [
+ 255,
+ 255,
+ 255,
+ 1
+ ]
+ ]
+ ],
+ "colorThemeIdx": 0
+ },
+ {
+ "selection": [
+ {
+ "order": 2,
+ "id": 29,
+ "name": "ipd",
+ "prevSize": 18,
+ "code": 59897,
+ "tempChar": ""
+ },
+ {
+ "order": 414,
+ "id": 0,
+ "name": "wiki-lib",
+ "prevSize": 18,
+ "code": 59893,
+ "tempChar": ""
+ },
+ {
+ "order": 413,
+ "id": 1,
+ "name": "annex-lib",
+ "prevSize": 18,
+ "code": 59894,
+ "tempChar": ""
+ },
+ {
+ "order": 412,
+ "id": 2,
+ "name": "interface-lib",
+ "prevSize": 18,
+ "code": 59895,
+ "tempChar": ""
+ },
+ {
+ "order": 405,
+ "id": 3,
+ "name": "has-authority-pack",
+ "prevSize": 18,
+ "code": 59891,
+ "tempChar": ""
+ },
+ {
+ "order": 404,
+ "id": 4,
+ "name": "without-authority-pack",
+ "prevSize": 18,
+ "code": 59892,
+ "tempChar": ""
+ },
+ {
+ "order": 402,
+ "id": 5,
+ "name": "data-structure",
+ "prevSize": 18,
+ "code": 59890,
+ "tempChar": ""
+ },
+ {
+ "order": 397,
+ "id": 6,
+ "name": "waterfallplus",
+ "prevSize": 18,
+ "code": 59885,
+ "tempChar": ""
+ },
+ {
+ "order": 396,
+ "id": 7,
+ "name": "agileplus",
+ "prevSize": 18,
+ "code": 59886,
+ "tempChar": ""
+ },
+ {
+ "order": 392,
+ "id": 8,
+ "name": "horn",
+ "prevSize": 18,
+ "code": 59883,
+ "tempChar": ""
+ },
+ {
+ "order": 387,
+ "id": 9,
+ "name": "resume",
+ "prevSize": 18,
+ "code": 59881,
+ "tempChar": ""
+ },
+ {
+ "order": 385,
+ "id": 10,
+ "name": "mirror",
+ "prevSize": 18,
+ "code": 59878,
+ "tempChar": ""
+ },
+ {
+ "order": 386,
+ "id": 11,
+ "name": "remote",
+ "prevSize": 18,
+ "code": 59879,
+ "tempChar": ""
+ },
+ {
+ "order": 384,
+ "id": 12,
+ "name": "moon",
+ "prevSize": 18,
+ "code": 59880,
+ "tempChar": ""
+ },
+ {
+ "order": 380,
+ "id": 13,
+ "name": "ticket",
+ "prevSize": 18,
+ "code": 59873,
+ "tempChar": ""
+ },
+ {
+ "order": 379,
+ "id": 14,
+ "name": "gantt-alt",
+ "prevSize": 18,
+ "code": 59874,
+ "tempChar": ""
+ },
+ {
+ "order": 321,
+ "id": 15,
+ "name": "tree",
+ "prevSize": 18,
+ "code": 59849,
+ "tempChar": ""
+ },
+ {
+ "order": 323,
+ "id": 16,
+ "name": "list",
+ "prevSize": 18,
+ "code": 59851,
+ "tempChar": ""
+ },
+ {
+ "order": 324,
+ "id": 17,
+ "name": "gantt",
+ "prevSize": 18,
+ "code": 59852,
+ "tempChar": ""
+ },
+ {
+ "order": 325,
+ "id": 18,
+ "name": "group-view",
+ "prevSize": 18,
+ "code": 59853,
+ "tempChar": ""
+ },
+ {
+ "order": 316,
+ "id": 19,
+ "name": "inherit-space",
+ "prevSize": 18,
+ "code": 59842,
+ "tempChar": ""
+ },
+ {
+ "order": 298,
+ "id": 20,
+ "name": "card-archive",
+ "prevSize": 18,
+ "code": 59832,
+ "tempChar": ""
+ },
+ {
+ "order": 299,
+ "id": 21,
+ "name": "col-archive",
+ "prevSize": 18,
+ "code": 59833,
+ "tempChar": ""
+ },
+ {
+ "order": 301,
+ "id": 22,
+ "name": "col-add-right",
+ "prevSize": 18,
+ "code": 59835,
+ "tempChar": ""
+ },
+ {
+ "order": 302,
+ "id": 23,
+ "name": "col-add-left",
+ "prevSize": 18,
+ "code": 59836,
+ "tempChar": ""
+ },
+ {
+ "order": 303,
+ "id": 24,
+ "name": "col-split",
+ "prevSize": 18,
+ "code": 59837,
+ "tempChar": ""
+ },
+ {
+ "order": 82,
+ "id": 25,
+ "name": "waterfall",
+ "prevSize": 18,
+ "code": 59812,
+ "tempChar": "",
+ "codes": [
+ 59812
+ ]
+ },
+ {
+ "order": 83,
+ "id": 26,
+ "name": "manual",
+ "prevSize": 18,
+ "code": 59789,
+ "tempChar": ""
+ },
+ {
+ "order": 283,
+ "id": 27,
+ "name": "kanban",
+ "prevSize": 18,
+ "code": 59779,
+ "tempChar": ""
+ },
+ {
+ "order": 85,
+ "id": 28,
+ "name": "lane",
+ "prevSize": 18,
+ "code": 59825,
+ "tempChar": ""
+ }
+ ],
+ "id": 8,
+ "metadata": {
+ "name": "概念",
+ "importSize": {
+ "width": 14,
+ "height": 14
+ }
+ },
+ "height": 1024,
+ "prevSize": 28,
+ "icons": [
+ {
+ "id": 29,
+ "paths": [
+ "M0 73.143l438.857 73.143h585.143v438.857h-585.143l-438.857 73.143v-585.143zM658.286 219.429h-219.429v292.571h219.429v-292.571zM731.429 512h219.429v-292.571h-219.429v292.571zM365.714 512v-303.753l-292.571-48.762v412.458l292.571-48.762v-11.181z",
+ "M775.146 768l-80.32-46.37 36.571-63.344 190.034 109.714-7.146 12.368v60.774h-804.571v-73.143h665.432z"
+ ],
+ "attrs": [
+ {},
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "grid": 14,
+ "tags": [
+ "ipd"
+ ]
+ },
+ {
+ "id": 0,
+ "paths": [
+ "M406.052 249.794l-74.916-74.916h-193.717v149.832h749.159v-74.916h-480.527zM961.495 324.71v524.413c0 41.376-33.54 74.916-74.916 74.916h-749.159c-41.375 0-74.916-33.54-74.916-74.916v-674.245c0-41.375 33.541-74.916 74.916-74.916h193.717c19.87 0 38.924 7.893 52.974 21.943l52.974 52.974h449.495c41.376 0 74.916 33.541 74.916 74.916v74.916zM886.579 399.626h-749.159v449.497h749.159v-449.497zM425.784 774.208h-63.615l112.164-299.665h78.683l108.817 299.665h-66.965l-23.437-63.176h-122.209l-23.437 63.176zM465.962 660.82h88.727l-41.853-127.964h-1.675l-45.201 127.964z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "wiki-lib"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 1,
+ "paths": [
+ "M331.138 174.879h-193.717v149.832h749.158v-74.916h-480.525l-74.916-74.916zM137.421 399.627v449.495h749.158v-449.495h-749.158zM961.495 399.627v449.495c0 41.376-33.54 74.916-74.916 74.916h-749.158c-41.374 0-74.916-33.54-74.916-74.916v-674.243c0-41.374 33.541-74.916 74.916-74.916h193.717c19.87 0 38.924 7.894 52.974 21.943l52.973 52.974h449.494c41.376 0 74.916 33.541 74.916 74.916v149.832zM259.16 609.363c0-65.166 52.828-117.993 117.993-117.993h269.698c65.167 0 117.991 52.827 117.991 117.993s-52.823 117.993-117.991 117.993h-127.349c-40.341 0-73.044-32.703-73.044-73.043s32.703-73.043 73.043-73.043h67.424c15.516 0 28.094 12.577 28.094 28.094s-12.577 28.094-28.094 28.094h-67.424c-9.309 0-16.856 7.547-16.856 16.856s7.547 16.856 16.857 16.856h127.349c34.137 0 61.804-27.671 61.804-61.806s-27.667-61.806-61.804-61.806h-269.698c-34.134 0-61.806 27.672-61.806 61.806s27.672 61.806 61.806 61.806h22.475c15.516 0 28.094 12.577 28.094 28.094s-12.577 28.094-28.094 28.094h-22.475c-65.165 0-117.993-52.827-117.993-117.993z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "annex-lib"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 2,
+ "paths": [
+ "M331.137 174.878h-193.717v149.832h749.158v-74.916h-480.527l-74.916-74.916zM137.421 399.626v449.495h749.158v-449.495h-749.158zM961.496 399.626v449.495c0 41.376-33.54 74.916-74.916 74.916h-749.158c-41.375 0-74.916-33.54-74.916-74.916v-674.243c0-41.375 33.541-74.916 74.916-74.916h193.717c19.87 0 38.924 7.894 52.974 21.943l52.974 52.974h449.495c41.376 0 74.916 33.541 74.916 74.916v149.832zM287.253 512c20.687 0 37.458 16.771 37.458 37.458v149.832c0 20.687-16.771 37.457-37.458 37.457s-37.458-16.769-37.458-37.457v-149.832c0-20.687 16.771-37.458 37.458-37.458zM474.543 549.458c0-20.687-16.771-37.458-37.458-37.458s-37.458 16.771-37.458 37.458v149.832c0 20.687 16.771 37.457 37.458 37.457s37.458-16.769 37.458-37.457v-149.832zM586.917 512c20.687 0 37.458 16.771 37.458 37.458v149.832c0 20.687-16.771 37.457-37.458 37.457s-37.458-16.769-37.458-37.457v-149.832c0-20.687 16.771-37.458 37.458-37.458zM774.207 549.458c0-20.687-16.774-37.458-37.458-37.458-20.686 0-37.458 16.771-37.458 37.458v149.832c0 20.687 16.771 37.457 37.458 37.457 20.684 0 37.458-16.769 37.458-37.457v-149.832z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "interface-lib"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 3,
+ "paths": [
+ "M875.718 146.286v146.286h-731.431v-146.286h731.431zM144.287 73.143c-40.396 0-73.143 32.748-73.143 73.143v146.286c0 40.395 32.747 73.143 73.143 73.143h731.431c40.389 0 73.143-32.748 73.143-73.143v-146.286c0-40.395-32.753-73.143-73.143-73.143h-731.431zM875.718 512v365.714h-731.431v-365.714h731.431zM144.287 438.857c-40.396 0-73.143 32.748-73.143 73.143v365.714c0 40.397 32.747 73.143 73.143 73.143h731.431c40.389 0 73.143-32.746 73.143-73.143v-365.714c0-40.395-32.753-73.143-73.143-73.143h-731.431zM729.433 658.286v73.143h-438.86v-73.143h438.86z"
+ ],
+ "width": 1097,
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "has-authority-pack"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 4,
+ "paths": [
+ "M290.574 146.286v731.429h-146.286v-731.429h146.286zM144.287 73.143c-40.397 0-73.143 32.748-73.143 73.143v731.429c0 40.398 32.747 73.143 73.143 73.143h146.286c40.395 0 73.143-32.746 73.143-73.143v-731.429c0-40.395-32.748-73.143-73.143-73.143h-146.286zM875.718 146.286v731.429h-365.717v-731.429h365.717zM510.001 73.143c-40.397 0-73.143 32.748-73.143 73.143v731.429c0 40.398 32.747 73.143 73.143 73.143h365.717c40.388 0 73.143-32.746 73.143-73.143v-731.429c0-40.395-32.754-73.143-73.143-73.143h-365.717zM656.288 292.572h73.146v438.857h-73.146v-438.857z"
+ ],
+ "width": 1097,
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "without-authority-pack"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 5,
+ "paths": [
+ "M103.385 735.735h413.592c1.446 0 2.685-0.657 4.062-0.825 15.268 61.085 70.103 103.978 133.071 104.087 76.035 0 137.68-61.645 137.68-137.68 0-76.041-61.645-137.683-137.68-137.683-62.968 0.108-117.802 43-133.071 104.084-1.377-0.169-2.616-0.825-4.062-0.825h-413.592c-19.010 0-34.42 15.414-34.42 34.424s15.411 34.418 34.42 34.418zM654.11 632.474c24.6 0.006 47.327 13.137 59.621 34.443 12.294 21.311 12.288 47.556-0.018 68.861-12.306 21.299-35.039 34.418-59.639 34.412-38.027-0.012-68.85-30.846-68.841-68.873 0.009-38.033 30.844-68.855 68.877-68.843zM103.385 535.444h156.233c116.409 0 130.797-97.099 139.402-155.097 7.194-48.945 11.6-57.654 20.376-57.654h321.139c15.697 20.79 40.412 34.42 68.463 34.42 45.279-0.009 82.811-35.11 85.841-80.291s-29.473-84.979-74.348-91.037c-44.875-6.057-86.769 23.7-95.822 68.067h-305.273c-71.284 0-81.645 70.045-88.494 116.409-10.12 68.462-19.413 96.342-71.284 96.342h-156.233c-19.010 0-34.42 15.411-34.42 34.42s15.411 34.42 34.42 34.42z"
+ ],
+ "width": 964,
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "data-structure"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 6,
+ "paths": [
+ "M477.827 98.2c226.214 0 409.599 183.384 409.599 409.6h68.267c0-263.919-213.948-477.867-477.865-477.867h-68.267v136.534h68.267v-68.267zM477.827 985.668c-240.74 0-439.902-178.019-473.027-409.601h69.090c32.5 193.722 200.98 341.335 403.937 341.335v-68.267h68.267v136.533h-68.267zM136.533 337.134h341.333v68.267h-341.333v-68.267zM546.133 405.4v-136.533h-477.867v204.8h409.6v68.267h-68.267v204.801h477.867v-204.801h-341.333v-136.533zM477.867 610.2h341.333v68.267h-341.333v-68.267z"
+ ],
+ "width": 956,
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "waterfallplus"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 7,
+ "paths": [
+ "M887.467 507.8c0-226.216-183.385-409.6-409.6-409.6v68.267h-68.267v-136.534h68.267c263.919 0 477.867 213.948 477.867 477.867h-68.267zM0 507.8c0 263.92 213.948 477.868 477.867 477.868h68.267v-136.533h-68.267v68.267c-226.216 0-409.6-183.385-409.6-409.601h-68.267zM204.8 712.602v-68.268h273.067c75.405 0 136.533-61.128 136.533-136.533s-61.128-136.533-136.533-136.533c-75.405 0-136.533 61.128-136.533 136.533h-68.267c0-113.108 91.692-204.8 204.8-204.8s204.8 91.692 204.8 204.8c0 52.453-19.719 100.3-52.148 136.533h120.415v68.268h-546.133z"
+ ],
+ "width": 956,
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "agileplus"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 8,
+ "paths": [
+ "M938.869 394.195c-20.69-298.501-137.33-262.5-137.33-262.5s-156.752 183.9-521.866 200v257.998c0 0 155.167 7.504 256.077 34.503 100.913 26.999 168.679 42.2 260.725 116.998 0 0 165.507-12.698 142.393-346.998zM139.918 336.095h99.75v251.697h-99.75v-251.697zM490.046 751.996c-39.056-44.703-50.984-102.303-50.984-102.303h-93.628c0 91.5 87.189 207.002 105.661 230.201s41.589 12.8 94.683 0c52.989-12.8 9.923-63.898 9.923-63.898s-26.6-19.302-65.655-64z"
+ ],
+ "width": 1081,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "horn"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 9,
+ "paths": [
+ "M182.721 679.599h-149.23c-18.497 0-33.491-15.707-33.491-35.084s14.994-35.089 33.491-35.089h149.23c18.497 0 33.491 15.711 33.491 35.089s-14.994 35.084-33.491 35.084zM990.509 679.599h-149.23c-18.498 0-33.491-15.707-33.491-35.084s14.993-35.089 33.491-35.089h149.23c18.498 0 33.491 15.711 33.491 35.089s-14.997 35.084-33.491 35.084zM512 334.64c-18.498 0-33.491-15.708-33.491-35.086v-156.336c0-19.377 14.993-35.086 33.491-35.086 18.493 0 33.491 15.708 33.491 35.086v156.336c0 19.376-14.997 35.086-33.491 35.086zM744.836 435.677c-8.574 0-17.144-3.425-23.685-10.275-13.077-13.702-13.077-35.917 0-49.618l105.522-110.548c13.080-13.703 34.288-13.703 47.364 0s13.077 35.917 0 49.618l-105.522 110.548c-6.541 6.853-15.111 10.275-23.679 10.275zM279.164 435.677c-8.572 0-17.142-3.425-23.681-10.275l-105.522-110.548c-13.079-13.703-13.079-35.919 0-49.618 13.079-13.703 34.283-13.703 47.363 0l105.522 110.548c13.079 13.704 13.079 35.919 0 49.618-3.106 3.262-6.798 5.85-10.862 7.613s-8.421 2.668-12.819 2.663zM305.406 797.005c-12.034 0-23.664-6.814-29.661-18.743-20.039-39.86-30.633-84.858-30.633-130.125 0-154.172 119.724-279.595 266.887-279.595 147.161 0 266.884 125.423 266.884 279.595 0 45.267-10.593 90.265-30.631 130.125-8.618 17.139-28.872 23.723-45.243 14.69-16.367-9.029-22.643-30.245-14.025-47.394 15.208-30.24 22.917-63.017 22.917-97.421 0-115.473-89.678-209.424-199.903-209.424-110.229 0-199.905 93.945-199.905 209.424 0 34.4 7.71 67.181 22.915 97.421 8.62 17.144 2.341 38.365-14.025 47.394-4.8 2.659-10.149 4.053-15.579 4.053z",
+ "M165.89 857.206h692.217c16.199 0 29.331 13.132 29.331 29.331s-13.132 29.331-29.331 29.331h-692.217c-16.199 0-29.331-13.132-29.331-29.331s13.132-29.331 29.331-29.331z"
+ ],
+ "width": 1024,
+ "attrs": [
+ {},
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "resume"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 10,
+ "paths": [
+ "M438.857 109.714v73.143h-329.143v658.286h329.143v73.143h-402.286v-804.571h402.286zM585.143 841.143v73.143h146.286v-73.143h-146.286zM804.571 841.143v73.143h146.286v-73.143h-146.286zM914.286 219.429v146.286h73.143v-146.286h-73.143zM914.286 438.857v146.286h73.143v-146.286h-73.143zM914.286 658.286v146.286h73.143v-146.286h-73.143zM585.143 109.714v73.143h146.286v-73.143h-146.286zM804.571 109.714v73.143h146.286v-73.143h-146.286zM548.571 36.571v950.857h-73.143v-950.857h73.143z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mirror"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 11,
+ "paths": [
+ "M987.429 0c20.198 0 36.571 16.374 36.571 36.571v669.714c0 20.198-16.374 36.571-36.571 36.571h-437.714v208h126.857c40.395 0 73.143 32.747 73.143 73.143h-474.286c0-40.395 32.747-73.143 73.143-73.143h128v-208h-440c-20.198 0-36.571-16.374-36.571-36.571v-669.714c0-20.198 16.374-36.571 36.571-36.571h950.857zM950.857 73.143h-877.714v596.571h877.714v-596.571zM292.571 329.143v146.286h146.286v73.143h-219.429v-219.429h73.143zM585.143 182.857h219.429v219.429h-73.143l0.073-146.286h-146.359v-73.143z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "remote"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 12,
+ "paths": [
+ "M728.381 735.355q-29.667 4.945-60.434 4.945-99.991 0-185.148-49.448t-134.603-134.603-49.448-185.148q0-105.486 57.138-196.137-110.429 32.964-180.478 125.813t-70.049 210.97q0 71.423 28.020 136.527t74.993 112.077 112.077 74.993 136.527 28.020q79.115 0 150.262-33.789t121.143-94.223zM839.911 688.658q-51.643 111.53-155.756 178.281t-227.179 66.753q-85.707 0-163.723-33.514t-134.603-90.102-90.102-134.603-33.514-163.723q0-84.059 31.59-160.7t85.707-132.68 129.384-90.377 159.325-37.634q24.174-1.099 33.514 21.428 9.888 22.525-8.239 39.556-47.248 42.854-72.246 99.717t-24.998 120.044q0 81.311 40.107 149.986t108.783 108.783 149.986 40.107q64.83 0 125.263-28.020 22.525-9.888 39.556 7.143 7.692 7.692 9.615 18.68t-2.472 20.876z"
+ ],
+ "width": 878,
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "moon"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 13,
+ "paths": [
+ "M857.768 36.571h-691.534c-51.324 0-93.091 45.943-93.091 102.4v746.057c0 56.459 41.767 102.4 93.091 102.4h691.534c51.324 0 93.089-45.941 93.089-102.4v-746.057c0-56.457-41.765-102.4-93.089-102.4zM323.444 104.838h372.364v102.4h-372.364v-102.4zM888.795 885.029c0 18.849-13.89 34.136-31.027 34.136h-691.534c-17.098 0-31.031-15.294-31.031-34.136v-746.057c0-18.807 13.933-34.134 31.031-34.134h95.149v102.4c0 37.65 27.835 68.267 62.061 68.267h372.364c34.226 0 62.062-30.618 62.062-68.267v-102.4h99.899c17.13 0 31.027 15.326 31.027 34.134v746.057zM705.962 396.49l-241.819 266.002-116.612-128.307c-12.116-13.328-31.76-13.328-43.876 0s-12.117 34.937 0 48.264l138.55 152.44c12.117 13.327 31.759 13.327 43.877 0l263.758-290.134c7.841-8.621 10.898-21.188 8.031-32.965s-11.235-20.976-21.943-24.132c-10.704-3.155-22.127 0.211-29.965 8.833z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "ticket"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 14,
+ "paths": [
+ "M585.143 36.571h365.714c40.396 0 73.143 32.747 73.143 73.143v73.143c0 40.396-32.747 73.143-73.143 73.143h-365.714c-40.396 0-73.143-32.747-73.143-73.143v-73.143c0-40.396 32.747-73.143 73.143-73.143zM73.143 402.285h585.143c40.396 0 73.143 32.747 73.143 73.143v73.143c0 40.396-32.747 73.143-73.143 73.143h-585.143c-40.396 0-73.143-32.747-73.143-73.143v-73.143c0-40.396 32.747-73.143 73.143-73.143zM292.571 768h658.286c40.396 0 73.143 32.747 73.143 73.143v73.143c0 40.396-32.747 73.143-73.143 73.143h-658.286c-40.396 0-73.143-32.747-73.143-73.143v-73.143c0-40.396 32.747-73.143 73.143-73.143z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "gantt"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 15,
+ "paths": [
+ "M799.753 79.048h-350.156v62.111h1.034v339.283h-192.268c2.628 10.143 3.955 20.578 3.948 31.056 0 10.727-1.373 21.134-3.948 31.056h192.268v343.422h-1.034v62.111h351.033c-2.879-9.759-4.337-19.881-4.33-30.055 0-11.174 1.735-21.943 4.941-32.057h-288.499v-343.424h288.186c-3.077-10.065-4.636-20.532-4.628-31.056v0c-0.008-10.524 1.552-20.991 4.628-31.056h-288.186v-339.283h289.551c-3.977-11.308-6.004-23.209-5.994-35.196 0-9.298 1.203-18.318 3.453-26.913v0z",
+ "M258.363 480.441c-13.768-53.047-61.971-92.218-119.326-92.218-68.082 0-123.273 55.191-123.273 123.273s55.191 123.273 123.273 123.273c57.354 0 105.558-39.169 119.326-92.218v0c2.628-10.143 3.955-20.578 3.948-31.056 0-10.725-1.372-21.131-3.948-31.054v0z",
+ "M800.631 948.087c12.957 43.884 53.554 75.913 101.637 75.913 58.525 0 105.967-47.443 105.967-105.967s-47.443-105.967-105.967-105.967c-47.349 0-87.441 31.057-101.026 73.91v0c-3.284 10.368-4.95 21.181-4.941 32.057v0.003c-0.007 10.174 1.452 20.296 4.331 30.054l-0.001-0.003zM800.928 542.552c13.275 43.37 53.622 74.912 101.339 74.912 58.525 0 105.967-47.443 105.967-105.967s-47.443-105.967-105.967-105.967c-47.717 0-88.064 31.542-101.339 74.912v0c-3.077 10.065-4.636 20.532-4.628 31.056v0c-0.008 10.524 1.552 20.99 4.628 31.054v0zM799.753 79.048v0c-2.298 8.787-3.459 17.833-3.453 26.915v0.005c-0.010 11.987 2.017 23.888 5.995 35.196 14.513 41.222 53.789 70.771 99.974 70.771 58.525 0 105.967-47.443 105.967-105.967s-47.443-105.967-105.967-105.967c-49.223 0-90.604 33.563-102.514 79.052l-0.002-0.004z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "tree"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 16,
+ "paths": [
+ "M345.841 170.982h629.406c26.925 0 48.753-21.828 48.753-48.753s-21.828-48.753-48.753-48.753h-629.406c-26.925 0-48.753 21.828-48.753 48.753s21.828 48.753 48.753 48.753zM345.827 559.812h627.096c26.925 0 48.753-21.828 48.753-48.753s-21.828-48.753-48.753-48.753h-627.096c-26.925 0-48.753 21.828-48.753 48.753s21.828 48.753 48.753 48.753zM975.247 853.292h-629.406c-26.925 0-48.753 21.828-48.753 48.753s21.828 48.753 48.753 48.753h629.406c26.925 0 48.753-21.828 48.753-48.753s-21.828-48.753-48.753-48.753zM0 122.229v0c0 53.851 43.655 97.506 97.506 97.506s97.506-43.655 97.506-97.506v0c0-53.851-43.655-97.506-97.506-97.506s-97.506 43.655-97.506 97.506v0zM0 510.476v0c0 53.851 43.655 97.506 97.506 97.506s97.506-43.655 97.506-97.506v0c0-53.851-43.655-97.506-97.506-97.506s-97.506 43.655-97.506 97.506v0zM0 901.77v0c0 53.851 43.655 97.506 97.506 97.506s97.506-43.655 97.506-97.506v0c0-53.851-43.655-97.506-97.506-97.506s-97.506 43.655-97.506 97.506v0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "list"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 17,
+ "paths": [
+ "M217.356 165.698h424.226c29.549 0 44.324 14.774 44.324 44.324v81.392c0 29.549-14.774 44.324-44.324 44.324h-424.226c-29.549 0-44.324-14.774-44.324-44.324v-81.392c0-29.549 14.774-44.324 44.324-44.324z",
+ "M217.356 684.669h424.226c29.549 0 44.324 14.774 44.324 44.324v81.392c0 29.549-14.774 44.324-44.324 44.324h-424.226c-29.549 0-44.324-14.774-44.324-44.324v-81.392c0-29.549 14.774-44.324 44.324-44.324z",
+ "M440.436 425.178h357.253c32.723 0 49.085 16.362 49.085 49.085v71.87c0 32.723-16.362 49.085-49.085 49.085h-357.253c-32.723 0-49.085-16.362-49.085-49.085v-71.87c0-32.723 16.362-49.085 49.085-49.085v0z",
+ "M927.656 1024h-831.3c-53.19-0.062-96.293-43.166-96.356-96.356v-831.286c0.061-53.19 43.163-96.294 96.353-96.358h831.302c53.19 0.062 96.293 43.166 96.356 96.356v831.286c-0.061 53.19-43.163 96.294-96.353 96.359h-0.002zM96.356 79.352h-0c-9.391 0-17.004 7.613-17.004 17.004 0 0 0 0 0 0v831.289c0 9.391 7.613 17.004 17.004 17.004h831.3c9.391 0 17.004-7.613 17.004-17.004v-831.289c0-9.391-7.613-17.004-17.004-17.004h-831.3z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "gantt"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 18,
+ "paths": [
+ "M101.777 204.592h90.353c25.963 0 46.734-20.771 46.734-46.734s-20.771-46.734-46.734-46.734h-90.353c-56.081 0-101.777 45.696-101.777 101.777v595.083c0 56.081 45.696 101.777 101.777 101.777h90.353c25.963 0 46.734-20.771 46.734-46.734s-20.771-46.734-46.734-46.734h-90.353c-5.193 0-8.308-4.154-8.308-8.308v-250.288h98.661c25.963 0 46.734-20.771 46.734-46.734s-20.771-46.734-46.734-46.734h-98.661v-251.327c0-4.154 3.116-8.308 8.308-8.308zM981.42 386.336h-638.702c-23.886 0-43.619 19.732-43.619 43.619v163.051c0 23.886 19.732 43.619 43.619 43.619h637.663c23.886 0 43.619-19.732 43.619-43.619v-163.051c0-23.886-18.694-43.619-42.58-43.619v0zM421.647 543.156c0 9.347-8.308 16.617-18.694 16.617h-2.077c-9.347 0-16.617-7.27-16.617-16.617v-64.389c0-9.347 7.27-16.617 16.617-16.617h2.077c10.385 0 18.694 7.27 18.694 16.617v64.389zM940.917 519.269c0 22.848-17.655 40.503-40.503 40.503h-352.065c-22.848 0-40.503-17.655-40.503-40.503v-16.617c0-22.848 17.655-40.503 40.503-40.503h352.065c22.848 0 40.503 17.655 40.503 40.503v16.617zM981.42 25.963h-638.702c-23.886 0-43.619 19.732-43.619 43.619v163.051c0 23.886 19.732 43.619 43.619 43.619h637.663c23.886 0 43.619-19.732 43.619-43.619v-164.089c0-23.886-18.694-42.58-42.58-42.58zM421.647 182.782c0 9.347-8.308 16.617-18.694 16.617h-2.077c-9.347 0-16.617-7.27-16.617-16.617v-64.389c0-9.347 7.27-16.617 16.617-16.617h2.077c10.385 0 18.694 7.27 18.694 16.617v64.389zM940.917 158.896c0 22.848-17.655 40.503-40.503 40.503h-352.065c-22.848 0-40.503-17.655-40.503-40.503v-16.617c0-22.848 17.655-40.503 40.503-40.503h352.065c22.848 0 40.503 17.655 40.503 40.503v16.617zM981.42 747.748h-638.702c-23.886 0-43.619 19.732-43.619 43.619v163.051c0 23.886 19.732 43.619 43.619 43.619h637.663c23.886 0 43.619-19.732 43.619-43.619v-164.089c0-23.886-18.694-42.58-42.58-42.58zM421.647 904.567c0 9.347-8.308 16.617-18.694 16.617h-2.077c-9.347 0-16.617-7.27-16.617-16.617v-64.389c0-9.347 7.27-16.617 16.617-16.617h2.077c10.385 0 18.694 7.27 18.694 16.617v64.389zM940.917 880.681c0 22.848-17.655 40.503-40.503 40.503h-352.065c-22.848 0-40.503-17.655-40.503-40.503v-16.617c0-22.848 17.655-40.503 40.503-40.503h352.065c22.848 0 40.503 17.655 40.503 40.503v16.617z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "group-view"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 19,
+ "paths": [
+ "M719.676 769.262h121.968c54.23 0 98.192-43.962 98.192-98.192 0 0 0 0 0 0v-315.616c0-54.23-43.962-98.192-98.192-98.192 0 0 0 0 0 0h-210.411v58.144c0 77.471-62.803 140.274-140.274 140.274h-350.685c-77.471 0-140.274-62.803-140.274-140.274 0 0 0 0 0 0v-170.363c0-77.471 62.803-140.274 140.274-140.274h350.685c77.471 0 140.274 62.803 140.274 140.274v28.055h210.411c100.713 0 182.356 81.643 182.356 182.356 0 0 0 0 0 0v315.616c0 100.713-81.643 182.356-182.356 182.356h-121.968v80.658l-210.411-131.507 210.411-131.507v98.192zM140.274 88.933v0c-30.988 0-56.109 25.121-56.109 56.109v170.363c0 30.988 25.121 56.109 56.109 56.109h350.685c30.988 0 56.109-25.121 56.109-56.109 0 0 0 0 0 0v-170.363c0-30.988-25.121-56.109-56.109-56.109h-350.685zM140.274 568.39h170.363c77.471 0 140.274 62.803 140.274 140.274v170.293c0 77.471-62.803 140.274-140.274 140.274h-170.363c-77.471 0-140.274-62.803-140.274-140.274 0 0 0 0 0 0v-170.293c0-77.471 62.803-140.274 140.274-140.274v0zM140.274 652.554v0c-30.988 0-56.109 25.121-56.109 56.109 0 0 0 0 0 0v170.293c0 30.988 25.121 56.109 56.109 56.109h170.363c30.988 0 56.109-25.121 56.109-56.109 0 0 0 0 0 0v-170.293c0-30.988-25.121-56.109-56.109-56.109 0 0 0 0 0 0h-170.363z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "inherit-space"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 20,
+ "paths": [
+ "M108.872 501.729h488.889c51.699 0 89.797-27.204 101.593-73.486 0.903-4.516 2.709-10.893 4.516-18.118v0c4.038-18.065 8.897-35.938 14.561-53.562h188.625c19.98 0 36.292 16.368 36.292 36.292v2.765l-13.546 170.507c0 19.98 16.254 36.292 36.235 36.292s36.292-16.368 36.292-36.292v-0.903l13.602-173.274c0-59.827-48.991-108.818-108.874-108.818h-20.883v-174.176c0-56.215-45.322-101.593-101.593-101.593h-554.134c-56.215 0-101.593 45.378-101.593 101.593v320.188h-19.923c-59.94 0-108.931 48.991-108.931 111.583l36.292 332.887c0 59.827 48.991 108.874 108.818 108.874h527.946c18.927-1.526 33.526-17.303 33.582-36.292v0c-0.056-18.989-14.655-34.765-33.582-36.291h-527.946c-19.923 0-36.235-16.368-36.235-39.001l-36.292-332.887c0-19.98 16.311-36.292 36.292-36.292v0zM201.378 108.959c0-16.368 13.547-29.913 29.914-29.913h554.247c16.368 0 29.913 13.546 29.913 29.913v175.078h-117.961c-0.847 0-1.75 0.903-2.652 0.903v0c-4.102 0.022-8.148 0.947-11.852 2.709-0.847 0-0.847 0.903-1.75 0.903v0c-3.647 1.582-7.019 3.735-9.99 6.378-19.076 18.118-28.108 54.408-39.001 99.731-1.806 6.378-2.709 11.852-3.669 16.368-1.806 6.321-4.516 19.021-30.816 19.021h-396.383v-321.091zM902.428 692.838l110.68 102.496c14.277 13.934 14.553 36.804 0.619 51.080-0.204 0.209-0.41 0.415-0.619 0.619v0c-6.669 6.881-15.817 10.804-25.399 10.893v0c-9.582-0.090-18.728-4.013-25.399-10.893l-47.184-48.087v181.4c0 19.98-16.311 36.292-36.292 36.292v0c-19.996-0.093-36.173-16.296-36.235-36.292v-180.497l-47.184 48.087c-6.566 7.030-15.779 10.982-25.399 10.893v0c-9.582-0.090-18.728-4.013-25.399-10.893v0c-14.277-13.934-14.553-36.804-0.619-51.080 0.204-0.209 0.41-0.415 0.619-0.619l109.72-101.593c6.898-6.424 15.974-9.99 25.399-9.99 8.184 0 16.368 2.709 22.689 8.184v0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "card-archive"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 21,
+ "paths": [
+ "M960 86.324h-896.002c-35.3 0-64 29.266-64 65.489v769.489c0 9.004 7.199 16.371 15.999 16.371h992.002c8.8 0 15.999-7.367 15.999-16.371v-769.489c0-36.223-28.699-65.489-64-65.489zM479.999 868.095c0 2.252-1.799 4.092-3.999 4.092h-408.001c-2.2 0-3.999-1.843-3.999-4.092v-581.21c0-2.252 1.799-4.092 3.999-4.092h408.001c2.2 0 3.999 1.843 3.999 4.092v581.21zM960 868.095c0 2.252-1.799 4.092-3.999 4.092h-408.001c-2.2 0-3.999-1.843-3.999-4.092v-581.21c0-2.252 1.799-4.092 3.999-4.092h408.001c2.2 0 3.999 1.843 3.999 4.092v581.21z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "col-archive"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 22,
+ "paths": [
+ "M146.285 0.001v0c-80.791 0-146.285 65.494-146.285 146.285 0 0 0 0 0 0v731.429c0 80.791 65.494 146.285 146.285 146.285 0 0 0 0 0 0h731.429c80.791 0 146.285-65.494 146.285-146.285 0 0 0 0 0 0v-731.429c0-80.791-65.494-146.285-146.285-146.285 0 0 0 0 0 0h-731.429zM73.143 73.145h877.714v877.714h-877.714v-877.714z",
+ "M585.143 146.287h292.572v731.429h-292.572z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "col-add-right"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 23,
+ "paths": [
+ "M877.715 0v0c80.791 0 146.285 65.494 146.285 146.285 0 0 0 0 0 0v731.429c0 80.791-65.494 146.285-146.285 146.285 0 0 0 0 0 0h-731.429c-80.791 0-146.285-65.494-146.285-146.285 0 0 0 0 0 0v-731.429c0-80.791 65.494-146.285 146.285-146.285 0 0 0 0 0 0h731.429zM950.857 73.144h-877.714v877.714h877.714v-877.714z",
+ "M438.857 146.286h-292.572v731.429h292.572z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "col-add-left"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 24,
+ "paths": [
+ "M228.514 440.859h159.528v127.192h-159.528v153.062l-228.514-211.268 228.514-213.423v144.438zM797.643 296.421v146.594h-159.529v127.192h159.529v153.062l226.358-213.423-226.358-213.424zM513.079 108.867h-77.608v806.266h157.373v-806.266h-79.764z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "col-split"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 25,
+ "paths": [
+ "M72.017 72.017v128.281h438.857v-128.281h-438.857zM40.51 4.501h501.873c19.887 0 36.009 16.122 36.009 36.009v191.296c0 19.887-16.122 36.009-36.009 36.009h-501.873c-19.887 0-36.009-16.122-36.009-36.009v-191.296c0-19.887 16.122-36.009 36.009-36.009z",
+ "M674.918 158.664h-120.157v-45.011h140.413c13.673 0 24.756 11.084 24.756 24.756v159.619h-45.011v-139.365z",
+ "M825.952 535.63v-45.011h140.413c13.673 0 24.756 11.084 24.756 24.756v168.621h-45.011v-148.367h-120.157z",
+ "M968.861 754.376l55.139-108.469h-110.277z",
+ "M696.545 380.786l55.139-108.469h-110.277z",
+ "M342.083 447.859v128.281h438.857v-128.281h-438.857zM310.575 380.343h501.873c19.887 0 36.009 16.122 36.009 36.009v191.296c0 19.887-16.122 36.009-36.009 36.009h-501.873c-19.887 0-36.009-16.122-36.009-36.009v-191.296c0-19.887 16.122-36.009 36.009-36.009z",
+ "M522.127 823.701v128.281h438.857v-128.281h-438.857zM490.62 756.184h501.873c19.887 0 36.009 16.122 36.009 36.009v191.296c0 19.887-16.122 36.009-36.009 36.009h-501.873c-19.887 0-36.009-16.122-36.009-36.009v-191.296c0-19.887 16.122-36.009 36.009-36.009z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "waterfall"
+ ],
+ "defaultCode": 59812,
+ "grid": 14
+ },
+ {
+ "id": 26,
+ "paths": [
+ "M749.977 69.681c141.995 0 248.287 57.207 254.499 59.392 11.605 4.096 19.387 15.019 19.524 27.375v768.889c0.020 15.986-12.922 28.962-28.908 28.982-2.171 0-4.337-0.239-6.455-0.72-1.843-0.409-121.446-41.37-236.612-41.37-90.795 0-212.924 33.382-214.357 33.792-7.85 2.117-14.336 2.731-22.050 3.959-7.45-0.683-14.827-2.008-22.050-3.959-1.365-0.409-80.76-33.792-233.608-33.792-93.867 0-223.232 41.097-224.598 41.37-15.635 3.507-31.153-6.327-34.659-21.962-0.469-2.091-0.703-4.227-0.703-6.369v-768.82c0-12.425 7.919-23.279 19.524-27.443 6.212-2.253 109.090-59.324 233.677-59.324 124.655 0 253.133 50.654 258.526 52.77 1.247 0.531 2.456 1.147 3.618 1.843 1.2-0.671 2.43-1.286 3.686-1.843 5.461-2.117 88.951-52.77 230.946-52.77v0zM253.268 138.357c-100.967 0-142.472 24.166-163.704 35.226-12.152 6.349-21.231 14.882-21.231 27.853l0.341 637.543c0 17.954 16.111 31.539 33.792 28.536 57.276-9.899 87.245-25.532 157.559-25.532 93.184 0 126.43 15.019 183.637 25.532 15.674 2.94 30.766-7.382 33.706-23.057 0.33-1.761 0.496-3.55 0.495-5.342l1.843-637.816c-0.006-12.731-8.312-23.971-20.481-27.716-48.128-14.404-105.132-35.226-206.029-35.226h0.070zM752.093 138.358c-101.034 0-136.192 24.986-184.116 39.594-12.239 3.644-20.644 14.878-20.684 27.648v630.716c0 18.090 16.384 31.676 34.202 28.399 54.204-10.035 83.081-19.593 170.667-22.733 77.619-2.867 112.298 12.97 169.574 22.869 15.76 2.676 30.706-7.929 33.383-23.69 0.272-1.601 0.408-3.222 0.408-4.846l1.365-630.579c0-12.97-9.011-20.753-21.163-27.853-48.196-28.126-82.602-39.527-183.637-39.527v0zM398.472 615.406c6.144 0 11.128 8.875 11.128 19.729v28.809c-0.136 10.923-5.12 19.729-11.264 19.729h-250.676c-6.144 0-11.128-8.875-11.128-19.729v-28.809c0-10.923 4.984-19.729 11.128-19.729h250.812zM876.339 615.406c6.144 0 11.128 8.875 11.128 19.729v28.809c-0.136 10.923-4.984 19.729-11.128 19.729h-250.812c-6.144 0-11.128-8.875-11.128-19.729v-28.809c0-10.923 4.984-19.729 11.128-19.729h250.812zM398.472 478.872c6.144 0 11.128 8.875 11.128 19.729v28.809c-0.136 10.923-5.12 19.729-11.264 19.729h-250.676c-6.144 0-11.128-8.875-11.128-19.729v-28.809c0-10.923 4.984-19.729 11.128-19.729h250.812zM876.339 478.872c6.144 0 11.128 8.875 11.128 19.729v28.809c-0.136 10.923-4.984 19.729-11.128 19.729h-250.812c-6.144 0-11.128-8.875-11.128-19.729v-28.809c0-10.923 4.984-19.729 11.128-19.729h250.812zM398.472 342.339c6.144 0 11.128 8.875 11.128 19.729v28.809c-0.136 10.923-5.12 19.729-11.264 19.729h-250.676c-6.144 0-11.128-8.875-11.128-19.729v-28.809c0-10.923 4.984-19.729 11.128-19.729h250.812zM876.339 342.339c6.144 0 11.128 8.875 11.128 19.729v28.809c-0.136 10.923-4.984 19.729-11.128 19.729h-250.812c-6.144 0-11.128-8.875-11.128-19.729v-28.809c0-10.923 4.984-19.729 11.128-19.729h250.812z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "manual"
+ ],
+ "defaultCode": 59789,
+ "grid": 14
+ },
+ {
+ "id": 27,
+ "paths": [
+ "M109.715 109.713c-20.198 0-36.572 16.374-36.572 36.572v731.427c0 20.198 16.374 36.572 36.572 36.572h219.429c20.198 0 36.572-16.374 36.572-36.572v-731.427c0-20.198-16.374-36.572-36.572-36.572h-219.429zM109.715 36.57h219.429c60.594 0 109.714 49.121 109.714 109.714v731.427c0 60.594-49.121 109.714-109.714 109.714h-219.429c-60.594 0-109.714-49.121-109.714-109.714v-731.427c0-60.594 49.121-109.714 109.714-109.714z",
+ "M621.714 621.714c-20.198 0-36.572 16.374-36.572 36.572v219.429c0 20.198 16.374 36.572 36.572 36.572h219.429c20.198 0 36.572-16.374 36.572-36.572v-219.429c0-20.198-16.374-36.572-36.572-36.572h-219.429zM621.714 548.571h219.429c60.594 0 109.714 49.121 109.714 109.714v219.429c0 60.594-49.121 109.714-109.714 109.714h-219.429c-60.594 0-109.714-49.121-109.714-109.714v-219.429c0-60.594 49.121-109.714 109.714-109.714z",
+ "M621.714 109.713c-20.198 0-36.572 16.374-36.572 36.572v219.429c0 20.198 16.374 36.572 36.572 36.572h219.429c20.198 0 36.572-16.374 36.572-36.572v-219.429c0-20.198-16.374-36.572-36.572-36.572h-219.429zM621.714 36.57h219.429c60.594 0 109.714 49.121 109.714 109.714v219.429c0 60.594-49.121 109.714-109.714 109.714h-219.429c-60.594 0-109.714-49.121-109.714-109.714v-219.429c0-60.594 49.121-109.714 109.714-109.714z"
+ ],
+ "width": 950.8571428571429,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "kanban"
+ ],
+ "defaultCode": 59779,
+ "grid": 14
+ },
+ {
+ "id": 28,
+ "paths": [
+ "M67.587 928.691v-855.921c0-40.19 32.581-72.771 72.771-72.771 0 0 0 0 0 0h810.872c40.19 0 72.771 32.58 72.771 72.771v855.921c0 40.19-32.581 72.771-72.771 72.771h-810.872c-40.19 0-72.771-32.581-72.771-72.771 0 0 0 0 0 0v0zM961.625 72.771v0c0-5.741-4.654-10.396-10.396-10.396h-810.872c-5.741 0-10.396 4.654-10.396 10.396v855.921c0 5.741 4.654 10.396 10.396 10.396h810.872c5.741 0 10.396-4.654 10.396-10.396v-855.921zM992.812 291.082v62.375h-894.038v-62.375h894.038zM992.812 675.726v62.375h-894.038v-62.375h894.038z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "lane"
+ ],
+ "defaultCode": 59825,
+ "grid": 14
+ }
+ ],
+ "colorThemes": [],
+ "colorThemeIdx": 0,
+ "invisible": false
+ },
+ {
+ "selection": [
+ {
+ "order": 383,
+ "id": 0,
+ "name": "snap-house",
+ "prevSize": 18,
+ "code": 59875,
+ "tempChar": ""
+ },
+ {
+ "order": 382,
+ "id": 1,
+ "name": "wrench",
+ "prevSize": 18,
+ "code": 59876,
+ "tempChar": ""
+ },
+ {
+ "order": 381,
+ "id": 2,
+ "name": "desktop",
+ "prevSize": 18,
+ "code": 59877,
+ "tempChar": ""
+ },
+ {
+ "order": 355,
+ "id": 3,
+ "name": "back-circle",
+ "prevSize": 18,
+ "code": 59866,
+ "tempChar": ""
+ },
+ {
+ "order": 333,
+ "id": 4,
+ "name": "back",
+ "prevSize": 18,
+ "code": 59859,
+ "tempChar": ""
+ },
+ {
+ "order": 326,
+ "id": 5,
+ "name": "shield",
+ "prevSize": 18,
+ "code": 59850,
+ "tempChar": ""
+ },
+ {
+ "order": 327,
+ "id": 6,
+ "name": "meh",
+ "prevSize": 18,
+ "code": 59854,
+ "tempChar": ""
+ },
+ {
+ "order": 328,
+ "id": 7,
+ "name": "frown",
+ "prevSize": 18,
+ "code": 59855,
+ "tempChar": ""
+ },
+ {
+ "order": 329,
+ "id": 8,
+ "name": "smile",
+ "prevSize": 18,
+ "code": 59856,
+ "tempChar": ""
+ },
+ {
+ "order": 330,
+ "id": 9,
+ "name": "unlock-solid",
+ "prevSize": 18,
+ "code": 59857,
+ "tempChar": ""
+ },
+ {
+ "order": 331,
+ "id": 10,
+ "name": "lock-solid",
+ "prevSize": 18,
+ "code": 59858,
+ "tempChar": ""
+ },
+ {
+ "order": 319,
+ "id": 11,
+ "name": "ver",
+ "prevSize": 18,
+ "code": 59846,
+ "tempChar": ""
+ },
+ {
+ "order": 318,
+ "id": 12,
+ "name": "publish, send",
+ "prevSize": 18,
+ "code": 59847,
+ "tempChar": ""
+ },
+ {
+ "order": 304,
+ "id": 13,
+ "name": "tag",
+ "prevSize": 18,
+ "code": 59838,
+ "tempChar": ""
+ },
+ {
+ "order": 305,
+ "id": 14,
+ "name": "tag-lock",
+ "prevSize": 18,
+ "code": 59839,
+ "tempChar": ""
+ },
+ {
+ "name": "code-fork",
+ "id": 15,
+ "order": 307,
+ "prevSize": 18,
+ "code": 61734,
+ "tempChar": ""
+ },
+ {
+ "order": 306,
+ "id": 16,
+ "name": "branch-lock",
+ "prevSize": 18,
+ "code": 59840,
+ "tempChar": ""
+ },
+ {
+ "order": 295,
+ "id": 17,
+ "name": "diff",
+ "prevSize": 28,
+ "code": 59831,
+ "tempChar": ""
+ },
+ {
+ "order": 291,
+ "id": 18,
+ "name": "groups",
+ "prevSize": 18,
+ "code": 59823,
+ "tempChar": ""
+ },
+ {
+ "name": "thumbs-up",
+ "id": 19,
+ "order": 336,
+ "prevSize": 18,
+ "code": 61575,
+ "tempChar": ""
+ },
+ {
+ "name": "thumbs-down",
+ "id": 20,
+ "order": 288,
+ "prevSize": 18,
+ "code": 61576,
+ "tempChar": ""
+ },
+ {
+ "order": 337,
+ "id": 21,
+ "name": "thumbs-up-solid",
+ "prevSize": 18,
+ "code": 59862,
+ "tempChar": ""
+ },
+ {
+ "order": 338,
+ "id": 22,
+ "name": "thumbs-down-solid",
+ "prevSize": 18,
+ "code": 59863,
+ "tempChar": ""
+ },
+ {
+ "order": 284,
+ "id": 23,
+ "name": "hash, version",
+ "prevSize": 18,
+ "code": 59819,
+ "tempChar": ""
+ },
+ {
+ "order": 279,
+ "id": 24,
+ "name": "p-square",
+ "prevSize": 18,
+ "code": 59771,
+ "tempChar": ""
+ },
+ {
+ "order": 278,
+ "id": 25,
+ "name": "video-play",
+ "prevSize": 18,
+ "code": 59775,
+ "tempChar": ""
+ },
+ {
+ "order": 274,
+ "id": 26,
+ "name": "plus-solid-circle",
+ "prevSize": 18,
+ "code": 59764,
+ "tempChar": ""
+ },
+ {
+ "order": 294,
+ "id": 27,
+ "name": "minuse-solid-circle",
+ "prevSize": 18,
+ "code": 59830,
+ "tempChar": ""
+ },
+ {
+ "order": 275,
+ "id": 28,
+ "name": "s",
+ "prevSize": 18,
+ "code": 59765,
+ "codes": [
+ 59765
+ ],
+ "tempChar": ""
+ },
+ {
+ "order": 276,
+ "id": 29,
+ "name": "c",
+ "prevSize": 18,
+ "code": 59766,
+ "codes": [
+ 59766
+ ],
+ "tempChar": ""
+ },
+ {
+ "order": 277,
+ "id": 30,
+ "name": "t",
+ "prevSize": 18,
+ "code": 59767,
+ "codes": [
+ 59767
+ ],
+ "tempChar": ""
+ },
+ {
+ "order": 273,
+ "id": 31,
+ "name": "guide",
+ "prevSize": 18,
+ "code": 59768,
+ "codes": [
+ 59768
+ ],
+ "tempChar": ""
+ },
+ {
+ "order": 272,
+ "id": 32,
+ "name": "todo",
+ "prevSize": 18,
+ "code": 59769,
+ "tempChar": ""
+ },
+ {
+ "order": 86,
+ "id": 33,
+ "name": "close",
+ "prevSize": 18,
+ "code": 59702,
+ "tempChar": ""
+ },
+ {
+ "ligatures": "check",
+ "id": 34,
+ "order": 87,
+ "prevSize": 18,
+ "code": 58826,
+ "name": "check",
+ "tempChar": ""
+ },
+ {
+ "id": 35,
+ "order": 88,
+ "prevSize": 18,
+ "code": 59685,
+ "name": "plus",
+ "tempChar": ""
+ },
+ {
+ "id": 36,
+ "order": 89,
+ "prevSize": 18,
+ "code": 59686,
+ "name": "minus",
+ "tempChar": ""
+ },
+ {
+ "name": "expand-alt",
+ "id": 37,
+ "order": 90,
+ "prevSize": 18,
+ "code": 59121,
+ "tempChar": ""
+ },
+ {
+ "name": "collapse-alt",
+ "id": 38,
+ "order": 91,
+ "prevSize": 18,
+ "code": 59122,
+ "tempChar": ""
+ },
+ {
+ "order": 92,
+ "id": 39,
+ "name": "side-left",
+ "prevSize": 18,
+ "code": 59827,
+ "tempChar": ""
+ },
+ {
+ "order": 93,
+ "id": 40,
+ "name": "side-right",
+ "prevSize": 18,
+ "code": 59826,
+ "tempChar": ""
+ },
+ {
+ "order": 94,
+ "id": 41,
+ "name": "fullscreen",
+ "prevSize": 18,
+ "code": 59755,
+ "tempChar": ""
+ },
+ {
+ "order": 95,
+ "id": 42,
+ "name": "fullscreen-exit",
+ "prevSize": 18,
+ "code": 59762,
+ "tempChar": ""
+ },
+ {
+ "order": 96,
+ "id": 43,
+ "name": "star-empty",
+ "prevSize": 18,
+ "code": 59722,
+ "tempChar": ""
+ },
+ {
+ "order": 97,
+ "id": 44,
+ "name": "star",
+ "prevSize": 18,
+ "code": 59723,
+ "tempChar": ""
+ },
+ {
+ "order": 98,
+ "id": 45,
+ "name": "exclamation-sign",
+ "prevSize": 18,
+ "code": 59696,
+ "tempChar": ""
+ },
+ {
+ "order": 335,
+ "id": 46,
+ "name": "info-sign",
+ "prevSize": 18,
+ "code": 59861,
+ "tempChar": ""
+ },
+ {
+ "order": 99,
+ "id": 47,
+ "name": "flag",
+ "prevSize": 18,
+ "code": 59703,
+ "tempChar": ""
+ },
+ {
+ "order": 100,
+ "id": 48,
+ "name": "check-circle",
+ "prevSize": 18,
+ "code": 59695,
+ "tempChar": ""
+ },
+ {
+ "order": 101,
+ "id": 49,
+ "name": "check-sign",
+ "prevSize": 18,
+ "code": 59704,
+ "tempChar": ""
+ },
+ {
+ "order": 102,
+ "id": 50,
+ "name": "chart-pie",
+ "prevSize": 18,
+ "code": 59739,
+ "tempChar": ""
+ },
+ {
+ "order": 282,
+ "id": 51,
+ "name": "alert",
+ "prevSize": 18,
+ "code": 59807,
+ "tempChar": ""
+ },
+ {
+ "order": 271,
+ "id": 52,
+ "name": "undo",
+ "prevSize": 18,
+ "code": 59711,
+ "tempChar": ""
+ },
+ {
+ "order": 332,
+ "id": 53,
+ "name": "redo",
+ "prevSize": 18,
+ "code": 59860,
+ "tempChar": ""
+ },
+ {
+ "order": 104,
+ "id": 54,
+ "name": "history",
+ "prevSize": 18,
+ "code": 59743,
+ "tempChar": ""
+ },
+ {
+ "ligatures": "create, edit, mode_edit",
+ "id": 55,
+ "order": 105,
+ "prevSize": 18,
+ "code": 57940,
+ "name": "pencil",
+ "tempChar": ""
+ },
+ {
+ "name": "search",
+ "id": 56,
+ "order": 269,
+ "prevSize": 18,
+ "code": 59688,
+ "tempChar": ""
+ },
+ {
+ "order": 107,
+ "id": 57,
+ "name": "restart",
+ "prevSize": 18,
+ "code": 59742,
+ "tempChar": ""
+ },
+ {
+ "order": 108,
+ "id": 58,
+ "name": "cog",
+ "prevSize": 18,
+ "code": 59707,
+ "tempChar": ""
+ },
+ {
+ "order": 109,
+ "id": 59,
+ "name": "chart-line",
+ "prevSize": 18,
+ "code": 59740,
+ "tempChar": ""
+ },
+ {
+ "order": 110,
+ "id": 60,
+ "name": "chart-bar, bar-chart",
+ "prevSize": 18,
+ "code": 59741,
+ "tempChar": ""
+ },
+ {
+ "order": 111,
+ "id": 61,
+ "name": "exchange",
+ "prevSize": 18,
+ "code": 59687,
+ "tempChar": ""
+ },
+ {
+ "order": 112,
+ "id": 62,
+ "name": "severity",
+ "prevSize": 18,
+ "code": 59763,
+ "tempChar": ""
+ },
+ {
+ "name": "book",
+ "id": 63,
+ "order": 113,
+ "prevSize": 18,
+ "code": 61485,
+ "tempChar": ""
+ },
+ {
+ "order": 114,
+ "id": 64,
+ "name": "treemap-alt",
+ "prevSize": 18,
+ "code": 59761,
+ "tempChar": ""
+ },
+ {
+ "order": 115,
+ "id": 65,
+ "name": "severity-solid",
+ "prevSize": 18,
+ "code": 59650,
+ "tempChar": ""
+ },
+ {
+ "id": 66,
+ "order": 116,
+ "ligatures": "",
+ "prevSize": 18,
+ "name": "chat-line",
+ "code": 59800,
+ "tempChar": ""
+ },
+ {
+ "ligatures": "stack, layers",
+ "name": "stack",
+ "order": 117,
+ "id": 67,
+ "prevSize": 18,
+ "code": 59715,
+ "tempChar": ""
+ },
+ {
+ "order": 118,
+ "id": 68,
+ "name": "cube",
+ "prevSize": 18,
+ "code": 59751,
+ "tempChar": ""
+ },
+ {
+ "order": 119,
+ "id": 69,
+ "name": "minus-sign",
+ "prevSize": 18,
+ "code": 59705,
+ "tempChar": ""
+ },
+ {
+ "order": 120,
+ "id": 70,
+ "name": "bars-sign",
+ "prevSize": 18,
+ "code": 59706,
+ "tempChar": ""
+ },
+ {
+ "order": 121,
+ "id": 71,
+ "name": "swap",
+ "prevSize": 18,
+ "code": 59824,
+ "tempChar": ""
+ },
+ {
+ "order": 293,
+ "id": 72,
+ "name": "chat-solid",
+ "prevSize": 18,
+ "code": 59829,
+ "tempChar": ""
+ },
+ {
+ "order": 122,
+ "id": 73,
+ "name": "chat, message",
+ "prevSize": 18,
+ "tempChar": "",
+ "code": 59712
+ },
+ {
+ "order": 123,
+ "id": 74,
+ "name": "clock",
+ "prevSize": 18,
+ "code": 59772,
+ "tempChar": ""
+ },
+ {
+ "order": 124,
+ "id": 75,
+ "name": "cost",
+ "prevSize": 18,
+ "code": 59773,
+ "tempChar": ""
+ },
+ {
+ "id": 76,
+ "order": 125,
+ "ligatures": "",
+ "prevSize": 18,
+ "name": "more",
+ "code": 59204,
+ "tempChar": ""
+ },
+ {
+ "name": "certificate",
+ "id": 77,
+ "order": 126,
+ "prevSize": 18,
+ "code": 61603,
+ "tempChar": ""
+ },
+ {
+ "ligatures": "notifications_none",
+ "id": 78,
+ "order": 127,
+ "prevSize": 18,
+ "name": "bell",
+ "code": 59381,
+ "tempChar": ""
+ },
+ {
+ "name": "columns",
+ "id": 79,
+ "order": 128,
+ "prevSize": 18,
+ "code": 61659,
+ "tempChar": ""
+ },
+ {
+ "order": 129,
+ "id": 80,
+ "name": "pencil-alt",
+ "prevSize": 18,
+ "code": 59780,
+ "tempChar": ""
+ },
+ {
+ "name": "envelope-o",
+ "id": 81,
+ "order": 130,
+ "prevSize": 18,
+ "code": 59690,
+ "tempChar": ""
+ },
+ {
+ "order": 131,
+ "id": 82,
+ "name": "unfold-all",
+ "prevSize": 18,
+ "code": 59697,
+ "tempChar": ""
+ },
+ {
+ "order": 132,
+ "id": 83,
+ "name": "fold-all",
+ "prevSize": 18,
+ "code": 59698,
+ "tempChar": ""
+ },
+ {
+ "order": 133,
+ "id": 84,
+ "name": "bars",
+ "prevSize": 18,
+ "code": 59720,
+ "tempChar": ""
+ },
+ {
+ "order": 134,
+ "id": 85,
+ "name": "cards-view",
+ "prevSize": 18,
+ "code": 59721,
+ "tempChar": ""
+ },
+ {
+ "ligatures": "more_vert",
+ "id": 86,
+ "order": 135,
+ "prevSize": 18,
+ "name": "ellipsis-v",
+ "code": 58836,
+ "tempChar": ""
+ },
+ {
+ "ligatures": "spinner9, loading10",
+ "name": "spinner-indicator",
+ "order": 136,
+ "id": 87,
+ "prevSize": 18,
+ "code": 59778,
+ "tempChar": ""
+ },
+ {
+ "order": 317,
+ "id": 88,
+ "name": "size-height",
+ "prevSize": 18,
+ "code": 59845,
+ "tempChar": ""
+ }
+ ],
+ "id": 7,
+ "metadata": {
+ "name": "通用交互符号",
+ "importSize": {
+ "width": 16,
+ "height": 14
+ }
+ },
+ "height": 1024,
+ "prevSize": 28,
+ "icons": [
+ {
+ "id": 0,
+ "paths": [
+ "M511.859 44.897l474.692 348.82-38.156 51.923-22.799-16.699 0.036 550.163h-817.261l-0.036-557.789-33.016 24.325-38.156-51.923 474.692-348.82zM511.814 124.85l-335.371 246.407 0.036 539.741 306.438-0.008 0.036-578.886h68.106l-0.036 578.886 306.509 0.008-0.036-532.116-345.679-254.035zM448.898 400.21v68.106h-170.262v340.526h170.262v68.106h-238.367v-476.735h238.367zM789.424 808.842v68.106h-68.106v-68.106h68.106zM653.215 808.842v68.106h-68.106v-68.106h68.106zM789.424 672.632v68.106h-68.106v-68.106h68.106zM789.424 536.421v68.106h-68.106v-68.106h68.106zM653.215 400.21v68.106h-68.106v-68.106h68.106zM789.424 400.21v68.106h-68.106v-68.106h68.106z"
+ ],
+ "width": 1023.7142857142854,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "snap-house"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 1,
+ "paths": [
+ "M203.18 1000.941c-14.334 14.334-34.903 23.060-56.093 23.060s-41.759-8.726-56.716-23.060l-66.064-67.311c-14.957-14.334-23.683-34.902-23.683-56.092s8.726-41.759 23.683-56.716l424.434-424.434c32.41 81.646 97.85 147.086 179.496 179.496l-425.056 425.056zM186.975 797.76c-21.814 0-39.889 18.074-39.889 39.889s18.074 39.889 39.889 39.889 39.889-18.074 39.889-39.889-18.074-39.889-39.889-39.889zM1009.042 370.834c-39.266 110.937-145.84 187.599-263.633 187.599-153.943 0-279.217-125.273-279.217-279.216s125.273-279.216 279.217-279.216c45.497 0 104.705 13.711 142.724 39.266 6.232 4.362 9.972 9.972 9.972 17.45 0 6.856-4.363 13.711-9.972 17.451l-182.612 105.329v139.609l120.287 66.687c20.568-11.841 165.16-102.836 177.626-102.836s19.943 9.349 19.943 21.814c-0.001 20.566-7.479 46.119-14.336 66.063z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": [
+ {}
+ ]
+ },
+ "tags": [
+ "wrench"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 2,
+ "paths": [
+ "M1024 603.428v-475.429c0-9.728-8.558-18.286-18.286-18.286h-914.286c-9.728 0-18.286 8.558-18.286 18.286v475.429c0 9.728 8.558 18.286 18.286 18.286h914.286c9.728 0 18.286-8.558 18.286-18.286zM1097.143 128v621.714c0 50.286-41.143 91.429-91.429 91.429h-310.857c0 48.567 36.571 89.71 36.571 109.714s-16.567 36.571-36.571 36.571h-292.571c-20.005 0-36.571-16.567-36.571-36.571 0-21.138 36.571-60.014 36.571-109.714h-310.857c-50.436-0.145-91.283-40.993-91.429-91.415v-621.728c0-50.286 41.143-91.429 91.429-91.429h914.286c50.286 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 1097,
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": [
+ {}
+ ]
+ },
+ "tags": [
+ "desktop"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 3,
+ "paths": [
+ "M598.656 681.344c5.798 5.798 9.384 13.808 9.384 22.656 0 17.695-14.345 32.040-32.040 32.040-8.848 0-16.858-3.586-22.656-9.384v0l-192-192c-5.808-5.794-9.401-13.805-9.401-22.656s3.593-16.862 9.401-22.655l0.001-0.001 192-192c5.798-5.798 13.808-9.384 22.656-9.384 17.695 0 32.040 14.345 32.040 32.040 0 8.848-3.586 16.858-9.384 22.656h-0l-169.408 169.344 169.408 169.344zM512 1024c-282.77 0-512-229.23-512-512s229.23-512 512-512v0c282.77 0 512 229.23 512 512s-229.23 512-512 512v0zM512 960c247.424 0 448-200.576 448-448s-200.576-448-448-448v0c-247.424 0-448 200.576-448 448s200.576 448 448 448v0z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": [
+ {}
+ ]
+ },
+ "tags": [
+ "back-circle"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 4,
+ "paths": [
+ "M63.716 383.918c0 8.507 3.502 16.51 9.506 22.514l256.164 256.164c6.004 6.004 14.009 9.506 22.514 9.506 17.513 0 32.020-14.508 32.020-32.020v-128.082h112.071c215.637 0 357.227 41.527 357.227 280.178 0 20.514-1.001 41.026-2.501 61.54-0.5 8.005-2.501 17.012-2.501 25.015 0 9.506 6.004 17.513 16.011 17.513 7.004 0 10.507-3.502 14.009-8.507 7.506-10.507 13.010-26.517 18.51-38.025 28.517-64.041 63.54-155.598 63.54-225.643 0-56.036-5.504-113.572-26.517-166.606-69.545-172.61-273.673-201.628-437.778-201.628h-112.073v-128.082c0-17.511-14.508-32.020-32.020-32.020-8.507 0-16.51 3.502-22.514 9.506l-256.164 256.164c-6.004 6.004-9.506 14.009-9.506 22.514z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": [
+ {}
+ ]
+ },
+ "tags": [
+ "back"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 5,
+ "paths": [
+ "M498.592 2.545c8.616-3.393 18.198-3.393 26.811 0l402.286 158.475c14.609 5.755 23.914 20.193 23.12 35.874l-15.913 314.552c-7.393 146.117-81.65 280.697-201.325 364.862l-200.533 141.034c-12.624 8.877-29.462 8.877-42.083-0.005l-200.521-141.061c-119.621-84.151-193.858-218.679-201.271-364.745l-15.974-314.634c-0.797-15.683 8.507-30.125 23.12-35.881l402.282-158.472zM861.846 507.75l14.586-288.307-364.433-143.563v866.839l179.496-126.237c101.263-71.216 164.096-185.088 170.351-308.729v-0.002z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": [
+ {}
+ ]
+ },
+ "tags": [
+ "shield"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 6,
+ "paths": [
+ "M731.429 621.714c0 20-16.571 36.571-36.571 36.571h-365.714c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571h365.714c20 0 36.571 16.571 36.571 36.571zM438.857 365.714c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM731.429 365.714c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM877.714 512c0-201.714-164-365.714-365.714-365.714s-365.714 164-365.714 365.714 164 365.714 365.714 365.714 365.714-164 365.714-365.714zM950.857 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": [
+ {}
+ ]
+ },
+ "tags": [
+ "meh"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 7,
+ "paths": [
+ "M721.143 702.286c6.286 19.429-4.571 39.429-23.429 45.714-19.429 6.286-40-4.571-46.286-24-18.857-61.143-75.429-102.286-139.429-102.286s-120.571 41.143-139.429 102.286c-6.286 19.429-26.857 30.286-45.714 24-19.429-6.286-30.286-26.286-24-45.714 28.571-92 112.571-153.714 209.143-153.714s180.571 61.714 209.143 153.714zM438.857 365.714c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM731.429 365.714c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM877.714 512c0-201.714-164-365.714-365.714-365.714s-365.714 164-365.714 365.714 164 365.714 365.714 365.714 365.714-164 365.714-365.714zM950.857 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": [
+ {}
+ ]
+ },
+ "tags": [
+ "frown"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 8,
+ "paths": [
+ "M721.143 614.286c-28.571 92-112.571 153.714-209.143 153.714s-180.571-61.714-209.143-153.714c-6.286-19.429 4.571-39.429 24-45.714 18.857-6.286 39.429 4.571 45.714 24 18.857 61.143 75.429 102.286 139.429 102.286s120.571-41.143 139.429-102.286c6.286-19.429 26.857-30.286 46.286-24 18.857 6.286 29.714 26.286 23.429 45.714zM438.857 365.714c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM731.429 365.714c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM877.714 512c0-201.714-164-365.714-365.714-365.714s-365.714 164-365.714 365.714 164 365.714 365.714 365.714 365.714-164 365.714-365.714zM950.857 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": [
+ {}
+ ]
+ },
+ "tags": [
+ "smile"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 9,
+ "paths": [
+ "M365.714 198.531v20.898c0 20.198-16.374 36.571-36.571 36.571s-36.571-16.374-36.571-36.571v-20.898c0-89.447 72.512-161.959 161.96-161.959h114.937c89.45 0 161.96 72.512 161.96 161.959v167.184h120.163c54.824 0 99.266 44.442 99.266 99.266v423.183c0 54.824-44.442 99.266-99.266 99.266h-679.183c-54.822 0-99.265-44.442-99.265-99.266v-423.183c0-54.824 44.443-99.266 99.265-99.266h485.877v-167.184c0-49.053-39.763-88.816-88.817-88.816h-114.937c-49.053 0-88.817 39.763-88.817 88.816zM512 548.571c-20.198 0-36.571 16.373-36.571 36.571v182.857c0 20.198 16.373 36.571 36.571 36.571s36.571-16.373 36.571-36.571v-182.857c0-20.198-16.373-36.571-36.571-36.571z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": [
+ {}
+ ]
+ },
+ "tags": [
+ "unlock-solid"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 10,
+ "paths": [
+ "M585.143 36.571c80.79 0 146.286 65.494 146.286 146.286v182.857h109.714c60.595 0 109.714 49.119 109.714 109.714v402.286c0 60.595-49.119 109.714-109.714 109.714h-658.286c-60.594 0-109.714-49.119-109.714-109.714v-402.286c0-60.595 49.121-109.714 109.714-109.714h109.714v-182.857c0-80.791 65.494-146.286 146.286-146.286h146.286zM512 548.571c-20.199 0-36.571 16.374-36.571 36.571v0 182.857c0 20.199 16.373 36.571 36.571 36.571s36.571-16.374 36.571-36.571v0-182.857c0-20.199-16.374-36.571-36.571-36.571zM365.714 182.857v182.857h292.571v-182.857c0-40.395-32.746-73.143-73.143-73.143h-146.286c-40.397 0-73.143 32.747-73.143 73.143z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": [
+ {}
+ ]
+ },
+ "tags": [
+ "lock-solid"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 11,
+ "paths": [
+ "M688.557 315.715l-176.504 407.548-197.155-455.38c-7.787-17.873-28.589-26.050-46.463-18.262-3.543 1.544-6.808 3.658-9.666 6.26v0c-11.308 10.744-14.504 27.504-7.943 41.655l196.449 453.262c15.509 35.775 57.082 52.205 92.858 36.696 16.447-7.13 29.566-20.249 36.696-36.696l187.624-433.494c38.083-37.738 99.548-37.459 137.287 0.624 9.401 9.487 16.743 20.811 21.567 33.265v0c88.393 227.105-24.056 482.866-251.162 571.26s-482.866-24.056-571.26-251.162c-88.393-227.105 24.056-482.866 251.162-571.26 31.423-12.23 64.145-20.819 97.524-25.596v0c66.733-9.102 134.659-3.070 198.743 17.65v0c14.707 5.572 31.329 1.007 41.125-11.296v0c11.793-15.525 8.768-37.67-6.756-49.464-3.277-2.489-6.964-4.386-10.894-5.606v0c-268.565-88.25-557.821 57.925-646.070 326.492s57.925 557.821 326.492 646.070c268.565 88.25 557.821-57.925 646.070-326.492 13.308-40.499 21.504-82.501 24.399-125.031v0c5.948-84.086-9.094-168.332-43.773-245.164v0c-34.958-77.161-125.848-111.373-203.009-76.414-8.383 3.798-16.406 8.342-23.974 13.579v0c-27.86 19.268-49.802 45.916-63.365 76.956h-0.001z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "ver"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 12,
+ "paths": [
+ "M450.158 954.325c-2.8 0-5.7-0.5-8.3-1.5-9.799-3.4-16.599-12.299-17.299-22.599l-13.8-259.386-375.179-113.693c-20.199-5.9-34.398-23.998-35.498-44.997-1.2-21.099 10.699-40.697 30.099-49.297l958.646-391.278c3.1-1.3 6.399-1.9 9.699-1.9 5.9 0 11.699 2.1 16.199 5.9 7.2 6 10.599 15.499 8.799 24.699l-155.991 797.455c-2.4 11.3-8.599 21.499-17.599 28.898-8.9 7.299-19.999 11.3-31.499 11.3-10.2 0-20.099-3.1-28.398-9l-188.089-130.493-132.592 147.292c-4.9 5.5-11.899 8.599-19.199 8.599zM955.13 182.768l-479.673 465.474 342.081 237.586 137.593-703.060zM463.557 702.239l8.599 163.591 87.495-96.994-96.094-66.596zM902.532 162.269l-848.953 346.681 374.679 113.493 474.273-460.174z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "publish"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 13,
+ "paths": [
+ "M109.391 617.031c-24.169-24.294-36.234-56.049-36.234-87.682-0.042-31.673 12.022-63.511 36.234-87.888l356.115-356.115c7.504-7.462 17.868-12.106 29.31-12.106h414.57c22.885 0 41.457 18.573 41.457 41.457v414.57c0 10.613-4.062 21.226-12.147 29.351l-356.198 355.784c-24.294 24.253-56.215 36.399-87.971 36.358s-63.677-12.188-87.888-36.441zM168.011 558.412l297.246 297.246c8.127 8.127 18.656 12.188 29.31 12.188s21.226-4.022 29.31-12.106l344.052-343.679v-355.907h-355.95l-343.969 343.969c-7.96 8.001-11.981 18.53-11.981 29.185 0 10.613 4.022 21.101 11.981 29.102zM702.101 363.439c-22.885 0-41.457-18.573-41.457-41.457s18.573-41.457 41.457-41.457 41.457 18.573 41.457 41.457-18.573 41.457-41.457 41.457z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": [
+ {}
+ ]
+ },
+ "tags": [
+ "tag"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 14,
+ "paths": [
+ "M36.235 617.054c-24.17-24.3-36.235-56.061-36.235-87.702-0.041-31.68 12.023-63.525 36.235-87.908l356.127-356.194c7.504-7.465 17.868-12.108 29.311-12.108h414.584c22.885 0 41.458 18.578 41.458 41.465v414.662c0 10.615-4.062 21.23-12.147 29.357l-356.212 355.862c-24.296 24.259-56.217 36.408-87.973 36.367s-63.68-12.19-87.891-36.449l-297.256-297.353zM94.856 558.422l297.256 297.312c8.128 8.13 18.657 12.19 29.311 12.19s21.226-4.024 29.311-12.108l344.065-343.757v-355.986h-355.963l-343.98 344.045c-7.961 8.002-11.982 18.534-11.982 29.191 0 10.615 4.023 21.106 11.982 29.108v0.005zM628.965 363.407c-22.885 0-41.458-18.578-41.458-41.465s18.574-41.465 41.458-41.465c22.883 0 41.458 18.578 41.458 41.465s-18.574 41.465-41.458 41.465z",
+ "M956.343 816v-48c0-26.512-10.999-50.528-28.714-67.888s-42.263-28.112-69.343-28.112c-27.080 0-51.611 10.768-69.343 28.112s-28.714 41.376-28.714 67.888v48h-16.343c-13.532 0-25.822 5.392-34.663 14.064s-14.365 20.688-14.365 33.936v112c0 13.248 5.508 25.28 14.365 33.936s21.131 14.064 34.663 14.064h228.8c13.532 0 25.822-5.392 34.663-14.064s14.365-20.688 14.365-33.936v-112c0-13.248-5.508-25.28-14.365-33.936s-21.131-14.064-34.663-14.064h-16.343zM793.143 818.286v-47.020c0-17.319 7.28-32.961 19.087-44.325s28.060-18.369 46.056-18.369c17.996 0 34.249 7.006 46.056 18.369s19.087 27.005 19.087 44.325v47.020h-130.286z"
+ ],
+ "attrs": [
+ {},
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": [
+ {},
+ {}
+ ]
+ },
+ "tags": [
+ "tag-lock"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 15,
+ "paths": [
+ "M383.999 841.143c0-30.286-24.571-54.857-54.857-54.857s-54.857 24.571-54.857 54.857 24.571 54.857 54.857 54.857 54.857-24.571 54.857-54.857zM383.999 182.857c0-30.286-24.571-54.857-54.857-54.857s-54.857 24.571-54.857 54.857 24.571 54.857 54.857 54.857 54.857-24.571 54.857-54.857zM749.714 256c0-30.286-24.571-54.857-54.857-54.857s-54.857 24.571-54.857 54.857 24.571 54.857 54.857 54.857 54.857-24.571 54.857-54.857zM804.571 256c0 40.571-22.286 76-54.857 94.857-1.714 206.286-148 252-245.143 282.857-90.857 28.571-120.571 42.286-120.571 97.714v14.857c32.571 18.857 54.857 54.286 54.857 94.857 0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714c0-40.571 22.286-76 54.857-94.857v-468.571c-32.571-18.857-54.857-54.286-54.857-94.857 0-60.571 49.143-109.714 109.714-109.714s109.714 49.143 109.714 109.714c0 40.571-22.286 76-54.857 94.857v284c29.143-14.286 60-24 88-32.571 106.286-33.714 166.857-58.857 168-178.286-32.571-18.857-54.857-54.286-54.857-94.857 0-60.571 49.143-109.714 109.714-109.714s109.714 49.143 109.714 109.714z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "code-fork"
+ ],
+ "defaultCode": 61734,
+ "grid": 14
+ },
+ {
+ "id": 16,
+ "paths": [
+ "M847.771 816v-48c0-26.512-10.999-50.528-28.714-67.888s-42.263-28.112-69.343-28.112c-27.080 0-51.611 10.768-69.343 28.112s-28.714 41.376-28.714 67.888v48h-16.343c-13.532 0-25.822 5.392-34.663 14.064s-14.365 20.688-14.365 33.936v112c0 13.248 5.508 25.28 14.365 33.936s21.131 14.064 34.663 14.064h228.8c13.532 0 25.822-5.392 34.663-14.064s14.365-20.688 14.365-33.936v-112c0-13.248-5.508-25.28-14.365-33.936s-21.131-14.064-34.663-14.064h-16.343zM684.571 818.286v-47.020c0-17.319 7.28-32.961 19.087-44.325s28.060-18.369 46.056-18.369c17.996 0 34.249 7.006 46.056 18.369s19.087 27.005 19.087 44.325v47.020h-130.286z",
+ "M275.428 841.143c0-30.286-24.571-54.857-54.857-54.857s-54.857 24.571-54.857 54.857c0 30.286 24.571 54.857 54.857 54.857s54.857-24.571 54.857-54.857zM275.428 182.857c0-30.286-24.571-54.857-54.857-54.857s-54.857 24.571-54.857 54.857c0 30.286 24.571 54.857 54.857 54.857s54.857-24.571 54.857-54.857zM641.142 256c0-30.286-24.571-54.857-54.857-54.857s-54.857 24.571-54.857 54.857c0 30.286 24.571 54.857 54.857 54.857s54.857-24.571 54.857-54.857zM695.999 256c0 40.571-22.286 76-54.857 94.857-1.714 206.286-148 252-245.143 282.857-90.857 28.571-120.571 42.286-120.571 97.714v14.857c32.571 18.857 54.857 54.286 54.857 94.857 0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714c0-40.571 22.286-76 54.857-94.857v-468.571c-32.571-18.857-54.857-54.286-54.857-94.857 0-60.571 49.143-109.714 109.714-109.714s109.714 49.143 109.714 109.714c0 40.571-22.286 76-54.857 94.857v284c29.143-14.286 60-24 88-32.571 106.286-33.714 166.857-58.857 168-178.286-32.571-18.857-54.857-54.286-54.857-94.857 0-60.571 49.143-109.714 109.714-109.714s109.714 49.143 109.714 109.714z"
+ ],
+ "attrs": [
+ {},
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": [
+ {},
+ {}
+ ]
+ },
+ "tags": [
+ "branch-lock"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 17,
+ "paths": [
+ "M730.378 182.158c60.304 0 109.189 48.886 109.189 109.189v0 586.892c0 60.304-48.886 109.189-109.189 109.189v0h-582.343c-60.304 0-109.189-48.886-109.189-109.189v0-586.892c0-60.304 48.886-109.189 109.189-109.189v0zM730.378 254.951h-582.343c-20.101 0-36.396 16.295-36.396 36.396v0 586.892c0 20.101 16.295 36.396 36.396 36.396v0h582.343c20.101 0 36.396-16.295 36.396-36.396v0-586.892c0-20.101-16.295-36.396-36.396-36.396v0zM875.965 36.573c59.701 0 108.21 47.654 109.175 106.803l0.014 1.796v619.92c0 47.284-30.383 87.51-72.792 102.42l-0.001-722.34c0-19.793-15.972-35.875-35.794-36.195l-0.602-0.005h-582.343c-1.83 0-3.628 0.135-5.385 0.394l-97.73 0.001c14.73-41.961 54.617-72.185 101.687-72.785l1.428-0.010h582.343zM585.93 764.501c20.101 0 36.396 16.295 36.396 36.396 0 19.901-15.972 36.071-35.794 36.391l-0.602 0.005h-293.447c-20.101 0-36.396-16.295-36.396-36.396 0-19.901 15.972-36.071 35.794-36.391l0.602-0.005h293.447zM439.207 327.744c19.901 0 36.071 15.972 36.391 35.794l0.005 0.602v109.189h110.327c20.101 0 36.396 16.295 36.396 36.396 0 19.901-15.972 36.071-35.794 36.391l-0.602 0.005h-110.327v111.464c0 20.101-16.295 36.396-36.396 36.396-19.901 0-36.071-15.972-36.391-35.794l-0.005-0.602v-111.464h-110.327c-20.101 0-36.396-16.295-36.396-36.396 0-19.901 15.972-36.071 35.794-36.391l0.602-0.005h110.327v-109.189c0-20.101 16.295-36.396 36.396-36.396z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": [
+ {}
+ ]
+ },
+ "tags": [
+ "diff"
+ ],
+ "grid": 28
+ },
+ {
+ "id": 18,
+ "paths": [
+ "M643.735 482.485c49.64-41.464 81.713-105.709 81.713-177.885 0-124.752-95.456-226.259-212.828-226.259s-212.828 101.508-212.828 226.259c0 72.176 32.067 136.419 81.713 177.885-130.839 55.583-223.589 191.435-223.589 350.057v75.399c0 20.855 15.868 37.717 35.459 37.717h638.48c19.597 0 35.461-16.864 35.461-37.717v-75.397c0-158.683-92.75-294.478-223.585-350.057l0.003-0.002zM359.017 297.329c0-89.489 68.606-162.237 152.985-162.237 84.374 0 152.982 72.75 152.982 162.237 0 89.468-68.61 162.237-152.982 162.237-84.379 0-152.985-72.741-152.985-162.237zM236.877 880.271l0.002-40.165c0-177.168 123.975-321.32 276.396-321.32 152.365 0 276.317 144.154 276.317 321.32v40.165h-552.715zM101.013 336.18c0-103.39 75.564-187.516 168.454-187.516 2.805 0 5.397 0.767 8.123 0.911-2.627 4.229-5.135 8.549-7.526 12.947-13.684 19.967-24.426 42.548-31.502 66.95-40.575 14.589-84.946 56.698-84.946 106.676 0 44.106 23.3 84.155 59.343 102.363 13.343 5.633 22.754 19.026 22.754 34.678 0 16.208-10.094 30.008-24.193 35.259l-6.579 1.766c-89.827 25.252-152.387 114.163-152.387 217.82v29.092h48.276c-4.453 24.23-6.791 40.7-6.791 66.391h-60.36c-18.637 0-33.679-16.763-33.679-37.498v-57.99c-0.054-114.403 57.136-215.529 144.839-266.088-27.575-33.828-43.822-78.314-43.822-125.767l-0.002 0.004zM922.987 336.18c0-103.39-75.564-187.516-168.454-187.516-2.805 0-5.397 0.767-8.123 0.911 2.627 4.229 5.135 8.549 7.526 12.947 13.684 19.967 24.426 42.548 31.502 66.95 40.575 14.589 84.946 56.698 84.946 106.676 0 44.106-23.3 84.155-59.343 102.363-13.343 5.633-22.754 19.026-22.754 34.678 0 16.208 10.094 30.008 24.193 35.259l6.579 1.766c89.827 25.252 152.387 114.163 152.387 217.82v29.092h-48.276c4.453 24.23 6.791 40.7 6.791 66.391h60.36c18.637 0 33.679-16.763 33.679-37.498v-57.99c0.054-114.403-57.136-215.529-144.839-266.088 27.575-33.828 43.822-78.314 43.822-125.767l0.002 0.004z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": [
+ {}
+ ]
+ },
+ "tags": [
+ "groups"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 19,
+ "paths": [
+ "M146.286 768c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM804.571 438.857c0-38.857-34.857-73.143-73.143-73.143h-201.143c0-66.857 54.857-115.429 54.857-182.857 0-66.857-13.143-109.714-91.429-109.714-36.571 37.143-17.714 124.571-73.143 182.857-16 16.571-29.714 34.286-44 52-25.714 33.143-93.714 130.857-138.857 130.857h-18.286v365.714h18.286c32 0 84.571 20.571 115.429 31.429 62.857 21.714 128 41.714 195.429 41.714h69.143c64.571 0 109.714-25.714 109.714-95.429 0-10.857-1.143-21.714-2.857-32 24-13.143 37.143-45.714 37.143-72 0-13.714-3.429-27.429-10.286-39.429 19.429-18.286 30.286-41.143 30.286-68 0-18.286-8-45.143-20-58.857 26.857-0.571 42.857-52 42.857-73.143zM877.714 438.286c0 33.143-9.714 65.714-28 93.143 3.429 12.571 5.143 26.286 5.143 39.429 0 28.571-7.429 57.143-21.714 82.286 1.143 8 1.714 16.571 1.714 24.571 0 36.571-12 73.143-34.286 101.714 1.143 108-72.571 171.429-178.286 171.429h-73.714c-81.143 0-156.571-24-232-50.286-16.571-5.714-62.857-22.857-78.857-22.857h-164.571c-40.571 0-73.143-32.571-73.143-73.143v-365.714c0-40.571 32.571-73.143 73.143-73.143h156.571c22.286-14.857 61.143-66.286 78.286-88.571 19.429-25.143 39.429-49.714 61.143-73.143 34.286-36.571 16-126.857 73.143-182.857 13.714-13.143 32-21.143 51.429-21.143 59.429 0 116.571 21.143 144.571 76.571 17.714 34.857 20 68 20 106.286 0 40-10.286 74.286-27.429 109.714h100.571c78.857 0 146.286 66.857 146.286 145.714z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "thumbs-up"
+ ],
+ "defaultCode": 61575,
+ "grid": 14
+ },
+ {
+ "id": 20,
+ "paths": [
+ "M146.286 256c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM804.571 585.143c0-21.143-16-72.571-42.857-73.143 12-13.714 20-40.571 20-58.857 0-26.857-10.857-49.714-30.286-68 6.857-12 10.286-25.714 10.286-39.429 0-26.286-13.143-58.857-37.143-72 1.714-10.286 2.857-21.143 2.857-32 0-66.857-42.286-95.429-105.714-95.429h-73.143c-67.429 0-132.571 20-195.429 41.714-30.857 10.857-83.429 31.429-115.429 31.429h-18.286v365.714h18.286c45.143 0 113.143 97.714 138.857 130.857 14.286 17.714 28 35.429 44 52 55.429 58.286 36.571 145.714 73.143 182.857 78.286 0 91.429-42.857 91.429-109.714 0-67.429-54.857-116-54.857-182.857h201.143c38.286 0 73.143-34.286 73.143-73.143zM877.714 585.714c0 78.857-67.429 145.714-146.286 145.714h-100.571c17.143 35.429 27.429 69.714 27.429 109.714 0 37.714-2.286 72-20 106.286-28 55.429-85.143 76.571-144.571 76.571-19.429 0-37.714-8-51.429-21.143-57.143-56-39.429-146.286-73.143-183.429-21.714-22.857-41.714-47.429-61.143-72.571-17.143-22.286-56-73.714-78.286-88.571h-156.571c-40.571 0-73.143-32.571-73.143-73.143v-365.714c0-40.571 32.571-73.143 73.143-73.143h164.571c16 0 62.286-17.143 78.857-22.857 82.286-28.571 153.714-50.286 241.714-50.286h64c104 0 178.857 61.714 178.286 168.571v2.857c22.286 28.571 34.286 65.143 34.286 101.714 0 8-0.571 16.571-1.714 24.571 14.286 25.143 21.714 53.714 21.714 82.286 0 13.143-1.714 26.857-5.143 39.429 18.286 27.429 28 60 28 93.143z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "thumbs-down"
+ ],
+ "defaultCode": 61576,
+ "grid": 14
+ },
+ {
+ "id": 21,
+ "paths": [
+ "M146.286 768c0-20-16.571-36.571-36.571-36.571-20.571 0-36.571 16.571-36.571 36.571 0 20.571 16 36.571 36.571 36.571 20 0 36.571-16 36.571-36.571zM237.714 475.429v365.714c0 20-16.571 36.571-36.571 36.571h-164.571c-20 0-36.571-16.571-36.571-36.571v-365.714c0-20 16.571-36.571 36.571-36.571h164.571c20 0 36.571 16.571 36.571 36.571zM914.286 475.429c0 30.286-12 62.857-31.429 85.143 6.286 18.286 8.571 35.429 8.571 43.429 1.143 28.571-7.429 55.429-24.571 78.286 6.286 21.143 6.286 44 0 66.857-5.714 21.143-16.571 40-30.857 53.714 3.429 42.857-6.286 77.714-28 103.429-24.571 29.143-62.286 44-112.571 44.571h-73.714c-81.714 0-158.857-26.857-220.571-48-36-12.571-70.286-24.571-90.286-25.143-19.429-0.571-36.571-16.571-36.571-36.571v-366.286c0-18.857 16-34.857 34.857-36.571 21.143-1.714 76-69.714 101.143-102.857 20.571-26.286 40-50.857 57.714-68.571 22.286-22.286 28.571-56.571 35.429-89.714 6.286-33.714 13.143-69.143 37.714-93.143 6.857-6.857 16-10.857 25.714-10.857 128 0 128 102.286 128 146.286 0 46.857-16.571 80-32 109.714-6.286 12.571-12 18.286-16.571 36.571h158.286c59.429 0 109.714 50.286 109.714 109.714z"
+ ],
+ "width": 914,
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": [
+ {}
+ ]
+ },
+ "tags": [
+ "thumbs-up-solid"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 22,
+ "paths": [
+ "M146.286 329.143c0 20-16.571 36.571-36.571 36.571-20.571 0-36.571-16.571-36.571-36.571 0-20.571 16-36.571 36.571-36.571 20 0 36.571 16 36.571 36.571zM237.714 621.714v-365.714c0-20-16.571-36.571-36.571-36.571h-164.571c-20 0-36.571 16.571-36.571 36.571v365.714c0 20 16.571 36.571 36.571 36.571h164.571c20 0 36.571-16.571 36.571-36.571zM882.857 536.571c19.429 21.714 31.429 54.857 31.429 85.143-0.571 59.429-50.286 109.714-109.714 109.714h-158.286c4.571 18.286 10.286 24 16.571 36.571 14.857 29.714 32 62.857 32 109.714 0 44 0 146.286-128 146.286-9.714 0-18.857-4-25.714-10.857-24.571-24-31.429-59.429-37.714-93.143-6.857-33.143-13.143-67.429-35.429-89.714-17.714-17.714-37.143-42.286-57.714-68.571-25.143-33.143-80-101.143-101.143-102.857-18.857-1.714-34.857-17.714-34.857-36.571v-366.286c0-20 17.143-36 36.571-36.571 20-0.571 54.286-12.571 90.286-25.143 61.714-21.143 138.857-48 220.571-48h73.714c50.286 0.571 88 15.429 112.571 44.571 21.714 25.714 31.429 60.571 28 103.429 14.286 13.714 25.143 32.571 30.857 53.714 6.286 22.857 6.286 45.714 0 66.857 17.143 22.857 25.714 49.714 24.571 78.286 0 8-2.286 25.143-8.571 43.429z"
+ ],
+ "width": 914,
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": [
+ {}
+ ]
+ },
+ "tags": [
+ "thumbs-down-solid"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 23,
+ "paths": [
+ "M106.089 309.044h811.821c33.826 0 50.739 16.913 50.739 50.739v0c0 33.826-16.913 50.739-50.739 50.739h-811.821c-33.826 0-50.739-16.913-50.739-50.739v0c0-33.826 16.913-50.739 50.739-50.739z",
+ "M405.701 4.612h4.82c25.36 0.014 45.907 20.585 45.893 45.945 0 1.516-0.077 3.032-0.228 4.54l-91.837 918.626c-2.606 25.927-24.427 45.665-50.485 45.665h-4.82c-25.36-0.014-45.907-20.585-45.893-45.945 0-1.516 0.077-3.032 0.228-4.54l91.837-918.626c2.606-25.927 24.427-45.665 50.485-45.665v0zM710.133 4.612h4.82c25.36 0.014 45.907 20.585 45.893 45.945 0 1.516-0.077 3.032-0.228 4.54l-91.837 918.626c-2.606 25.927-24.427 45.665-50.485 45.665h-4.82c-25.36-0.014-45.907-20.585-45.893-45.945 0-1.516 0.077-3.032 0.228-4.54l91.837-918.626c2.606-25.927 24.427-45.665 50.485-45.665v0z",
+ "M106.089 613.477h811.821c33.826 0 50.739 16.913 50.739 50.739v0c0 33.826-16.913 50.739-50.739 50.739h-811.821c-33.826 0-50.739-16.913-50.739-50.739v0c0-33.826 16.913-50.739 50.739-50.739z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "version",
+ "hash"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 24,
+ "paths": [
+ "M631.965 260.42c-15.167-4.027-43.173-6.047-84.026-6.047h-174.087v243.842l175.948 0.001c58.18 0 99.5-10.854 123.951-32.575 24.447-21.712 36.676-52.272 36.676-91.673 0-28.539-7.196-52.971-21.587-73.29-14.395-20.319-33.354-33.735-56.87-40.253l-0.002-0.004zM904.36 6.339h-784.722c-61.654 0-112.099 50.566-112.099 112.366v786.59c0 61.801 50.446 112.366 112.099 112.366h784.722c61.654 0 112.1-50.566 112.1-112.366v-786.59c-0.001-61.799-50.448-112.366-112.1-112.366zM748.025 518.456c-36.835 40.179-103.375 60.263-199.627 60.263h-174.556v277.345h-90.063v-682.198h256.722c45.185 0 79.687 2.177 103.524 6.516 33.424 5.585 61.436 16.213 84.026 31.877 22.592 15.667 40.774 37.622 54.551 65.845 13.769 28.234 20.656 59.258 20.656 93.072 0 58.014-18.417 107.108-55.246 147.284l0.013-0.004z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "p-square"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 25,
+ "paths": [
+ "M510.399 0.572c-282.767 0-512 229.233-512 512s229.233 511.886 512 511.886 512-229.233 512-512-229.348-511.886-512-511.886zM710.463 531.675l-355.289 205.212c-14.756 8.465-33.172-2.173-33.172-19.103v-410.424c0-17.044 18.416-27.682 33.172-19.103l355.289 205.097c14.756 8.579 14.756 29.855 0 38.32z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "video-play"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 26,
+ "paths": [
+ "M874.015 151.493c-96.701-96.231-225.226-149.231-361.97-149.231s-265.316 53-362.025 149.23-150.020 224.308-150.020 360.504c0 136.197 53.285 264.25 150.019 360.513s225.234 149.23 361.993 149.23c136.757 0 265.305-52.942 361.969-149.228s150.019-224.354 150.019-360.55c0-136.196-53.205-264.205-149.985-360.468l0.001-0.001zM768.061 548.573h-219.44v219.451c0 20.2-16.376 36.577-36.576 36.577s-36.577-16.377-36.577-36.576v-219.453h-219.452c-20.2 0-36.576-16.376-36.576-36.576s16.376-36.577 36.576-36.577h219.451v-219.441c0-20.2 16.376-36.576 36.576-36.576 20.202 0 36.577 16.376 36.577 36.576v219.451h219.44c20.2 0 36.576 16.377 36.576 36.576s-16.376 36.578-36.576 36.578l0.001-0.011z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "plus-solid-circle"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 27,
+ "paths": [
+ "M874.017 151.493c-96.701-96.231-225.225-149.232-361.97-149.232s-265.317 53.001-362.025 149.227c-96.711 96.228-150.021 224.308-150.021 360.505s53.285 264.249 150.018 360.513c96.733 96.265 225.235 149.227 361.995 149.227 136.756 0 265.307-52.942 361.968-149.227s150.018-224.357 150.018-360.551c0-136.198-53.205-264.206-149.984-360.469l0.002 0.002zM256.001 548.597c-20.198 0-36.571-16.373-36.571-36.571s16.373-36.571 36.571-36.571h512c20.198 0 36.571 16.373 36.571 36.571s-16.373 36.571-36.571 36.571h-512z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": [
+ {}
+ ]
+ },
+ "tags": [
+ "minuse-solid-circle"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 28,
+ "paths": [
+ "M517.12 998.4c-133.12 0-247.040-53.76-328.96-139.52l71.68-80.64c66.56 70.4 161.28 116.48 258.56 116.48 122.88 0 197.12-61.44 197.12-153.6 0-96-67.84-126.72-156.16-166.4l-135.68-58.88c-87.040-37.12-190.72-103.68-190.72-240.64 0-144.64 125.44-249.6 295.68-249.6 111.36 0 209.92 47.36 276.48 116.48l-62.72 75.52c-57.6-53.76-126.72-88.32-213.76-88.32-106.24 0-175.36 53.76-175.36 138.24 0 90.88 81.92 125.44 154.88 156.16l134.4 57.6c108.8 47.36 193.28 111.36 193.28 250.88 0 148.48-122.88 266.24-318.72 266.24z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "S"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 29,
+ "paths": [
+ "M572.16 998.4c-232.96 0-408.32-180.48-408.32-485.12 0-303.36 177.92-487.68 416-487.68 113.92 0 203.52 56.32 257.28 116.48l-64 76.8c-48.64-52.48-111.36-89.6-192-89.6-177.92 0-295.68 145.92-295.68 380.16 0 236.8 112.64 385.28 291.84 385.28 89.6 0 157.44-39.68 217.6-104.96l65.28 74.24c-74.24 85.76-166.4 134.4-288 134.4z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "C"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 30,
+ "paths": [
+ "M453.146 976.506v-829.022h-280.982v-99.989h679.672v99.989h-280.982v829.022z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "T"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 31,
+ "paths": [
+ "M517.732 29.379c-179.571 0-325.56 145.989-325.56 325.56 0 174.441 297.109 494.404 309.702 507.93 4.198 4.198 9.795 6.996 15.858 6.996s11.66-2.332 15.858-6.996c12.593-13.526 309.702-333.489 309.702-507.93 0-179.571-145.989-325.56-325.56-325.56zM517.732 492.999c-69.030 0-125-55.97-125-125s55.97-125 125-125c69.030 0 125 55.97 125 125 0 68.564-55.97 125-125 125z",
+ "M512.090 994.622c-173.18 0-359.566-41.978-359.566-134.050 0-44.885 41.069-79.958 122.117-104.187v0c17.596-5.145 36.031 4.948 41.177 22.544 0.046 0.158 0.091 0.316 0.135 0.474v0c5.277 17.883-4.787 36.69-22.594 42.22-53.729 16.113-71.356 33.255-74.021 38.949 7.814 18.899 106.125 65.965 292.693 65.965s284.819-47.066 292.632-66.026c-2.726-5.452-22.049-24.714-84.198-41.796v0c-17.88-5.173-28.349-23.687-23.563-41.675v0c4.474-17.847 22.57-28.688 40.417-24.214 0.137 0.034 0.273 0.069 0.41 0.105 110.487 30.287 133.747 75.172 133.747 107.519 0.182 92.193-186.204 134.171-359.385 134.171h0.001z",
+ "M528.671 283.789c-45.243 0-82.090 36.847-82.090 82.090s36.847 82.090 82.090 82.090c45.243 0 82.090-36.847 82.090-82.090 0.466-45.243-36.847-82.090-82.090-82.090v0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "guide"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 32,
+ "paths": [
+ "M729.599 448l-294.4 294.4-108.8-115.2c-12.8-12.8-32-12.8-44.8 0s-12.8 32 0 44.8l134.4 134.4c12.8 12.8 32 12.8 44.8 0l313.6-313.6c12.8-12.8 12.8-32 0-44.8s-32-12.8-44.8 0v0z",
+ "M832 127.999h-102.4l-12.8-76.8c-6.4-32-32-51.2-64-51.2h-281.6c-32 0-57.6 19.2-64 51.2l-12.8 76.8h-102.4c-70.4 0-128 57.6-128 128v640.001c0 70.4 57.6 128 128 128h640.001c70.4 0 128-57.6 128-128v-640.001c0-70.4-57.6-128-128-128zM371.199 63.999h281.6l38.4 192h-358.4l38.4-192zM896 896c0 38.4-25.6 64-64 64h-640.001c-38.4 0-64-25.6-64-64v-640.001c0-38.4 25.6-64 64-64h89.6l-12.8 64h-44.8c-19.2 0-32 12.8-32 32s12.8 32 32 32h576.001c19.2 0 32-12.8 32-32s-12.8-32-32-32h-44.8l-12.8-64h89.6c38.4 0 64 25.6 64 64v640.001z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "todo"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 33,
+ "paths": [
+ "M839.758 184.242c18.102 18.102 18.102 47.451 0 65.55l-589.961 589.961c-18.102 18.102-47.451 18.102-65.55 0s-18.102-47.451 0-65.55l589.961-589.961c18.102-18.102 47.451-18.102 65.55 0z",
+ "M184.242 184.242c18.102-18.102 47.451-18.102 65.55 0l589.961 589.961c18.102 18.102 18.102 47.451 0 65.55s-47.451 18.102-65.55 0l-589.961-589.961c-18.102-18.102-18.102-47.451 0-65.55z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "close"
+ ],
+ "defaultCode": 59702,
+ "grid": 18
+ },
+ {
+ "id": 34,
+ "paths": [
+ "M365.825 689.115l482.269-482.269 64.019 64.019-546.287 546.287-253.938-253.938 64.019-64.019z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "check"
+ ],
+ "defaultCode": 58826,
+ "grid": 18
+ },
+ {
+ "id": 35,
+ "paths": [
+ "M860.445 462.221h-298.666v-298.666c0-29.866-19.911-49.779-49.779-49.779s-49.779 19.911-49.779 49.779v298.666h-298.666c-29.866 0-49.779 19.911-49.779 49.779s19.911 49.779 49.779 49.779h298.666v298.666c0 29.866 19.911 49.779 49.779 49.779s49.779-19.911 49.779-49.779v-298.666h298.666c29.866 0 49.779-19.911 49.779-49.779s-19.911-49.779-49.779-49.779z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "plus"
+ ],
+ "defaultCode": 59685,
+ "grid": 14
+ },
+ {
+ "id": 36,
+ "paths": [
+ "M860.443 462.222h-696.885c-29.869 0-49.778 19.913-49.778 49.778s19.913 49.778 49.778 49.778h696.885c29.869 0 49.778-19.913 49.778-49.778s-19.913-49.778-49.778-49.778z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "minus"
+ ],
+ "defaultCode": 59686,
+ "grid": 18
+ },
+ {
+ "id": 37,
+ "paths": [
+ "M850.488 113.778v0c32.991 0 59.732 26.744 59.732 59.732v676.977c0 32.991-26.744 59.732-59.732 59.732h-676.977c-32.991 0-59.732-26.744-59.732-59.732 0 0 0 0 0 0v-676.977c0-32.991 26.744-59.732 59.732-59.732h676.977zM850.488 173.512h-676.977v676.977h676.977v-676.977zM512 283.024v0c15.383 0 28.25 11.686 29.729 26.999l0.139 2.866v169.244h169.244c15.383 0.001 28.25 11.686 29.729 26.999l0.139 2.866v-0.002c0 15.383-11.684 28.25-26.999 29.729l-2.868 0.139h-169.244v169.244c-0.007 16.496-13.387 29.86-29.883 29.854-15.374-0.007-28.23-11.683-29.714-26.985l-0.139-2.866v-169.244h-169.244c-15.383-0.001-28.25-11.686-29.729-26.999l-0.139-2.866v0.002c0-15.383 11.684-28.25 26.999-29.729l2.868-0.139h169.244v-169.244c0-16.496 13.372-29.868 29.868-29.868v0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "expand-alt"
+ ],
+ "defaultCode": 59121,
+ "grid": 18
+ },
+ {
+ "id": 38,
+ "paths": [
+ "M850.488 113.778v0c32.991 0 59.732 26.744 59.732 59.732v676.977c0 32.991-26.744 59.732-59.732 59.732h-676.977c-32.991 0-59.732-26.744-59.732-59.732 0 0 0 0 0 0v-676.977c0-32.991 26.744-59.732 59.732-59.732h676.977zM850.488 173.512h-676.977v676.977h676.977v-676.977zM541.867 482.132h169.244c15.383 0.001 28.25 11.686 29.729 26.999l0.139 2.866c0 15.381-11.684 28.248-26.999 29.729l-2.868 0.139h-398.222c-15.383-0.001-28.25-11.686-29.729-26.999l-0.139-2.866c0-15.381 11.684-28.248 26.999-29.729l2.868-0.139h228.976z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "collapse-alt"
+ ],
+ "defaultCode": 59122,
+ "grid": 18
+ },
+ {
+ "id": 39,
+ "paths": [
+ "M875.972 2.441v0c80.406 0 145.588 65.182 145.588 145.588 0 0 0 0 0 0v727.942c0 80.406-65.182 145.588-145.588 145.588 0 0-0 0-0 0h-727.942c-80.406 0-145.588-65.182-145.588-145.588 0 0 0 0 0 0v-727.942c0-80.406 65.182-145.588 145.588-145.588 0 0 0 0 0 0h727.942zM948.766 75.236h-873.53v873.53h873.53v-873.53z",
+ "M439.207 148.030h-291.177v727.942h291.177z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "side-left"
+ ],
+ "defaultCode": 59827,
+ "grid": 14
+ },
+ {
+ "id": 40,
+ "paths": [
+ "M148.028 2.441v0c-80.406 0-145.588 65.182-145.588 145.588 0 0 0 0 0 0v727.942c0 80.406 65.182 145.588 145.588 145.588 0 0 0 0 0 0h727.942c80.406 0 145.588-65.182 145.588-145.588 0 0 0 0 0 0v-727.942c0-80.406-65.182-145.588-145.588-145.588 0 0-0 0-0 0h-727.942zM75.234 75.236h873.53v873.53h-873.53v-873.53z",
+ "M584.793 148.030h291.177v727.942h-291.177z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "side-right"
+ ],
+ "defaultCode": 59826,
+ "grid": 14
+ },
+ {
+ "id": 41,
+ "paths": [
+ "M56.888 56.888h325.080v130.031h-195.048v195.048h-130.031v-325.080zM642.031 56.888h325.080v325.080h-130.031v-195.048h-195.048v-130.031zM837.080 642.031h130.031v325.080h-325.080v-130.031h195.048v-195.048zM381.969 837.080v130.031h-325.080v-325.080h130.031v195.048h195.048z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "fullscreen"
+ ],
+ "defaultCode": 59755,
+ "grid": 18
+ },
+ {
+ "id": 42,
+ "paths": [
+ "M637.387 637.389h313.469v125.387h-188.082v188.082h-125.387v-313.469zM73.143 637.389h313.469v313.469h-125.387v-188.082h-188.082v-125.387zM261.224 73.144h125.387v313.469h-313.469v-125.387h188.082v-188.082zM950.857 261.226v125.387h-313.469v-313.469h125.387v188.082h188.082z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "fullscreen-exit"
+ ],
+ "defaultCode": 59762,
+ "grid": 14
+ },
+ {
+ "id": 43,
+ "paths": [
+ "M470.699 63.449l0.544 0.792c-0.184-0.262-0.365-0.526-0.544-0.792zM77.153 373.33l0.508 0.728c-0.167-0.244-0.336-0.487-0.508-0.728zM200.729 941.542l0.941-0.325c-0.315 0.105-0.629 0.213-0.941 0.325zM824.385 941.833c-0.338-0.12-0.676-0.237-1.014-0.35l1.014 0.35zM757.134 986.763l-0.003-0.953c-0.003 0.318-0.002 0.636 0.003 0.953zM644.954 317.007l-132.36-192.597-148.368 215.689-251.154 84.722 155.067 222.304-0.080 26.96-0.725 244.475 244.818-84.478 244.785 84.475-0.794-271.434 155.064-222.292-250.146-84.389zM841.552 673.832l0.915 312.681c0.18 12.182-5.080 22.937-13.389 29.807-11.038 7.887-22.398 9.799-33.372 5.883l-283.557-97.851-283.585 97.855c-10.969 3.918-22.318 2.005-31.082-4.146-10.595-8.595-15.848-19.364-15.681-31.547l0.923-312.681-175.56-251.683c-6.94-9.732-8.716-21.66-5.859-32.304 4.526-13.219 12.658-21.795 23.75-25.386l284.967-96.134 173.667-252.467c6.679-9.949 16.966-15.422 27.534-15.858 13.34 0.428 23.602 5.89 30.286 15.831l173.77 252.844 283.926 95.786c11.092 3.585 19.228 12.167 22.879 22.577 3.737 13.442 1.965 25.367-4.973 35.116l-175.56 251.68z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "star-empty"
+ ],
+ "defaultCode": 59722,
+ "grid": 18
+ },
+ {
+ "id": 44,
+ "paths": [
+ "M841.552 673.832l0.915 312.681c0.18 12.182-5.080 22.937-13.389 29.807-11.038 7.887-22.398 9.799-33.372 5.883l-283.557-97.851-283.585 97.855c-10.969 3.918-22.318 2.005-31.082-4.146-10.595-8.595-15.848-19.364-15.681-31.547l0.923-312.681-175.56-251.683c-6.94-9.732-8.716-21.66-5.859-32.304 4.526-13.219 12.658-21.795 23.75-25.386l284.967-96.134 173.667-252.467c6.679-9.949 16.966-15.422 27.534-15.858 13.34 0.428 23.602 5.89 30.286 15.831l173.77 252.844 283.926 95.786c11.092 3.585 19.228 12.167 22.879 22.577 3.737 13.442 1.965 25.367-4.973 35.116l-175.56 251.68z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "star"
+ ],
+ "defaultCode": 59723,
+ "grid": 18
+ },
+ {
+ "id": 45,
+ "paths": [
+ "M512 967.112c-251.351 0-455.112-203.76-455.112-455.112s203.76-455.112 455.112-455.112c251.351 0 455.112 203.76 455.112 455.112s-203.76 455.112-455.112 455.112zM512 815.407c31.414 0 56.886-25.47 56.886-56.886s-25.47-56.886-56.886-56.886c-31.414 0-56.886 25.47-56.886 56.886s25.47 56.886 56.886 56.886zM511.999 246.521c-25.135 0-45.51 20.374-45.51 45.51v288.237c0 25.135 20.374 45.51 45.51 45.51s45.51-20.374 45.51-45.51v-288.237c0-25.135-20.374-45.51-45.51-45.51z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "exclamation-sign"
+ ],
+ "defaultCode": 59696,
+ "grid": 18
+ },
+ {
+ "id": 46,
+ "paths": [
+ "M512 56.888c-251.351 0-455.112 203.76-455.112 455.112s203.76 455.112 455.112 455.112c251.351 0 455.112-203.76 455.112-455.112s-203.76-455.112-455.112-455.112zM512 208.594c31.415 0 56.887 25.47 56.887 56.887s-25.47 56.887-56.887 56.887c-31.415 0-56.887-25.47-56.887-56.887s25.47-56.887 56.887-56.887zM511.999 777.479c-25.135 0-45.511-20.375-45.511-45.511v-288.236c0-25.135 20.375-45.511 45.511-45.511s45.511 20.375 45.511 45.511v288.236c0 25.135-20.375 45.511-45.511 45.511z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "info-sign"
+ ],
+ "defaultCode": 59696,
+ "grid": 18
+ },
+ {
+ "id": 47,
+ "paths": [
+ "M972.299 266.991c-4.113-5.924-19.765-24.383-53.055-12.147-4.122 1.564-8.366 3.077-12.366 4.692-87.053 32.643-144.434 54.107-339.568-118.922-52.409-46.597-110.788-82.184-173.358-105.862-50.032-18.932-102.981-30.313-157.034-33.66-92.481-5.827-156.888 13.518-159.567 14.398-2.332 0.739-4.645 1.776-6.713 2.914-14.657 2.28-25.862 15.102-25.617 30.479l14.491 945.178c0.215 16.805 14.002 30.15 30.807 29.935s30.15-14.002 29.935-30.807l-6.725-438.002c1.58-1.346 3.282-2.641 4.914-4.11 67.052-55.11 143.047-117.374 350.575-6.806 37.81 20.228 79.016 30.082 122.535 29.391 2.734 0.008 5.399-0.159 8.185-0.272 39.946-1.776 81.899-12.354 124.448-31.466 66.599-29.942 136.273-82.065 191.131-143.072 20.958-23.236 37.739-45.795 48.887-65.27 10.456-18.183 22.624-45.151 8.094-66.591l-0.001-0.001z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "flag"
+ ],
+ "defaultCode": 59703,
+ "grid": 18
+ },
+ {
+ "id": 48,
+ "paths": [
+ "M415.557 627.295l-83.113-83.113c-17.773-17.773-46.589-17.773-64.362 0s-17.773 46.589 0 64.362l112.737 112.737c0.777 0.91 1.596 1.798 2.457 2.658v0c0.861 0.861 1.748 1.68 2.658 2.457l0.145 0.145 0.011-0.011c17.88 15.135 44.684 14.272 61.547-2.591v0l321.813-321.813c17.773-17.773 17.773-46.589 0-64.362s-46.589-17.773-64.362 0l-289.53 289.53zM512 967.112c-251.352 0-455.112-203.76-455.112-455.112s203.76-455.112 455.112-455.112c251.352 0 455.112 203.76 455.112 455.112s-203.76 455.112-455.112 455.112z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "check-circle"
+ ],
+ "defaultCode": 59695,
+ "grid": 18
+ },
+ {
+ "id": 49,
+ "paths": [
+ "M473.222 588.046l-108.612-108.612c-19.995-19.995-52.413-19.995-72.407 0v0 0c-19.995 19.995-19.995 52.413 0 72.407v0l144.816 144.816c9.998 9.998 23.102 14.996 36.205 14.996s26.206-4.998 36.205-14.996l289.63-289.63c19.995-19.995 19.995-52.413 0-72.407v0c-19.995-19.995-52.413-19.995-72.407 0l-253.428 253.428zM204.801-0.001h614.401c113.108 0 204.8 91.692 204.8 204.8v614.401c0 113.108-91.692 204.8-204.8 204.8h-614.401c-113.108 0-204.8-91.692-204.8-204.8v-614.401c0-113.108 91.692-204.8 204.8-204.8v0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "check-sign"
+ ],
+ "defaultCode": 59704,
+ "grid": 18
+ },
+ {
+ "id": 50,
+ "paths": [
+ "M967.112 461.432h-404.543v-404.543c223.511 0 404.543 181.033 404.543 404.543zM865.976 562.568c0 140.579-71.807 264.471-180.527 337.288l-194.687-337.288h375.214zM461.432 967.112c-140.579 0-264.471-71.807-337.288-180.527l328.185-189.629 189.124 328.185c-53.603 26.801-115.295 41.971-180.022 41.971zM56.888 562.568c0-223.511 181.033-404.543 404.543-404.543v375.214l-362.571 209.352c-26.801-53.603-41.971-115.295-41.971-180.022z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "chart-pie"
+ ],
+ "defaultCode": 59739,
+ "grid": 18
+ },
+ {
+ "id": 51,
+ "paths": [
+ "M891.705 947.006h-760.864c-51.024 0-92.014-20.128-112.484-55.237-20.476-35.107-17.985-80.967 6.86-125.78l383.898-692.388c24.989-45.14 62.149-71.013 101.905-71.013 39.761 0 76.884 25.841 101.943 70.941l384.3 692.531c24.839 44.813 27.409 90.639 6.894 125.742-20.438 35.107-61.461 55.203-112.452 55.203zM511.058 75.271c-12.64 0-27.12 12.61-38.858 33.727l-383.896 692.459c-12.028 21.732-14.844 41.252-7.66 53.567 7.191 12.284 25.496 19.339 50.197 19.339h760.864c24.74 0 43.012-7.017 50.197-19.339 7.146-12.282 4.369-31.796-7.692-53.528l-384.295-692.499c-11.704-21.116-26.255-33.726-38.857-33.726zM511.274 619.131c-19.931 0-36.109-16.247-36.109-36.343v-327.077c0-20.063 16.178-36.344 36.109-36.344 19.935 0 36.113 16.282 36.113 36.344v327.077c0 20.096-16.178 36.343-36.113 36.343zM511.015 796.776c31.075 0 56.267-25.399 56.267-56.729s-25.192-56.727-56.267-56.727c-31.075 0-56.267 25.398-56.267 56.728s25.192 56.728 56.267 56.728v0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "alert"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 52,
+ "paths": [
+ "M300.686 84.211c12.534 13.805 11.502 35.154-2.298 47.685l-121.189 110.039h436.075c187.398 0 337.58 160.388 337.58 354.461s-150.184 354.461-337.58 354.461h-371.339c-18.642 0-33.759-15.114-33.759-33.759s15.114-33.759 33.759-33.759h371.339c146.814 0 270.066-126.778 270.066-286.944s-123.25-286.944-270.066-286.944h-436.075l121.189 110.042c13.805 12.533 14.832 33.882 2.298 47.682-12.534 13.805-33.882 14.834-47.685 2.298l-157.188-142.725c-30.222-26.91-30.222-75.201 0.001-102.113l157.187-142.727c13.805-12.534 35.154-11.502 47.685 2.298z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "undo"
+ ],
+ "defaultCode": 59711,
+ "grid": 14
+ },
+ {
+ "id": 53,
+ "paths": [
+ "M723.314 84.211c-12.534 13.805-11.502 35.154 2.298 47.685l121.189 110.039h-436.075c-187.398 0-337.58 160.388-337.58 354.461s150.184 354.461 337.58 354.461h371.339c18.642 0 33.759-15.114 33.759-33.759s-15.114-33.759-33.759-33.759h-371.339c-146.814 0-270.066-126.778-270.066-286.944s123.25-286.944 270.066-286.944h436.075l-121.189 110.042c-13.805 12.533-14.832 33.882-2.298 47.682 12.534 13.805 33.882 14.834 47.685 2.298l157.188-142.725c30.222-26.91 30.222-75.201-0.001-102.113l-157.187-142.727c-13.805-12.534-35.154-11.502-47.685 2.298z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "redo"
+ ],
+ "defaultCode": 59711,
+ "grid": 14
+ },
+ {
+ "id": 54,
+ "paths": [
+ "M609.52 316.956h-73.139v243.808l208.697 123.852 35.108-59.005-170.663-101.421v-207.237zM585.141 73.145c-242.342 0-438.855 196.507-438.855 438.855h-146.285l193.096 196.507 196.999-196.507h-146.285c0-188.708 152.627-341.332 341.332-341.332s341.332 152.627 341.332 341.332c0 188.708-152.627 341.332-341.332 341.332-94.107 0-179.44-38.519-240.877-100.447l-69.239 69.239c79.48 79.969 188.22 128.728 310.12 128.728 242.342 0 438.855-196.507 438.855-438.855s-196.507-438.855-438.855-438.855z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "history"
+ ],
+ "defaultCode": 59743,
+ "grid": 18
+ },
+ {
+ "id": 55,
+ "paths": [
+ "M897.776 292.149l-80.888 80.888-165.925-165.925 80.888-80.888c16.593-16.593 45.631-16.593 62.223 0l103.705 103.705c16.593 16.593 16.593 45.631 0 62.223zM113.778 744.295l489.481-489.481 165.925 165.925-489.481 489.481h-165.925v-165.925z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "pencil"
+ ],
+ "defaultCode": 57940,
+ "grid": 18
+ },
+ {
+ "id": 56,
+ "paths": [
+ "M441.979 56.888c-212.68 0-385.091 172.414-385.091 385.095s172.411 385.095 385.091 385.095c93.736 0 179.65-33.493 246.428-89.16l218.939 218.939c13.672 13.672 35.838 13.672 49.509 0s13.672-35.838 0-49.509l-218.939-218.939c55.664-66.778 89.153-152.694 89.153-246.424 0-212.68-172.409-385.095-385.091-385.095zM126.906 441.984c0-174.010 141.064-315.078 315.074-315.078s315.074 141.065 315.074 315.078c0 174.009-141.064 315.078-315.074 315.078s-315.074-141.067-315.074-315.078z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "search"
+ ],
+ "defaultCode": 59688,
+ "grid": 18
+ },
+ {
+ "id": 57,
+ "paths": [
+ "M512.189 176.039c108.694 0 216.87 40.831 299.583 123.543 165.967 165.967 165.429 433.198-0.531 599.696-97.029 98.624-230.121 137.86-356.846 120.897l28.105-103.923c90.674 8.487 185.049-22.273 254.511-91.733 124.076-124.076 124.076-325.561 0-449.636-62.568-62.568-143.695-92.792-224.82-92.792v242.847l-262.997-262.467 262.997-262.467v176.036zM212.075 899.806c-139.978-140.516-161.192-352.61-65.223-514.861l78.471 77.948c-57.796 118.243-36.055 264.053 61.508 361.622 27.57 27.57 59.391 49.311 92.792 64.684l-26.508 103.4c-53.020-21.213-99.683-51.435-141.039-92.792z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "restart"
+ ],
+ "defaultCode": 59742,
+ "grid": 18
+ },
+ {
+ "id": 58,
+ "paths": [
+ "M896.374 599.139c-82.993 4.108-149.018 72.698-149.018 156.71 0 23.869 5.329 46.493 14.865 66.746-37.349 30.97-80.533 55.145-127.661 70.631-28.754-35.921-72.969-58.925-122.56-58.925s-93.806 23.004-122.56 58.925c-47.077-15.469-90.224-39.612-127.546-70.534 9.562-20.278 14.908-42.935 14.908-66.843 0-84.068-66.113-152.692-149.181-156.716-5.169-25.406-7.883-51.705-7.883-78.64s2.716-53.237 7.886-78.646c82.993-4.108 149.018-72.698 149.018-156.71 0-23.869-5.329-46.493-14.865-66.746 37.349-30.97 80.533-55.145 127.661-70.631 28.754 35.921 72.969 58.925 122.56 58.925s93.806-23.004 122.56-58.925c47.128 15.486 90.312 39.661 127.661 70.631-9.533 20.253-14.865 42.879-14.865 66.746 0 84.012 66.025 152.602 149.018 156.71 5.17 25.409 7.886 51.712 7.886 78.646s-2.716 53.237-7.886 78.646zM512 688.516c92.847 0 168.113-75.266 168.113-168.113s-75.266-168.113-168.113-168.113c-92.847 0-168.113 75.266-168.113 168.113s75.266 168.113 168.113 168.113z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "cog"
+ ],
+ "defaultCode": 59707,
+ "grid": 18
+ },
+ {
+ "id": 59,
+ "paths": [
+ "M691.516 502.126l190.287-328.964 77.64 44.879-234.719 406.155-292.162-168.296-214.072 370.252h742.299v89.758h-897.58v-807.822h89.758v652.54l246.835-428.146 291.714 169.642z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "chart-line"
+ ],
+ "defaultCode": 59740,
+ "grid": 18
+ },
+ {
+ "id": 60,
+ "paths": [
+ "M960.791 915.914h-897.58v-807.822h89.758v718.065h89.758v-403.914h179.516v403.914h89.758v-583.43h179.516v583.43h89.758v-224.397h179.516v314.155z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "chart-bar"
+ ],
+ "defaultCode": 59741,
+ "grid": 18
+ },
+ {
+ "id": 61,
+ "paths": [
+ "M473.45 628.834h301.759c16.114 0 29.172-13.061 29.172-29.172s-13.061-29.172-29.172-29.172v0h-543.89c-4.265 0-8.195 2.321-10.249 6.061-3.113 5.662-1.050 12.774 4.613 15.887v0l264.382 145.418c2.913 1.602 6.373 1.89 9.509 0.787 6.095-2.138 9.306-8.813 7.165-14.908v0l-33.287-94.898z",
+ "M550.55 395.166h-301.759c-16.114 0-29.172 13.061-29.172 29.172v0 0c0 16.114 13.061 29.172 29.172 29.172v0h543.89c4.265 0 8.195-2.321 10.249-6.061 3.113-5.662 1.050-12.774-4.613-15.887l-264.382-145.418c-2.913-1.602-6.373-1.89-9.509-0.787-6.095 2.138-9.306 8.813-7.165 14.908v0l33.287 94.898z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "exchange"
+ ],
+ "defaultCode": 59687,
+ "grid": 18
+ },
+ {
+ "id": 62,
+ "paths": [
+ "M181.734 477.693c-39.401 79.447-56.602 133.939-57.401 204.115-1.892 166.082 165.156 306.765 390.691 298.78 217.314-7.694 384.594-179.734 384.661-351.255 0.044-112.949-41.602-227.76-111.617-321.908-6.808 33.102-21.504 64.526-46.52 87.481l-54.048 49.595-16.982-71.361c-30.889-129.8-114.427-252.919-193.722-306.709-15.011 138.585-84.741 306.571-201.813 418.57l-46.149 44.15-23.644-59.33c-3.099-7.778-3.628-12.197-4.519-25.254-0.041-0.605-0.141-2.182-0.267-4.17-8.080 16.231-18.382 36.713-18.669 37.293zM712.422 363.17c6.045-5.548 58.723-83.177 19.681-179.293 122.818 106.638 210.724 272.732 210.657 445.474s-163.607 384.99-426.213 394.287c-262.606 9.296-437.341-162.127-435.289-342.32s117.319-275.051 123.535-389.243c22.508 31.044 31.313 72.123 35.266 105.245 0 7.933 1.714 26.787 5.144 56.558 26.56-25.99 39.752-40.054 39.577-42.191 120.433-142.858 154.342-328.667 151.832-411.688 204.616 86.152 273.83 354.848 275.811 363.172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "severity"
+ ],
+ "defaultCode": 59763,
+ "grid": 18
+ },
+ {
+ "id": 63,
+ "paths": [
+ "M948.764 285.791c13.529 19.482 17.318 44.918 9.741 69.81l-148.822 490.3c-13.529 45.999-61.152 81.716-107.693 81.716h-499.501c-55.199 0-114.186-43.835-134.21-100.116-8.658-24.352-8.658-48.165-1.083-68.728 1.083-10.823 3.248-21.647 3.789-34.635 0.541-8.658-4.329-15.694-3.248-22.188 2.165-12.988 13.529-22.188 22.188-36.799 16.235-27.058 34.635-70.893 40.587-99.033 2.706-10.281-2.706-22.188 0-31.388 2.706-10.281 12.988-17.859 18.401-27.6 14.612-24.894 33.554-73.058 36.259-98.493 1.083-11.364-4.329-23.811-1.083-32.471 3.789-12.447 15.694-17.859 23.811-28.682 12.988-17.859 34.635-69.269 37.881-97.952 1.083-9.199-4.329-18.401-2.706-28.14 2.165-10.281 15.153-21.106 23.811-33.554 22.728-33.554 27.058-107.693 95.787-88.211l-0.541 1.623c9.199-2.165 18.401-4.871 27.6-4.871h411.831c25.434 0 48.165 11.364 61.694 30.306 14.070 19.482 17.318 44.918 9.741 70.352l-148.281 490.3c-25.434 83.34-39.505 101.74-108.235 101.74h-470.277c-7.035 0-15.694 1.623-20.565 8.117-4.329 6.495-4.871 11.364-0.541 23.269 10.823 31.388 48.165 37.881 77.93 37.881h499.501c20.024 0 43.293-11.364 49.247-30.846l162.352-534.135c3.248-10.281 3.248-21.106 2.706-30.846 12.447 4.871 23.811 12.447 31.929 23.269zM372.959 286.874c-3.248 9.741 2.165 17.318 11.905 17.318h329.032c9.199 0 19.482-7.576 22.728-17.318l11.364-34.635c3.248-9.741-2.165-17.318-11.905-17.318h-329.032c-9.199 0-19.482 7.576-22.728 17.318zM328.043 425.413c-3.248 9.741 2.165 17.318 11.905 17.318h329.032c9.199 0 19.482-7.576 22.728-17.318l11.364-34.635c3.248-9.741-2.165-17.318-11.905-17.318h-329.032c-9.199 0-19.482 7.576-22.728 17.318z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "book"
+ ],
+ "defaultCode": 61485,
+ "grid": 18
+ },
+ {
+ "id": 64,
+ "paths": [
+ "M410.864 132.743v202.271h202.271v-202.271h-202.271zM549.928 714.273h37.927c27.928 0 50.568 22.64 50.568 50.568v151.704c0 27.928-22.64 50.568-50.568 50.568h-151.704c-27.928 0-50.568-22.64-50.568-50.568v-151.704c0-27.928 22.64-50.568 50.568-50.568h37.927v-143.659h-255.138v143.659h40.225c27.928 0 50.568 22.64 50.568 50.568v151.704c0 27.928-22.64 50.568-50.568 50.568h-151.704c-27.928 0-50.568-22.64-50.568-50.568v-151.704c0-27.928 22.64-50.568 50.568-50.568h35.626v-168.942c0-27.928 22.64-50.568 50.568-50.568h280.423v-83.896h-63.21c-41.892 0-75.852-33.96-75.852-75.852v-202.271c0-41.892 33.96-75.852 75.852-75.852h202.271c41.892 0 75.852 33.96 75.852 75.852v202.271c0 41.892-33.96 75.852-75.852 75.852h-63.21v83.896h280.423c27.928 0 50.568 22.64 50.568 50.568v168.942h35.626c27.928 0 50.568 22.64 50.568 50.568v151.704c0 27.928-22.64 50.568-50.568 50.568h-151.704c-27.928 0-50.568-22.64-50.568-50.568v-151.704c0-27.928 22.64-50.568 50.568-50.568h40.225v-143.659h-255.138v143.659zM132.742 790.124v101.137h101.137v-101.137h-101.137zM790.123 790.124v101.137h101.137v-101.137h-101.137zM461.432 790.124v101.137h101.137v-101.137h-101.137z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "treemap"
+ ],
+ "defaultCode": 59761,
+ "grid": 18
+ },
+ {
+ "id": 65,
+ "paths": [
+ "M516.504 1018.778c260.111-9.209 422.095-219.441 422.163-390.541s-87.004-335.617-208.655-441.241c8.006 13.122 41.12 121.968-19.494 177.589-42.481-178.507-171.072-332.266-273.19-359.721 2.741 90.613-38.322 304.852-189.59 449.567-4.121-10.34 1.702-102.714-40.026-160.265-6.157 113.107-120.328 207.065-122.361 385.545s171.042 348.276 431.153 339.067z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "severity-solid"
+ ],
+ "defaultCode": 59650,
+ "grid": 18
+ },
+ {
+ "id": 66,
+ "paths": [
+ "M876.028 730.827h-419.459l-111.855 67.116v-67.116h-195.748v-503.35h727.060v503.35zM65.080 255.439v447.421c0 61.777 50.078 111.855 111.855 111.855h89.483v111.855l190.154-111.855h391.494c61.777 0 111.855-50.078 111.855-111.855v-447.421c0-61.777-50.078-111.855-111.855-111.855h-671.131c-61.777 0-111.855 50.078-111.855 111.855zM288.79 451.186h447.421v-83.893h-447.421zM288.79 618.971h447.421v-83.893h-447.421z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "chat-line"
+ ],
+ "defaultCode": 59800,
+ "grid": 18
+ },
+ {
+ "id": 67,
+ "paths": [
+ "M1024 320l-512-256-512 256 512 256 512-256zM512 148.97l342.058 171.030-342.058 171.030-342.058-171.030 342.058-171.030zM921.444 460.722l102.556 51.278-512 256-512-256 102.556-51.278 409.444 204.722zM921.444 652.722l102.556 51.278-512 256-512-256 102.556-51.278 409.444 204.722z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "stack",
+ "layers"
+ ],
+ "defaultCode": 59715,
+ "grid": 18
+ },
+ {
+ "id": 68,
+ "paths": [
+ "M931.536 203.242l-417.264-146.354h-1.915l-419.897 146.354c-7.6 5.606-12.055 14.511-11.976 23.954v546.373c0.090 3.113 1.951 5.905 4.792 7.186l423.493 185.639 3.592 0.718 426.366-186.358c2.88-1.234 4.76-4.055 4.792-7.186v-546.613c-0.074-9.339-4.504-18.108-11.976-23.714zM877.64 285.16v448.884l-332.472 145.636v-448.884l332.472-145.636zM823.746 235.579l-311.39 136.056-311.39-136.056 311.39-106.831 311.39 106.831zM479.301 430.797v448.884l-332.472-145.636v-448.884l332.472 145.636z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "cube"
+ ],
+ "defaultCode": 59751,
+ "grid": 18
+ },
+ {
+ "id": 69,
+ "paths": [
+ "M284.445 170.665h455.111c62.838 0 113.778 50.94 113.778 113.778v455.111c0 62.838-50.94 113.778-113.778 113.778h-455.111c-62.838 0-113.778-50.94-113.778-113.778v-455.111c0-62.838 50.94-113.778 113.778-113.778v0zM398.222 455.113c-31.42 0-56.887 25.47-56.887 56.887s25.47 56.887 56.887 56.887h227.555c31.42 0 56.887-25.47 56.887-56.887s-25.47-56.887-56.887-56.887h-227.555z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "minus-sign"
+ ],
+ "defaultCode": 59705,
+ "grid": 18
+ },
+ {
+ "id": 70,
+ "paths": [
+ "M170.666 56.888h682.666c62.838 0 113.778 50.94 113.778 113.778v682.666c0 62.838-50.94 113.778-113.778 113.778h-682.666c-62.838 0-113.778-50.94-113.778-113.778v-682.666c0-62.838 50.94-113.778 113.778-113.778v0zM312.888 682.666c-15.709 0-28.444 12.735-28.444 28.444s12.735 28.444 28.444 28.444h398.222c15.709 0 28.444-12.735 28.444-28.444s-12.735-28.444-28.444-28.444h-398.222zM312.888 512c-15.709 0-28.444 12.735-28.444 28.444s12.735 28.444 28.444 28.444h398.222c15.709 0 28.444-12.735 28.444-28.444s-12.735-28.444-28.444-28.444h-398.222zM312.888 341.334c-15.709 0-28.444 12.735-28.444 28.444s12.735 28.444 28.444 28.444h398.222c15.709 0 28.444-12.735 28.444-28.444s-12.735-28.444-28.444-28.444h-398.222z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "bars-sign"
+ ],
+ "defaultCode": 59706,
+ "grid": 18
+ },
+ {
+ "id": 71,
+ "paths": [
+ "M301.518 918.476c12.612-5.237 20.521-16.994 20.521-30.675v-812.202c0-18.277-14.964-33.241-33.241-33.241s-33.241 14.964-33.241 33.241v731.398l-8.123-8.123-136.703-136.169c-6.306-6.306-14.536-9.726-23.514-9.726-8.871 0-17.208 3.527-23.514 9.726l-0.748 0.748c-12.185 13.147-11.971 33.561 0.748 46.28l201.367 201.581c9.833 9.619 23.728 12.398 36.447 7.161zM498.717 105.526c-12.612 5.237-20.521 16.994-20.521 30.675l0.107 812.202c0 18.277 14.964 33.241 33.241 33.241s33.241-14.964 33.241-33.241v-731.292l8.123 8.123 136.382 136.062c12.933 12.933 33.989 12.933 46.922 0 6.413-6.52 9.726-14.964 9.726-23.514s-3.206-16.994-9.726-23.514l-201.367-201.581c-9.619-9.619-23.514-12.398-36.126-7.161v0z"
+ ],
+ "width": 788,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "swap"
+ ],
+ "defaultCode": 59824,
+ "grid": 14
+ },
+ {
+ "id": 72,
+ "paths": [
+ "M558.545 820.463l-245.011 190.547c-24.363 18.923-59.452 14.511-78.373-9.852-7.606-9.796-11.737-21.841-11.743-34.244v-146.451h-111.709c-61.696 0-111.709-50.013-111.709-111.709v-595.799c0-61.696 50.013-111.709 111.709-111.709h893.673c61.696 0 111.709 50.013 111.709 111.709v595.799c0 61.696-50.013 111.709-111.709 111.709h-446.836zM781.964 466.68c30.848 0 55.855-25.007 55.855-55.855s-25.007-55.855-55.855-55.855c-30.848 0-55.855 25.007-55.855 55.855s25.007 55.855 55.855 55.855zM558.545 466.68c30.848 0 55.855-25.007 55.855-55.855s-25.007-55.855-55.855-55.855c-30.848 0-55.855 25.007-55.855 55.855s25.007 55.855 55.855 55.855zM335.125 466.68c30.848 0 55.855-25.007 55.855-55.855s-25.007-55.855-55.855-55.855c-30.848 0-55.855 25.007-55.855 55.855s25.007 55.855 55.855 55.855z"
+ ],
+ "width": 1117,
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": [
+ {}
+ ]
+ },
+ "tags": [
+ "chat-solid"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 73,
+ "paths": [
+ "M512 794.758l-224.594 174.669c-22.332 17.345-54.497 13.302-71.842-9.031-6.973-8.979-10.76-20.022-10.764-31.391v-134.247h-102.4c-56.554 0-102.4-45.846-102.4-102.4 0 0 0 0 0 0v-546.15c0-56.554 45.846-102.4 102.4-102.4h819.2c56.554 0 102.4 45.846 102.4 102.4v546.15c0 56.554-45.846 102.4-102.4 102.4h-409.601zM273.050 894.070l197.010-153.209c12.003-9.309 26.751-14.404 41.94-14.404h409.6c18.822-0.027 34.074-15.279 34.101-34.101v-546.15c0-18.841-15.26-34.123-34.101-34.149h-819.2c-18.86 0-34.149 15.289-34.149 34.149 0 0 0 0 0 0v546.15c0 18.815 15.286 34.101 34.149 34.101h102.4c37.727 0 68.25 30.573 68.25 68.3v99.314zM716.8 470.457v0c-28.277 0-51.2-22.923-51.2-51.2s22.923-51.2 51.2-51.2c0 0 0 0 0 0v0c28.277 0 51.2 22.923 51.2 51.2s-22.923 51.2-51.2 51.2v0zM512 470.457v0c-28.277 0-51.2-22.923-51.2-51.2s22.923-51.2 51.2-51.2c0 0 0 0 0 0v0c28.277 0 51.2 22.923 51.2 51.2s-22.923 51.2-51.2 51.2v0zM307.199 470.457v0c-28.277 0-51.2-22.923-51.2-51.2s22.923-51.2 51.2-51.2c0 0 0 0 0 0v0c28.277 0 51.2 22.923 51.2 51.2s-22.923 51.2-51.2 51.2v0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "chat"
+ ],
+ "defaultCode": 59712,
+ "grid": 18
+ },
+ {
+ "id": 74,
+ "paths": [
+ "M950.856 512c0-242.373-196.482-438.856-438.856-438.856s-438.856 196.482-438.856 438.856c0 242.373 196.482 438.856 438.856 438.856s438.856-196.482 438.856-438.856zM1023.999 512c0 282.769-229.23 512.001-512.001 512.001s-511.999-229.23-511.999-512.001c0-282.771 229.23-511.999 511.999-511.999s512.001 229.23 512.001 511.999zM548.57 497.007l135.682 135.315c14.34 14.34 14.34 37.592 0 51.93s-37.592 14.34-51.93 0l-146.286-146.286c-6.847-6.902-10.661-16.245-10.605-25.965v-329.143c0-20.198 16.373-36.57 36.57-36.57s36.57 16.373 36.57 36.57v314.148z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "clock"
+ ],
+ "defaultCode": 59772,
+ "grid": 14
+ },
+ {
+ "id": 75,
+ "paths": [
+ "M950.856 512c0-242.373-196.482-438.856-438.856-438.856s-438.856 196.482-438.856 438.856c0 242.373 196.482 438.856 438.856 438.856s438.856-196.482 438.856-438.856zM1023.999 512c0 282.769-229.23 512.001-512.001 512.001s-511.999-229.23-511.999-512.001c0-282.771 229.23-511.999 511.999-511.999s512.001 229.23 512.001 511.999zM558.52 775.904h-85.629v-108.996h-124.014v-44.46h124.014v-61.668l-0.737-0.717h-123.276v-44.46h97.439l-143.944-251.697h97.439l115.894 220.145 115.894-220.145h97.439l-143.944 251.697h98.177v44.46h-124.014l-0.737 0.717v61.668h124.752v44.46h-124.752v108.996z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "cost"
+ ],
+ "defaultCode": 59773,
+ "grid": 14
+ },
+ {
+ "id": 76,
+ "paths": [
+ "M584.076 785.090h-73.155v-423.937l-173.013 419.364h-91.81l-172.976-419.364v423.937h-73.155v-549.070h100.662l191.375 463.88 191.375-463.88h100.698zM1880.394 458.596h352.244v73.155h-352.244v-73.155zM934.053 309.615c110.94 0 201.179 90.238 201.179 201.179s-90.238 201.179-201.179 201.179-201.179-90.238-201.179-201.179 90.238-201.179 201.179-201.179zM934.053 236.459c-151.505 0-274.334 122.828-274.334 274.334s122.828 274.334 274.334 274.334 274.334-122.828 274.334-274.334c0-151.505-122.828-274.334-274.334-274.334v0zM1281.066 239.312h73.155v548.667h-73.155v-548.667zM1317.644 239.312h262.335v73.155h-262.335v-73.155zM1317.644 495.356h262.335v73.155h-262.335v-73.155zM1577.31 239.312v73.155c50.404 0 91.445 41.040 91.445 91.445s-41.040 91.445-91.445 91.445v73.155c90.896 0 164.6-73.704 164.6-164.6s-73.704-164.6-164.6-164.6zM1765.102 785.126l-239.036-272.321-54.977 48.282 196.679 224.039zM2269.033 785.126h-441.055v-545.814h441.055v73.155h-367.9v399.502h367.9z"
+ ],
+ "width": 2269,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "more"
+ ],
+ "defaultCode": 59204,
+ "grid": 18
+ },
+ {
+ "id": 77,
+ "paths": [
+ "M872.242 511.871l81.765 79.988c11.257 10.665 15.405 26.662 11.85 41.475-4.148 14.813-15.998 26.662-30.81 30.218l-111.391 28.441 31.403 110.206c4.148 14.813 0 30.81-11.257 41.475-10.665 11.257-26.662 15.405-41.475 11.257l-110.206-31.403-28.441 111.391c-3.556 14.813-15.405 26.662-30.218 30.81-3.556 0.592-7.702 1.185-11.257 1.185-11.257 0-22.514-4.74-30.218-13.034l-79.988-81.765-79.988 81.765c-10.665 11.257-26.662 15.405-41.475 11.85-15.405-4.148-26.662-15.998-30.218-30.81l-28.441-111.391-110.206 31.403c-14.813 4.148-30.81 0-41.475-11.257-11.257-10.665-15.405-26.662-11.257-41.475l31.403-110.206-111.391-28.441c-14.813-3.556-26.662-15.405-30.81-30.218-3.556-14.813 0.592-30.81 11.85-41.475l81.765-79.988-81.765-79.988c-11.257-10.665-15.405-26.662-11.85-41.475 4.148-14.813 15.998-26.662 30.81-30.218l111.391-28.441-31.403-110.206c-4.148-14.813 0-30.81 11.257-41.475 10.665-11.257 26.662-15.405 41.475-11.257l110.206 31.403 28.441-111.391c3.556-14.813 15.405-26.662 30.218-30.218 14.813-4.148 30.81 0 41.475 11.257l79.988 82.358 79.988-82.358c10.665-11.257 26.070-15.405 41.475-11.257 14.813 3.556 26.662 15.405 30.218 30.218l28.441 111.391 110.206-31.403c14.813-4.148 30.81 0 41.475 11.257 11.257 10.665 15.405 26.662 11.257 41.475l-31.403 110.206 111.391 28.441c14.813 3.556 26.662 15.405 30.81 30.218 3.556 14.813-0.592 30.81-11.85 41.475z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "certificate"
+ ],
+ "defaultCode": 61603,
+ "grid": 18
+ },
+ {
+ "id": 78,
+ "paths": [
+ "M697.982 735.179v-280.069c0-115.965-70.017-210.052-185.982-210.052s-185.982 94.087-185.982 210.052v280.069h371.965zM792.069 687.043l94.087 94.087v45.947h-748.306v-45.947l94.087-94.087v-231.929c0-144.411 76.581-262.563 210.052-295.384v-32.822c0-39.385 30.632-70.017 70.017-70.017s70.017 30.632 70.017 70.017v32.822c133.472 32.822 210.052 153.162 210.052 295.384v231.929zM512 967.112c-50.325 0-94.087-41.572-94.087-91.896h188.17c0 50.325-43.762 91.896-94.087 91.896z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "notifications_none"
+ ],
+ "defaultCode": 59381,
+ "grid": 18
+ },
+ {
+ "id": 79,
+ "paths": [
+ "M141.204 830.309h302.394v-572.957h-318.309v557.042c0 8.454 7.46 15.916 15.916 15.916zM825.569 814.394v-557.042h-318.309v572.957h302.394c8.454 0 15.916-7.46 15.916-15.916zM889.231 209.606v604.788c0 43.768-35.809 79.578-79.578 79.578h-668.45c-43.768 0-79.578-35.809-79.578-79.578v-604.788c0-43.768 35.809-79.578 79.578-79.578h668.45c43.768 0 79.578 35.809 79.578 79.578z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "columns"
+ ],
+ "defaultCode": 61659,
+ "grid": 18
+ },
+ {
+ "id": 80,
+ "paths": [
+ "M1011.866 225.79l-235.914-214.771c-16.435-14.793-42.923-14.68-59.203 0.256l-641.575 583.614c-6.438 5.157-10.806 12.121-12.414 19.79l-57.013 265.344c-2.214 11.355 1.717 22.986 10.56 31.244 7.312 6.772 17.317 10.57 27.748 10.536 2.222 0.024 4.442-0.148 6.63-0.512l294.106-46.022c9.014-0.806 17.446-4.418 23.872-10.228l643.036-585.404c7.897-7.143 12.328-16.865 12.301-27v0c0.075-10.068-4.297-19.741-12.133-26.846h-0.001zM322.432 806.797l-229.567 36.102 44.431-203.726 451.608-411.133 184.574 168.186-451.046 410.572zM828.751 345.857l-184.744-168.135 102.286-93.119 184.744 168.186-102.286 93.068zM951.82 1023.767h-908.045c-21.576 2.238-41.059-11.871-43.52-31.513s13.039-37.379 34.616-39.617c2.958-0.307 5.944-0.307 8.902 0h908.159c21.576-2.238 41.059 11.871 43.52 31.513s-13.039 37.379-34.616 39.617c-2.958 0.307-5.944 0.307-8.902 0h-0.113z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "pencil-alt"
+ ],
+ "defaultCode": 59780,
+ "grid": 14
+ },
+ {
+ "id": 81,
+ "paths": [
+ "M950.857 822.858v-438.857c-12 13.714-25.143 26.286-39.429 37.714-81.714 62.857-164 126.857-243.429 193.143-42.857 36-96 80-155.429 80h-1.143c-59.429 0-112.571-44-155.429-80-79.429-66.286-161.714-130.286-243.429-193.143-14.286-11.429-27.429-24-39.429-37.714v438.857c0 9.714 8.571 18.286 18.286 18.286h841.142c9.714 0 18.286-8.571 18.286-18.286zM950.857 222.286c0-14.286 3.429-39.429-18.286-39.429h-841.142c-9.714 0-18.286 8.571-18.286 18.286 0 65.143 32.571 121.714 84 162.286 76.571 60 153.143 120.571 229.143 181.143 30.286 24.571 85.143 77.143 125.143 77.143h1.143c40 0 94.857-52.571 125.143-77.143 76-60.571 152.571-121.143 229.143-181.143 37.143-29.143 84-92.571 84-141.143zM1024 201.143v621.713c0 50.286-41.143 91.429-91.429 91.429h-841.142c-50.286 0-91.429-41.143-91.429-91.429v-621.713c0-50.286 41.143-91.429 91.429-91.429h841.142c50.286 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "envelope-o"
+ ],
+ "defaultCode": 59690,
+ "grid": 18
+ },
+ {
+ "id": 82,
+ "paths": [
+ "M85.669 800.572h238.746c28.255 0 51.158 22.905 51.158 51.158s-22.905 51.158-51.158 51.158h-238.746c-28.255 0-51.158-22.905-51.158-51.158s22.905-51.158 51.158-51.158z",
+ "M760.976 868.785v0 0c28.255 0 51.158-22.905 51.158-51.158v-443.382c0-28.255-22.905-51.158-51.158-51.158v0 0c-28.255 0-51.158 22.905-51.158 51.158v443.382c0 28.255 22.905 51.158 51.158 51.158z",
+ "M795.195 890.574c19.979-19.979 19.979-52.373 0-72.352l-168.819-168.819c-19.979-19.979-52.373-19.979-72.352 0s-19.979 52.373 0 72.352l168.819 168.819c19.979 19.979 52.373 19.979 72.352 0z",
+ "M795.195 890.574l168.819-168.819c19.979-19.979 19.979-52.373 0-72.352s-52.373-19.979-72.352 0l-168.819 168.819c-19.979 19.979-19.979 52.373 0 72.352s52.373 19.979 72.352 0z",
+ "M85.669 573.196h238.746c28.255 0 51.158 22.905 51.158 51.158s-22.905 51.158-51.158 51.158h-238.746c-28.255 0-51.158-22.905-51.158-51.158s22.905-51.158 51.158-51.158z",
+ "M85.669 345.823h238.746c28.255 0 51.158 22.905 51.158 51.158v0 0c0 28.255-22.905 51.158-51.158 51.158h-238.746c-28.255 0-51.158-22.905-51.158-51.158v0 0c0-28.255 22.905-51.158 51.158-51.158z",
+ "M85.669 118.442h852.662c28.255 0 51.158 22.905 51.158 51.158s-22.905 51.158-51.158 51.158h-852.662c-28.255 0-51.158-22.905-51.158-51.158s22.905-51.158 51.158-51.158z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "unfold-all"
+ ],
+ "defaultCode": 59697,
+ "grid": 18
+ },
+ {
+ "id": 83,
+ "paths": [
+ "M84.989 792.121h239.127c28.3 0 51.24 22.941 51.24 51.24s-22.941 51.24-51.24 51.24h-239.127c-28.3 0-51.24-22.941-51.24-51.24s22.941-51.24 51.24-51.24z",
+ "M761.377 368.525v0 0c28.3 0 51.24 22.941 51.24 51.24v444.093c0 28.3-22.941 51.24-51.24 51.24v0 0c-28.3 0-51.24-22.941-51.24-51.24v-444.093c0-28.3 22.941-51.24 51.24-51.24z",
+ "M795.647 346.703c20.011 20.011 20.011 52.456 0 72.465l-169.087 169.087c-20.011 20.011-52.456 20.011-72.465 0s-20.011-52.456 0-72.465l169.087-169.087c20.011-20.011 52.456-20.011 72.465 0z",
+ "M795.647 346.703l169.087 169.087c20.011 20.011 20.011 52.456 0 72.465s-52.456 20.011-72.465 0l-169.087-169.087c-20.011-20.011-20.011-52.456 0-72.465s52.456-20.011 72.465 0z",
+ "M84.989 564.381h239.127c28.3 0 51.24 22.941 51.24 51.24s-22.941 51.24-51.24 51.24h-239.127c-28.3 0-51.24-22.941-51.24-51.24s22.941-51.24 51.24-51.24z",
+ "M84.989 336.643h239.127c28.3 0 51.24 22.941 51.24 51.24v0 0c0 28.3-22.941 51.24-51.24 51.24h-239.127c-28.3 0-51.24-22.941-51.24-51.24v0 0c0-28.3 22.941-51.24 51.24-51.24z",
+ "M84.989 108.902h854.023c28.3 0 51.24 22.941 51.24 51.24s-22.941 51.24-51.24 51.24h-854.023c-28.3 0-51.24-22.941-51.24-51.24s22.941-51.24 51.24-51.24z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "fold-all"
+ ],
+ "defaultCode": 59698,
+ "grid": 18
+ },
+ {
+ "id": 84,
+ "paths": [
+ "M113.776 113.776h796.444v113.778h-796.444v-113.778z",
+ "M113.776 455.111h796.444v113.778h-796.444v-113.778z",
+ "M113.776 796.446h796.444v113.778h-796.444v-113.778z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "bars"
+ ],
+ "defaultCode": 59720,
+ "grid": 18
+ },
+ {
+ "id": 85,
+ "paths": [
+ "M170.667 113.778h284.444v341.333h-341.333v-284.444c0-31.419 25.47-56.889 56.889-56.889z",
+ "M113.778 568.889h341.333v341.333h-284.444c-31.419 0-56.889-25.47-56.889-56.889v-284.444z",
+ "M568.889 113.778h284.444c31.419 0 56.889 25.47 56.889 56.889v284.444h-341.333v-341.333z",
+ "M568.889 568.889h341.333v284.444c0 31.419-25.47 56.889-56.889 56.889h-284.444v-341.333z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "cards-view"
+ ],
+ "defaultCode": 59721,
+ "grid": 18
+ },
+ {
+ "id": 86,
+ "paths": [
+ "M603.025 147.912c0 51.576-39.443 91.024-91.025 91.024-51.576 0-91.024-39.448-91.024-91.024s39.448-91.024 91.024-91.024c51.576-0.003 91.025 39.443 91.025 91.024zM603.025 512c0 51.576-39.443 91.024-91.024 91.024s-91.020-39.448-91.020-91.024c0-51.576 39.448-91.024 91.020-91.024s91.024 39.448 91.024 91.024zM603.025 876.088c0 51.576-39.443 91.024-91.024 91.024s-91.024-39.448-91.024-91.024 39.448-91.024 91.024-91.024c51.576 0 91.024 39.443 91.024 91.024z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "ellipsis-v"
+ ],
+ "defaultCode": 58836,
+ "grid": 18
+ },
+ {
+ "id": 87,
+ "paths": [
+ "M416 928c0-53.020 42.98-96 96-96s96 42.98 96 96c0 53.020-42.98 96-96 96s-96-42.98-96-96zM0 512c0-53.020 42.982-96 96-96s96 42.98 96 96c0 53.020-42.98 96-96 96s-96-42.98-96-96zM832 512c0-53.020 42.98-96 96-96s96 42.98 96 96c0 53.020-42.98 96-96 96s-96-42.98-96-96zM121.844 217.844c0-53.020 42.98-96 96-96s96 42.98 96 96c0 53.020-42.98 96-96 96s-96-42.98-96-96zM710.156 806.156c0-53.020 42.98-96 96-96s96 42.98 96 96c0 53.020-42.98 96-96 96s-96-42.98-96-96zM121.844 806.156c0-53.020 42.98-96 96-96s96 42.98 96 96c0 53.020-42.98 96-96 96s-96-42.98-96-96zM710.156 217.844c0-53.020 42.98-96 96-96s96 42.98 96 96c0 53.020-42.98 96-96 96s-96-42.98-96-96z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "spinner",
+ "loading",
+ "loading-wheel",
+ "busy",
+ "wait"
+ ],
+ "defaultCode": 59778,
+ "grid": 18
+ },
+ {
+ "id": 88,
+ "paths": [
+ "M715.755 135.836h-407.511c-37.51 0-67.918-30.408-67.918-67.918s30.408-67.918 67.918-67.918h407.511c37.51 0 67.918 30.408 67.918 67.918s-30.408 67.918-67.918 67.918v0zM697.364 639.478v0c3.607 3.392 3.781 9.066 0.388 12.673-0.125 0.133-0.255 0.263-0.388 0.388l-178.469 170.318c-3.87 3.657-9.922 3.657-13.793 0l-178.469-170.318c-3.607-3.392-3.781-9.066-0.388-12.673 0.125-0.133 0.255-0.263 0.388-0.388h116.088v-254.956h-116.088c-3.607-3.392-3.781-9.066-0.388-12.673 0.125-0.133 0.255-0.263 0.388-0.388l178.469-170.318c3.87-3.657 9.922-3.657 13.793 0l178.469 170.318c3.607 3.392 3.781 9.066 0.388 12.673-0.125 0.133-0.255 0.263-0.388 0.388h-116.088v254.956h116.088zM308.244 888.164h407.511c37.51 0 67.918 30.408 67.918 67.918s-30.408 67.918-67.918 67.918h-407.511c-37.51 0-67.918-30.408-67.918-67.918s30.408-67.918 67.918-67.918v0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "1021622551255255255194981091": []
+ },
+ "tags": [
+ "size-height"
+ ],
+ "grid": 14
+ }
+ ],
+ "colorThemes": [
+ [
+ [
+ 94,
+ 98,
+ 109,
+ 1
+ ],
+ [
+ 102,
+ 162,
+ 255,
+ 1
+ ],
+ [
+ 255,
+ 255,
+ 255,
+ 1
+ ]
+ ]
+ ],
+ "colorThemeIdx": 0
+ },
+ {
+ "selection": [
+ {
+ "order": 137,
+ "id": 0,
+ "name": "up-circle",
+ "prevSize": 18,
+ "code": 59691,
+ "tempChar": ""
+ },
+ {
+ "order": 138,
+ "id": 1,
+ "name": "right-circle",
+ "prevSize": 18,
+ "code": 59692,
+ "tempChar": ""
+ },
+ {
+ "order": 139,
+ "id": 2,
+ "name": "down-circle",
+ "prevSize": 18,
+ "code": 59693,
+ "tempChar": ""
+ },
+ {
+ "order": 140,
+ "id": 3,
+ "name": "left-circle",
+ "prevSize": 18,
+ "code": 59694,
+ "tempChar": ""
+ },
+ {
+ "name": "angle-double-right",
+ "id": 4,
+ "order": 141,
+ "prevSize": 18,
+ "code": 61697,
+ "tempChar": ""
+ },
+ {
+ "ligatures": "keyboard_arrow_down",
+ "id": 5,
+ "order": 142,
+ "prevSize": 18,
+ "code": 58131,
+ "name": "angle-down",
+ "tempChar": ""
+ },
+ {
+ "ligatures": "keyboard_arrow_left",
+ "id": 6,
+ "order": 143,
+ "prevSize": 18,
+ "code": 58132,
+ "name": "angle-left",
+ "tempChar": ""
+ },
+ {
+ "ligatures": "keyboard_arrow_right",
+ "id": 7,
+ "order": 144,
+ "prevSize": 18,
+ "code": 58133,
+ "name": "angle-right",
+ "tempChar": ""
+ },
+ {
+ "ligatures": "keyboard_arrow_up",
+ "id": 8,
+ "order": 145,
+ "prevSize": 18,
+ "code": 58134,
+ "name": "angle-top",
+ "tempChar": ""
+ },
+ {
+ "ligatures": "first_page",
+ "id": 9,
+ "order": 146,
+ "prevSize": 18,
+ "name": "first-page",
+ "code": 58844,
+ "tempChar": ""
+ },
+ {
+ "ligatures": "last_page",
+ "id": 10,
+ "order": 147,
+ "prevSize": 18,
+ "name": "last-page",
+ "code": 58845,
+ "tempChar": ""
+ },
+ {
+ "name": "caret-down",
+ "id": 11,
+ "order": 148,
+ "prevSize": 18,
+ "code": 61655,
+ "tempChar": ""
+ },
+ {
+ "name": "caret-up",
+ "id": 12,
+ "order": 149,
+ "prevSize": 18,
+ "code": 61656,
+ "tempChar": ""
+ },
+ {
+ "name": "caret-left",
+ "id": 13,
+ "order": 150,
+ "prevSize": 18,
+ "code": 61657,
+ "tempChar": ""
+ },
+ {
+ "name": "caret-right",
+ "id": 14,
+ "order": 151,
+ "prevSize": 18,
+ "code": 61658,
+ "tempChar": ""
+ },
+ {
+ "name": "sort",
+ "id": 15,
+ "order": 152,
+ "prevSize": 18,
+ "code": 61660,
+ "tempChar": ""
+ },
+ {
+ "name": "sort-down",
+ "id": 16,
+ "order": 153,
+ "prevSize": 18,
+ "code": 61661,
+ "tempChar": ""
+ },
+ {
+ "name": "sort-up",
+ "id": 17,
+ "order": 154,
+ "prevSize": 18,
+ "code": 61662,
+ "tempChar": ""
+ },
+ {
+ "id": 18,
+ "order": 155,
+ "prevSize": 18,
+ "code": 59683,
+ "name": "arrow-up",
+ "tempChar": ""
+ },
+ {
+ "id": 19,
+ "order": 156,
+ "prevSize": 18,
+ "code": 59684,
+ "name": "arrow-down",
+ "tempChar": ""
+ },
+ {
+ "id": 20,
+ "order": 157,
+ "prevSize": 18,
+ "name": "arrow-left",
+ "code": 59730,
+ "tempChar": ""
+ },
+ {
+ "id": 21,
+ "order": 158,
+ "prevSize": 18,
+ "name": "arrow-right",
+ "code": 59710,
+ "tempChar": ""
+ },
+ {
+ "order": 159,
+ "id": 22,
+ "name": "chevron-left",
+ "prevSize": 18,
+ "code": 59700,
+ "tempChar": ""
+ },
+ {
+ "order": 160,
+ "id": 23,
+ "name": "chevron-right",
+ "prevSize": 18,
+ "code": 59701,
+ "tempChar": ""
+ },
+ {
+ "order": 161,
+ "id": 24,
+ "name": "chevron-double-up",
+ "prevSize": 18,
+ "code": 59737,
+ "tempChar": ""
+ },
+ {
+ "order": 162,
+ "id": 25,
+ "name": "chevron-double-down",
+ "prevSize": 18,
+ "code": 59738,
+ "tempChar": ""
+ }
+ ],
+ "id": 6,
+ "metadata": {
+ "name": "箭头汇总"
+ },
+ "height": 1024,
+ "prevSize": 28,
+ "icons": [
+ {
+ "id": 0,
+ "paths": [
+ "M557.51 412.865l108.814 35.010c13.58 4.369 28.464 0.748 38.518-9.371 14.763-14.854 14.687-38.87-0.171-53.635v0l-138.961-138.075c-29.679-29.491-77.633-29.38-107.179 0.246v0l-137.389 137.787c-10.054 10.084-13.614 24.95-9.216 38.492 6.47 19.922 27.862 30.827 47.782 24.358v0l106.774-34.672v318.972c0 25.135 20.374 45.51 45.51 45.51v0c25.135 0 45.51-20.374 45.51-45.51v0-319.106zM512 56.888v0c251.351 0 455.112 203.76 455.112 455.112v0c0 251.351-203.76 455.112-455.112 455.112s-455.112-203.76-455.112-455.112v0 0c0-251.351 203.76-455.112 455.112-455.112v0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "up-circle"
+ ],
+ "defaultCode": 59691,
+ "grid": 18
+ },
+ {
+ "id": 1,
+ "paths": [
+ "M611.135 557.51l-35.010 108.814c-4.369 13.58-0.748 28.464 9.371 38.518 14.854 14.763 38.87 14.687 53.635-0.171v0l138.075-138.961c29.491-29.679 29.38-77.633-0.246-107.179v0l-137.787-137.389c-10.084-10.054-24.95-13.614-38.492-9.216-19.922 6.47-30.827 27.862-24.358 47.782v0l34.672 106.774h-318.972c-25.135 0-45.51 20.374-45.51 45.51v0c0 25.135 20.374 45.51 45.51 45.51v0h319.106zM967.112 512v0c0 251.351-203.76 455.112-455.112 455.112v0c-251.351 0-455.112-203.76-455.112-455.112s203.76-455.112 455.112-455.112v0 0c251.351 0 455.112 203.76 455.112 455.112v0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "right-circle"
+ ],
+ "defaultCode": 59692,
+ "grid": 18
+ },
+ {
+ "id": 2,
+ "paths": [
+ "M466.49 611.135l-108.814-35.010c-13.58-4.369-28.464-0.748-38.518 9.371-14.763 14.854-14.687 38.87 0.171 53.635v0l138.961 138.075c29.679 29.491 77.633 29.38 107.179-0.246v0l137.389-137.787c10.054-10.084 13.614-24.95 9.216-38.492-6.47-19.922-27.862-30.827-47.782-24.358v0l-106.774 34.672-0-318.972c0-25.135-20.374-45.51-45.51-45.51v0c-25.135 0-45.51 20.374-45.51 45.51v0 319.106zM512 967.112v0c-251.351 0-455.112-203.76-455.112-455.112v0c0-251.351 203.76-455.112 455.112-455.112s455.112 203.76 455.112 455.112v0 0c0 251.351-203.76 455.112-455.112 455.112v0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "down-circle"
+ ],
+ "defaultCode": 59693,
+ "grid": 18
+ },
+ {
+ "id": 3,
+ "paths": [
+ "M412.865 466.49l35.010-108.814c4.369-13.58 0.748-28.464-9.371-38.518-14.854-14.763-38.87-14.687-53.635 0.171v0l-138.075 138.961c-29.491 29.679-29.38 77.633 0.246 107.179v0l137.787 137.389c10.084 10.054 24.95 13.614 38.492 9.216 19.922-6.47 30.827-27.862 24.358-47.782v0l-34.672-106.774 318.972 0c25.135 0 45.51-20.374 45.51-45.51v0c0-25.135-20.374-45.51-45.51-45.51v0h-319.106zM56.888 512v0c0-251.351 203.76-455.112 455.112-455.112v0c251.351 0 455.112 203.76 455.112 455.112s-203.76 455.112-455.112 455.112v0 0c-251.351 0-455.112-203.76-455.112-455.112v0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "left-circle"
+ ],
+ "defaultCode": 59694,
+ "grid": 18
+ },
+ {
+ "id": 4,
+ "paths": [
+ "M568.435 511.998c0 4.56-2.281 9.69-5.7 13.112l-265.638 265.638c-3.421 3.421-8.55 5.7-13.112 5.7s-9.69-2.281-13.112-5.7l-28.502-28.502c-3.421-3.421-5.7-8.55-5.7-13.112s2.281-9.69 5.7-13.112l224.023-224.023-224.023-224.023c-3.421-3.421-5.7-8.55-5.7-13.112s2.281-9.69 5.7-13.112l28.502-28.502c3.421-3.421 8.55-5.7 13.112-5.7s9.69 2.281 13.112 5.7l265.638 265.638c3.421 3.421 5.7 8.55 5.7 13.112zM787.329 511.998c0 4.56-2.281 9.69-5.7 13.112l-265.638 265.638c-3.421 3.421-8.55 5.7-13.112 5.7s-9.69-2.281-13.112-5.7l-28.502-28.502c-3.421-3.421-5.7-8.55-5.7-13.112s2.281-9.69 5.7-13.112l224.023-224.023-224.023-224.023c-3.421-3.421-5.7-8.55-5.7-13.112s2.281-9.69 5.7-13.112l28.502-28.502c3.421-3.421 8.55-5.7 13.112-5.7s9.69 2.281 13.112 5.7l265.638 265.638c3.421 3.421 5.7 8.55 5.7 13.112z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "angle-double-right"
+ ],
+ "defaultCode": 61697,
+ "grid": 18
+ },
+ {
+ "id": 5,
+ "paths": [
+ "M296.429 338.223l215.571 215.571 215.571-215.571 65.991 65.991-281.565 281.565-281.565-281.565z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "angle-down"
+ ],
+ "defaultCode": 58131,
+ "grid": 18
+ },
+ {
+ "id": 6,
+ "paths": [
+ "M687.557 729.777l-66.666 66.666-284.448-284.448 284.448-284.448 66.666 66.666-217.777 217.777z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "angle-left"
+ ],
+ "defaultCode": 58132,
+ "grid": 18
+ },
+ {
+ "id": 7,
+ "paths": [
+ "M336.443 729.769l217.777-217.777-217.777-217.777 66.666-66.666 284.448 284.448-284.448 284.448z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "angle-right"
+ ],
+ "defaultCode": 58133,
+ "grid": 18
+ },
+ {
+ "id": 8,
+ "paths": [
+ "M296.425 685.778l-65.99-65.99 281.565-281.565 281.565 281.565-65.99 65.99-215.572-215.572z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "angle-top"
+ ],
+ "defaultCode": 58134,
+ "grid": 18
+ },
+ {
+ "id": 9,
+ "paths": [
+ "M235.552 244.941h89.714v534.113h-89.714v-534.113zM788.448 716.464l-62.59 62.59-267.059-267.059 267.059-267.059 62.59 62.59-204.464 204.464z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "first_page"
+ ],
+ "defaultCode": 58844,
+ "grid": 18
+ },
+ {
+ "id": 10,
+ "paths": [
+ "M698.73 244.941h89.715v534.115h-89.715v-534.115zM235.552 307.535l62.591-62.591 267.059 267.059-267.059 267.059-62.591-62.591 204.465-204.465z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "last_page"
+ ],
+ "defaultCode": 58845,
+ "grid": 18
+ },
+ {
+ "id": 11,
+ "paths": [
+ "M821.728 376.494c0 10.284-4.235 19.964-11.494 27.223l-271.013 271.013c-7.26 7.26-16.939 11.494-27.223 11.494s-19.964-4.235-27.223-11.494l-271.013-271.013c-7.26-7.26-11.494-16.939-11.494-27.223 0-21.172 17.543-38.715 38.715-38.715h542.025c21.172 0 38.715 17.543 38.715 38.715z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "caret-down"
+ ],
+ "defaultCode": 61655,
+ "grid": 18
+ },
+ {
+ "id": 12,
+ "paths": [
+ "M821.728 647.506c0 21.172-17.543 38.715-38.715 38.715h-542.026c-21.172 0-38.715-17.543-38.715-38.715 0-10.283 4.235-19.964 11.494-27.223l271.013-271.013c7.26-7.26 16.939-11.494 27.223-11.494s19.964 4.235 27.223 11.494l271.013 271.013c7.26 7.26 11.494 16.939 11.494 27.223z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "caret-up"
+ ],
+ "defaultCode": 61656,
+ "grid": 18
+ },
+ {
+ "id": 13,
+ "paths": [
+ "M704 213.333v597.333c0 23.334-19.333 42.666-42.666 42.666-11.334 0-22.002-4.666-30-12.666l-298.667-298.667c-7.998-7.998-12.666-18.666-12.666-30s4.666-22.002 12.666-30l298.667-298.667c7.998-7.998 18.666-12.666 30-12.666 23.334 0 42.666 19.333 42.666 42.666z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "caret-left"
+ ],
+ "defaultCode": 61657,
+ "grid": 18
+ },
+ {
+ "id": 14,
+ "paths": [
+ "M704 512c0 11.334-4.666 22.002-12.666 30l-298.667 298.667c-7.998 7.998-18.666 12.666-30 12.666-23.334 0-42.666-19.333-42.666-42.666v-597.333c0-23.334 19.333-42.666 42.666-42.666 11.334 0 22.002 4.666 30 12.666l298.667 298.667c7.998 7.998 12.666 18.666 12.666 30z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "caret-right"
+ ],
+ "defaultCode": 61658,
+ "grid": 18
+ },
+ {
+ "id": 15,
+ "paths": [
+ "M822.304 628.363c0 10.301-4.24 20.003-11.513 27.275l-271.519 271.519c-7.27 7.27-16.973 11.513-27.275 11.513s-20.003-4.24-27.275-11.513l-271.519-271.519c-7.27-7.27-11.513-16.973-11.513-27.275 0-21.214 17.573-38.785 38.785-38.785h543.036c21.214 0 38.785 17.573 38.785 38.785zM822.304 395.637c0 21.214-17.573 38.785-38.785 38.785h-543.036c-21.214 0-38.785-17.573-38.785-38.785 0-10.301 4.24-20.003 11.513-27.275l271.519-271.519c7.27-7.27 16.973-11.513 27.275-11.513s20.003 4.24 27.275 11.513l271.519 271.519c7.27 7.27 11.513 16.973 11.513 27.275z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "sort",
+ "unsorted"
+ ],
+ "defaultCode": 61660,
+ "grid": 18
+ },
+ {
+ "id": 16,
+ "paths": [
+ "M821.724 628.94c0 10.281-4.235 19.964-11.493 27.222l-271.013 271.013c-7.258 7.258-16.939 11.493-27.222 11.493s-19.964-4.235-27.222-11.493l-271.013-271.013c-7.258-7.258-11.493-16.939-11.493-27.222 0-21.171 17.545-38.713 38.713-38.713h542.021c21.171 0 38.713 17.545 38.713 38.713z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "sort-desc",
+ "sort-down"
+ ],
+ "defaultCode": 61661,
+ "grid": 18
+ },
+ {
+ "id": 17,
+ "paths": [
+ "M821.728 391.512c0 21.173-17.543 38.715-38.715 38.715h-542.026c-21.173 0-38.715-17.543-38.715-38.715 0-10.284 4.237-19.966 11.492-27.221l271.013-271.013c7.263-7.263 16.937-11.492 27.221-11.492s19.966 4.237 27.221 11.492l271.013 271.013c7.263 7.263 11.492 16.937 11.492 27.221z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "sort-asc",
+ "sort-up"
+ ],
+ "defaultCode": 61662,
+ "grid": 18
+ },
+ {
+ "id": 18,
+ "paths": [
+ "M840.533 481.6l-298.667-298.667c-4.267-4.267-8.533-8.533-12.8-8.533-8.533-4.267-21.333-4.267-34.133 0-4.267 4.267-8.533 4.267-12.8 8.533l-298.667 298.667c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l226.133-226.133v494.933c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-494.933l226.133 226.133c8.533 8.533 21.333 12.8 29.867 12.8s21.333-4.267 29.867-12.8c17.067-17.067 17.067-42.667 0-59.733z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "arrow-up"
+ ],
+ "defaultCode": 59683,
+ "grid": 18
+ },
+ {
+ "id": 19,
+ "paths": [
+ "M840.532 482.133c-17.067-17.067-42.667-17.067-59.733 0l-226.133 226.133v-494.933c0-25.6-17.067-42.667-42.667-42.667s-42.667 17.067-42.667 42.667v494.933l-226.133-226.133c-17.067-17.067-42.667-17.067-59.733 0s-17.067 42.667 0 59.733l298.667 298.667c4.267 4.267 8.533 8.533 12.8 8.533 4.267 4.267 12.8 4.267 17.067 4.267s12.8 0 17.067-4.267c4.267-4.267 8.533-4.267 12.8-8.533l298.667-298.667c17.067-17.067 17.067-42.667 0-59.733z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "arrow-down"
+ ],
+ "defaultCode": 59684,
+ "grid": 18
+ },
+ {
+ "id": 20,
+ "paths": [
+ "M810.667 469.333h-494.933l226.133-226.133c17.067-17.067 17.067-42.667 0-59.733s-42.667-17.067-59.733 0l-298.667 298.667c-4.267 4.267-8.533 8.533-8.533 12.8-4.267 8.533-4.267 21.333 0 34.133 4.267 4.267 4.267 8.533 8.533 12.8l298.667 298.667c8.533 8.533 21.333 12.8 29.867 12.8s21.333-4.267 29.867-12.8c17.067-17.067 17.067-42.667 0-59.733l-226.133-226.133h494.933c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "arrow-left"
+ ],
+ "defaultCode": 59730,
+ "grid": 18
+ },
+ {
+ "id": 21,
+ "paths": [
+ "M849.601 529.069c4.266-8.534 4.266-21.332 0-34.134-4.266-4.266-4.266-8.534-8.534-12.798l-298.667-298.667c-17.069-17.069-42.666-17.069-59.732 0s-17.069 42.666 0 59.732l226.133 226.133h-494.934c-25.602 0-42.666 17.069-42.666 42.666s17.069 42.666 42.666 42.666h494.934l-226.133 226.133c-17.069 17.069-17.069 42.666 0 59.732 8.534 8.534 21.332 12.798 29.867 12.798s21.332-4.266 29.867-12.798l298.667-298.667c4.266-4.266 8.534-8.534 8.534-12.798z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "arrow-right"
+ ],
+ "defaultCode": 59710,
+ "grid": 18
+ },
+ {
+ "id": 22,
+ "paths": [
+ "M731.017 128.719v0c30.24 30.24 30.24 79.269 0 109.508l-328.525 328.525c-30.24 30.24-79.269 30.24-109.508 0v0c-30.24-30.24-30.24-79.269 0-109.508l328.525-328.525c30.24-30.24 79.269-30.24 109.508 0z",
+ "M731.017 895.281v0c-30.24 30.24-79.269 30.24-109.508 0l-328.525-328.525c-30.24-30.24-30.24-79.269 0-109.508v0c30.24-30.24 79.269-30.24 109.508 0l328.525 328.525c30.24 30.24 30.24 79.269 0 109.508z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "chevron-left"
+ ],
+ "defaultCode": 59700,
+ "grid": 18
+ },
+ {
+ "id": 23,
+ "paths": [
+ "M297.158 136.025v0c-29.663 29.663-29.663 77.758 0 107.42l322.263 322.263c29.663 29.663 77.758 29.663 107.42 0v0c29.663-29.663 29.663-77.758 0-107.42l-322.263-322.263c-29.663-29.663-77.758-29.663-107.42 0z",
+ "M297.158 887.975v0c29.663 29.663 77.758 29.663 107.42 0l322.263-322.263c29.663-29.663 29.663-77.758 0-107.42v0c-29.663-29.663-77.758-29.663-107.42 0l-322.263 322.263c-29.663 29.663-29.663 77.758 0 107.42z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "chevron-right"
+ ],
+ "defaultCode": 59701,
+ "grid": 18
+ },
+ {
+ "id": 24,
+ "paths": [
+ "M200.448 967.112l-95.705-95.705 407.257-407.257 407.257 407.257-95.705 95.705-311.553-310.873-311.553 310.873zM200.448 559.852l-95.705-95.705 407.257-407.257 407.257 407.257-95.705 95.705-311.553-310.873-311.553 310.873z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "chevron-double-up"
+ ],
+ "defaultCode": 59737,
+ "grid": 18
+ },
+ {
+ "id": 25,
+ "paths": [
+ "M823.553 56.889l95.705 95.705-407.258 407.258-407.258-407.258 95.705-95.705 311.553 310.872 311.553-310.872zM823.553 464.148l95.705 95.705-407.258 407.258-407.258-407.258 95.705-95.705 311.553 310.872 311.553-310.872z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "chevron-double-down"
+ ],
+ "defaultCode": 59738,
+ "grid": 18
+ }
+ ],
+ "colorThemes": [],
+ "colorThemeIdx": 0
+ },
+ {
+ "selection": [
+ {
+ "order": 361,
+ "id": 0,
+ "name": "file-log",
+ "prevSize": 18,
+ "code": 59870,
+ "tempChar": ""
+ },
+ {
+ "order": 237,
+ "id": 1,
+ "name": "rich-text",
+ "prevSize": 18,
+ "code": 59667,
+ "tempChar": ""
+ },
+ {
+ "order": 239,
+ "id": 2,
+ "name": "markdown",
+ "prevSize": 18,
+ "code": 59670,
+ "tempChar": ""
+ },
+ {
+ "order": 234,
+ "id": 3,
+ "name": "excel",
+ "prevSize": 18,
+ "code": 59699,
+ "tempChar": ""
+ },
+ {
+ "order": 238,
+ "id": 4,
+ "name": "text-link",
+ "prevSize": 18,
+ "code": 59725,
+ "tempChar": ""
+ },
+ {
+ "order": 235,
+ "id": 5,
+ "name": "ppt",
+ "prevSize": 18,
+ "code": 59735,
+ "tempChar": ""
+ },
+ {
+ "order": 236,
+ "id": 6,
+ "name": "word",
+ "prevSize": 18,
+ "code": 59736,
+ "tempChar": ""
+ },
+ {
+ "order": 240,
+ "id": 7,
+ "name": "doc-lib",
+ "prevSize": 18,
+ "code": 59759,
+ "tempChar": ""
+ },
+ {
+ "name": "file, file-empty",
+ "id": 8,
+ "order": 241,
+ "prevSize": 18,
+ "code": 61462,
+ "tempChar": ""
+ },
+ {
+ "name": "file-text",
+ "id": 9,
+ "order": 242,
+ "prevSize": 18,
+ "code": 61686,
+ "tempChar": ""
+ },
+ {
+ "name": "file-alt",
+ "id": 10,
+ "order": 243,
+ "prevSize": 18,
+ "code": 61787,
+ "tempChar": ""
+ },
+ {
+ "name": "file-text-alt",
+ "id": 11,
+ "order": 244,
+ "prevSize": 18,
+ "code": 61788,
+ "tempChar": ""
+ },
+ {
+ "name": "file-pdf",
+ "id": 12,
+ "order": 245,
+ "prevSize": 18,
+ "code": 61889,
+ "tempChar": ""
+ },
+ {
+ "name": "file-word",
+ "id": 13,
+ "order": 246,
+ "prevSize": 18,
+ "code": 61890,
+ "tempChar": ""
+ },
+ {
+ "name": "file-excel",
+ "id": 14,
+ "order": 247,
+ "prevSize": 18,
+ "code": 61891,
+ "tempChar": ""
+ },
+ {
+ "name": "file-powerpoint",
+ "id": 15,
+ "order": 248,
+ "prevSize": 18,
+ "code": 61892,
+ "tempChar": ""
+ },
+ {
+ "name": "file-image",
+ "id": 16,
+ "order": 249,
+ "prevSize": 18,
+ "code": 61893,
+ "tempChar": ""
+ },
+ {
+ "name": "file-archive",
+ "id": 17,
+ "order": 250,
+ "prevSize": 18,
+ "code": 61894,
+ "tempChar": ""
+ },
+ {
+ "name": "file-audio",
+ "id": 18,
+ "order": 251,
+ "prevSize": 18,
+ "code": 61895,
+ "tempChar": ""
+ },
+ {
+ "name": "file-video",
+ "id": 19,
+ "order": 252,
+ "prevSize": 18,
+ "code": 61896,
+ "tempChar": ""
+ },
+ {
+ "name": "file-code",
+ "id": 20,
+ "order": 253,
+ "prevSize": 18,
+ "code": 61897,
+ "tempChar": ""
+ },
+ {
+ "order": 254,
+ "id": 21,
+ "name": "folder-account",
+ "prevSize": 18,
+ "code": 59714,
+ "tempChar": "",
+ "codes": [
+ 59714
+ ]
+ },
+ {
+ "order": 255,
+ "id": 22,
+ "name": "folder-move",
+ "prevSize": 18,
+ "code": 59744,
+ "tempChar": ""
+ },
+ {
+ "order": 256,
+ "id": 23,
+ "name": "folder-plus",
+ "prevSize": 18,
+ "code": 59745,
+ "tempChar": ""
+ },
+ {
+ "order": 257,
+ "id": 24,
+ "name": "folder-upload",
+ "prevSize": 18,
+ "code": 59746,
+ "tempChar": "",
+ "codes": [
+ 59746
+ ]
+ },
+ {
+ "order": 258,
+ "id": 25,
+ "name": "folder-star",
+ "prevSize": 18,
+ "code": 59747,
+ "tempChar": "",
+ "codes": [
+ 59747
+ ]
+ },
+ {
+ "order": 259,
+ "id": 26,
+ "name": "folder-edit",
+ "prevSize": 18,
+ "code": 59748,
+ "tempChar": ""
+ },
+ {
+ "order": 260,
+ "id": 27,
+ "name": "folder-download",
+ "prevSize": 18,
+ "code": 59749,
+ "tempChar": ""
+ },
+ {
+ "order": 261,
+ "id": 28,
+ "name": "folder-outline",
+ "prevSize": 18,
+ "code": 59750,
+ "tempChar": ""
+ },
+ {
+ "name": "folder",
+ "id": 29,
+ "order": 262,
+ "prevSize": 18,
+ "code": 59716,
+ "tempChar": ""
+ },
+ {
+ "name": "folder-o",
+ "id": 30,
+ "order": 263,
+ "prevSize": 18,
+ "code": 59717,
+ "tempChar": ""
+ },
+ {
+ "name": "folder-open-o",
+ "id": 31,
+ "order": 264,
+ "prevSize": 18,
+ "code": 59718,
+ "tempChar": ""
+ },
+ {
+ "name": "folder-open",
+ "id": 32,
+ "order": 265,
+ "prevSize": 18,
+ "code": 59719,
+ "tempChar": ""
+ }
+ ],
+ "id": 5,
+ "metadata": {
+ "name": "文档",
+ "importSize": {
+ "width": 26,
+ "height": 26
+ }
+ },
+ "height": 1024,
+ "prevSize": 28,
+ "icons": [
+ {
+ "id": 0,
+ "paths": [
+ "M837.818 930.91c0 51.414-41.677 93.091-93.091 93.091h-605.091c-51.413 0-93.091-41.677-93.091-93.091v-837.819c0-51.413 41.678-93.091 93.091-93.091h432.361l265.822 276.027v189.428h93.091c25.707 0 46.546 20.838 46.546 46.546v325.818c0 25.707-20.838 46.546-46.546 46.546h-93.091v46.546zM376.51 558.546h-50.693v232.727h139.637v-40.565h-88.944v-192.163zM584.667 558.546c-35.835 0-64.661 11.064-86.482 33.196-21.821 22.127-32.73 50.818-32.73 86.072 0 33.318 10.678 60.555 32.037 81.716 21.355 21.164 49.133 31.744 83.325 31.744 35.016 0 63.33-10.92 84.941-32.759 21.615-21.839 32.423-50.288 32.423-85.351 0-33.606-10.399-61.11-31.191-82.511-20.792-21.406-48.235-32.108-82.326-32.108zM815.715 558.546c-35.244 0-63.642 11.115-85.197 33.34s-32.335 51.065-32.335 86.509c0 34.965 9.794 62.515 29.385 82.66 19.586 20.145 46.318 30.217 80.184 30.217 30.296 0 55.836-6.344 76.614-19.032v-111.858h-88.288v38.498h42.976v46.196c-7.503 3.873-17.161 5.809-28.97 5.809-19.86 0-35.537-6.586-47.025-19.754-11.487-13.173-17.231-31.525-17.231-55.059 0-23.147 6.363-41.793 19.084-55.933 12.726-14.136 29.337-21.207 49.841-21.207 23.798 0 43.939 5.083 60.416 15.253v-45.47c-16.938-6.781-36.752-10.171-59.453-10.171zM583.127 600.092c19.615 0 34.812 6.805 45.591 20.41 10.779 13.61 16.174 32.13 16.174 55.57 0 22.468-5.549 40.359-16.635 53.676-11.091 13.317-26.596 19.977-46.518 19.977-19.507 0-34.858-6.949-46.052-20.847-11.189-13.898-16.789-31.791-16.789-53.681 0-22.174 5.725-40.239 17.175-54.184 11.451-13.95 27.136-20.922 47.053-20.922zM567.855 88.297v181.667h181.667l-181.667-181.667zM279.273 884.364c-25.706 0-46.546-20.838-46.546-46.546v-325.818c0-25.707 20.839-46.546 46.546-46.546h502.691l0.035-140.725c-3.262 0.717-6.615 1.088-10.006 1.088h-213.448c-25.707 0-46.546-20.839-46.546-46.546v-213.447c0-3.428 0.371-6.771 1.074-9.989l-373.438 0.018c-18.984 0-34.649 14.205-36.946 32.565l-0.29 4.671v837.819c0 18.981 14.205 34.649 32.565 36.948l4.671 0.288h605.091c18.981 0 34.649-14.205 36.948-32.567v-51.214h-502.403z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "file-log"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 1,
+ "paths": [
+ "M841.143 73.143c60.594 0 109.714 49.121 109.714 109.714v0 658.286c0 60.594-49.121 109.714-109.714 109.714v0h-658.286c-60.594 0-109.714-49.121-109.714-109.714v0-658.286c0-60.594 49.121-109.714 109.714-109.714v0zM841.143 146.286h-658.286c-20.198 0-36.571 16.374-36.571 36.571v0 658.286c0 20.198 16.374 36.571 36.571 36.571v0h658.286c20.198 0 36.571-16.374 36.571-36.571v0-658.286c0-20.198-16.374-36.571-36.571-36.571v0zM694.857 292.571c20.198 0 36.571 16.374 36.571 36.571s-16.374 36.571-36.571 36.571h-146.286v329.111c0 20.216-16.388 36.604-36.604 36.604-18.772 0-34.243-14.13-36.357-32.335l-0.246-4.269 0-329.111h-146.221c-20.198 0-36.571-16.374-36.571-36.571s16.374-36.571 36.571-36.571h365.714z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "25525525515151511": [
+ {}
+ ]
+ },
+ "tags": [
+ "富文本"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 2,
+ "paths": [
+ "M73.143 731.373v-73.087h73.143v73.087h-73.143zM219.429 731.373v-292.516h73.143v24.704c14.154-21.943 36.571-24.408 49.925-24.704 16.405 0 42.454-2.45 59.789 29.86 19.585-32.311 52.014-29.86 82.46-29.86 57.051 0 100.397 31.068 100.397 96.348v196.224h-73.143v-189.366c0-32.366-7.279-53.705-36.571-53.705-31.543 0-36.571 21.394-36.571 53.76v189.312h-73.143v-189.366c0-32.366-7.771-53.705-36.571-53.705-32.585 0-36.023 23.095-36.571 54.857v188.215l-73.143-0.056zM621.714 585.143c0-82.615 60.782-146.286 131.437-146.286 33.134 0 65.171 4.406 84.7 29.86h3.291v-176.146h73.143v438.857h-73.143v-42.679h-2.688c-19.529 25.345-52.663 42.679-85.248 42.679-70.71 0-131.492-63.671-131.492-146.286zM841.143 587.648c0-57.148-34.862-75.648-73.143-75.648s-73.143 23.053-73.143 73.143c0 50.090 27.849 73.143 70.748 73.143 42.404 0 75.538-25.106 75.538-70.637z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "25525525515151511": [
+ {}
+ ]
+ },
+ "tags": [
+ "Markdown"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 3,
+ "paths": [
+ "M679.709 73.143c9.699 0 19.001 3.853 25.86 10.712v0l161.434 161.434c6.858 6.858 10.712 16.161 10.712 25.86v0 643.137c0 20.198-16.374 36.571-36.571 36.571v0h-658.286c-20.198 0-36.571-16.374-36.571-36.571v0-804.571c0-20.198 16.374-36.571 36.571-36.571v0zM658.286 146.286h-438.857v731.43h585.143v-585.145h-146.286v-146.286zM399.266 365.714l112.734 154.891 112.734-154.891h95.958l-161.72 212.053 172.456 226.804h-95.958l-123.471-169.642-123.471 169.642h-95.958l171.114-226.804-160.377-212.053h95.958z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "25525525515151511": [
+ {}
+ ]
+ },
+ "tags": [
+ "Excel"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 4,
+ "paths": [
+ "M454.248 611.582v0c-11.1 0.009-21.747-4.398-29.593-12.247-76.566-76.55-76.566-201.084 0-277.634l154.513-154.48c37.090-37.082 86.395-57.506 138.838-57.506s101.765 20.424 138.856 57.488c76.566 76.55 76.566 201.084 0 277.634l-70.629 70.614c-16.098 16.577-42.588 16.968-59.169 0.874s-16.972-42.579-0.874-59.156c0.287-0.296 0.579-0.587 0.874-0.874l70.629-70.614c43.928-44.013 43.928-115.273 0-159.286v0c-21.082-21.196-49.771-33.077-79.669-32.994h-0c-29.899-0.087-58.589 11.795-79.669 32.994l-154.513 154.48c-43.928 44.013-43.928 115.273 0 159.286v0c16.344 16.334 16.349 42.822 0.011 59.163-7.85 7.852-18.501 12.259-29.605 12.259h-0.001zM305.977 914.285h0c-52.101 0.141-102.094-20.56-138.838-57.489-76.566-76.55-76.566-201.084 0-277.634l70.629-70.614c16.098-16.577 42.588-16.968 59.169-0.874s16.972 42.579 0.874 59.156c-0.287 0.296-0.579 0.587-0.874 0.874l-70.629 70.614c-43.928 44.013-43.928 115.273 0 159.286 21.271 21.285 49.573 32.994 79.669 32.994s58.398-11.709 79.669-32.994l154.513-154.48c43.928-44.013 43.928-115.273 0-159.286v0c-16.58-16.094-16.972-42.579-0.874-59.156s42.588-16.968 59.169-0.874c0.296 0.287 0.587 0.579 0.874 0.874 76.566 76.55 76.566 201.084 0 277.634l-154.513 154.48c-36.736 36.942-86.734 57.644-138.838 57.489h0.001z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "25525525515151511": [
+ {}
+ ]
+ },
+ "tags": [
+ "链接"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 5,
+ "paths": [
+ "M679.709 73.143c9.699 0 19.001 3.853 25.86 10.712v0l161.434 161.434c6.858 6.858 10.712 16.161 10.712 25.86v0 643.137c0 20.198-16.374 36.571-36.571 36.571v0h-658.286c-20.198 0-36.571-16.374-36.571-36.571v0-804.571c0-20.198 16.374-36.571 36.571-36.571v0zM658.286 146.286h-438.857v731.43h585.143v-585.145h-146.286v-146.286zM557.643 365.714c90.068 0 137.214 54.212 137.214 138.647s-53.068 117.343-138.194 117.387l-117.806-0.033v182.857h-73.143v-438.857h191.929zM553.835 438.879l-114.978-0.021v109.705l114.978 0.009c24.369 0 42.080-4.524 52.482-12.492 10.051-8.131 15.397-21.717 15.397-42.365 0-20.16-5.537-34.379-15.923-42.343-8.671-7.015-22.552-11.182-41.853-12.23l-10.103-0.263z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "25525525515151511": [
+ {}
+ ]
+ },
+ "tags": [
+ "PPT"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 6,
+ "paths": [
+ "M679.709 73.143c9.699 0 19.001 3.853 25.86 10.712v0l161.434 161.434c6.858 6.858 10.712 16.161 10.712 25.86v0 643.137c0 20.198-16.374 36.571-36.571 36.571v0h-658.286c-20.198 0-36.571-16.374-36.571-36.571v0-804.571c0-20.198 16.374-36.571 36.571-36.571v0zM658.286 146.286h-438.857v731.43h585.143v-585.145h-146.286v-146.286zM365.714 402.286l54.857 237.714 54.857-237.714h73.143l54.857 237.714 54.857-237.714h73.143l-91.429 365.714h-73.143l-54.892-237.714-54.822 237.714h-73.143l-91.429-365.714h73.143z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "25525525515151511": [
+ {}
+ ]
+ },
+ "tags": [
+ "Word"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 7,
+ "paths": [
+ "M877.714 475.429v-219.429c0-20.198-16.374-36.571-36.571-36.571h-292.571v-73.143c0-20.198-16.374-36.571-36.571-36.571h-240.852c-9.699 0-19.001 3.853-25.86 10.712l-88.291 88.291c-6.858 6.858-10.712 16.161-10.712 25.86v240.852h-36.571c-20.198 0-36.571 16.374-36.571 36.571v365.714c0 20.198 16.374 36.571 36.571 36.571h804.571c20.198 0 36.571-16.374 36.571-36.571v-365.714c0-20.198-16.374-36.571-36.571-36.571h-36.571zM841.143 256v219.429h-73.143v-219.429h73.143zM731.429 256v219.429h-73.143v-219.429h73.143zM658.286 768h-292.571v-146.286h292.571v146.286zM622.158 256l-0.443 219.429h-73.143v-219.429h73.586zM182.857 256h109.714v-109.714h219.429v329.143h-329.143v-219.429z"
+ ],
+ "attrs": [
+ {}
+ ],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "25525525515151511": [
+ {}
+ ]
+ },
+ "tags": [
+ "doc-lib"
+ ],
+ "grid": 14
+ },
+ {
+ "id": 8,
+ "paths": [
+ "M838.857 217.143c21.143 21.143 38.857 63.429 38.857 93.714v658.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h512c30.286 0 72.571 17.714 93.714 38.857zM585.143 77.714v214.857h214.857c-3.429-9.714-8.571-19.429-12.571-23.429l-178.857-178.857c-4-4-13.714-9.143-23.429-12.571zM804.571 950.857v-585.143h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-438.857v877.714h731.429z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "25525525515151511": []
+ },
+ "tags": [
+ "file-o"
+ ],
+ "defaultCode": 61462,
+ "grid": 14
+ },
+ {
+ "id": 9,
+ "paths": [
+ "M838.857 217.143c21.143 21.143 38.857 63.429 38.857 93.714v658.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h512c30.286 0 72.571 17.714 93.714 38.857zM585.143 77.714v214.857h214.857c-3.429-9.714-8.571-19.429-12.571-23.429l-178.857-178.857c-4-4-13.714-9.143-23.429-12.571zM804.571 950.857v-585.143h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-438.857v877.714h731.429zM219.429 457.143c0-10.286 8-18.286 18.286-18.286h402.286c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-402.286c-10.286 0-18.286-8-18.286-18.286v-36.571zM640 585.143c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-402.286c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h402.286zM640 731.429c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-402.286c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h402.286z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "25525525515151511": []
+ },
+ "tags": [
+ "file-text-o"
+ ],
+ "defaultCode": 61686,
+ "grid": 14
+ },
+ {
+ "id": 10,
+ "paths": [
+ "M585.143 292.571v-269.714c8 5.143 14.857 10.286 20.571 16l233.143 233.143c5.714 5.714 10.857 12.571 16 20.571h-269.714zM512 310.857c0 30.286 24.571 54.857 54.857 54.857h310.857v603.429c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h457.143v310.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "25525525515151511": []
+ },
+ "tags": [
+ "file"
+ ],
+ "defaultCode": 61787,
+ "grid": 14
+ },
+ {
+ "id": 11,
+ "paths": [
+ "M838.857 272c5.714 5.714 10.857 12.571 16 20.571h-269.714v-269.714c8 5.143 14.857 10.286 20.571 16zM566.857 365.714h310.857v603.429c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h457.143v310.857c0 30.286 24.571 54.857 54.857 54.857zM658.286 786.286v-36.571c0-10.286-8-18.286-18.286-18.286h-402.286c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h402.286c10.286 0 18.286-8 18.286-18.286zM658.286 640v-36.571c0-10.286-8-18.286-18.286-18.286h-402.286c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h402.286c10.286 0 18.286-8 18.286-18.286zM658.286 493.714v-36.571c0-10.286-8-18.286-18.286-18.286h-402.286c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h402.286c10.286 0 18.286-8 18.286-18.286z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "25525525515151511": []
+ },
+ "tags": [
+ "file-text"
+ ],
+ "defaultCode": 61788,
+ "grid": 14
+ },
+ {
+ "id": 12,
+ "paths": [
+ "M838.857 217.143c21.143 21.143 38.857 63.429 38.857 93.714v658.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h512c30.286 0 72.571 17.714 93.714 38.857zM585.143 77.714v214.857h214.857c-3.429-9.714-8.571-19.429-12.571-23.429l-178.857-178.857c-4-4-13.714-9.143-23.429-12.571zM804.571 950.857v-585.143h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-438.857v877.714h731.429zM510.857 612c14.286 11.429 30.286 21.714 48 32 24-2.857 46.286-4 66.857-4 38.286 0 86.857 4.571 101.143 28 4 5.714 7.429 16 1.143 29.714-0.571 0.571-1.143 1.714-1.714 2.286v0.571c-1.714 10.286-10.286 21.714-40.571 21.714-36.571 0-92-16.571-140-41.714-79.429 8.571-162.857 26.286-224 47.429-58.857 100.571-104 149.714-138.286 149.714-5.714 0-10.857-1.143-16-4l-13.714-6.857c-1.714-0.571-2.286-1.714-3.429-2.857-2.857-2.857-5.143-9.143-3.429-20.571 5.714-26.286 36.571-70.286 107.429-107.429 4.571-2.857 10.286-1.143 13.143 3.429 0.571 0.571 1.143 1.714 1.143 2.286 17.714-29.143 38.286-66.286 61.143-112.571 25.714-51.429 45.714-101.714 59.429-149.714-18.286-62.286-24-126.286-13.714-164 4-14.286 12.571-22.857 24-22.857h12.571c8.571 0 15.429 2.857 20 8.571 6.857 8 8.571 20.571 5.143 38.857-0.571 1.714-1.143 3.429-2.286 4.571 0.571 1.714 0.571 2.857 0.571 4.571v17.143c-0.571 36-1.143 70.286-8 109.714 20 60 49.714 108.571 83.429 136zM181.714 846.857c17.143-8 41.714-32.571 78.286-90.286-42.857 33.143-69.714 70.857-78.286 90.286zM409.143 321.143c-5.714 16-5.714 43.429-1.143 75.429 1.714-9.143 2.857-17.714 4-25.143 1.143-9.714 2.857-17.714 4-24.571 0.571-1.714 1.143-2.857 2.286-4.571-0.571-0.571-0.571-1.714-1.143-2.857-0.571-10.286-4-16.571-7.429-20.571 0 1.143-0.571 1.714-0.571 2.286zM338.286 698.857c50.286-20 106.286-36 162.286-46.286-5.714-4.571-11.429-8.571-16.571-13.143-28-24.571-53.143-58.857-72.571-100.571-10.857 34.857-26.857 72-47.429 112.571-8.571 16-17.143 32-25.714 47.429zM707.429 689.714c-2.857-2.857-17.714-13.714-80-13.714 28 10.286 53.714 16 70.857 16 5.143 0 8 0 10.286-0.571 0-0.571-0.571-1.143-1.143-1.714z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "25525525515151511": []
+ },
+ "tags": [
+ "file-pdf"
+ ],
+ "defaultCode": 61889,
+ "grid": 14
+ },
+ {
+ "id": 13,
+ "paths": [
+ "M838.857 217.143c21.143 21.143 38.857 63.429 38.857 93.714v658.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h512c30.286 0 72.571 17.714 93.714 38.857zM585.143 77.714v214.857h214.857c-3.429-9.714-8.571-19.429-12.571-23.429l-178.857-178.857c-4-4-13.714-9.143-23.429-12.571zM804.571 950.857v-585.143h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-438.857v877.714h731.429zM133.143 438.857v61.143h40l93.714 377.714h90.857l73.143-277.143c2.857-8.571 4.571-17.143 5.714-26.286 0.571-4.571 1.143-9.143 1.143-13.714h2.286l1.714 13.714c1.714 8 2.286 17.143 5.143 26.286l73.143 277.143h90.857l93.714-377.714h40v-61.143h-171.429v61.143h51.429l-56.571 250.286c-2.286 9.143-3.429 18.857-4 26.286l-1.143 12h-2.286c0-3.429-1.143-8-1.714-12-1.714-7.429-2.857-17.143-5.143-26.286l-82.286-311.429h-65.143l-82.286 311.429c-2.286 9.143-2.857 18.857-4.571 26.286l-2.286 12h-2.286l-1.143-12c-0.571-7.429-1.714-17.143-4-26.286l-56.571-250.286h51.429v-61.143h-171.429z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "25525525515151511": []
+ },
+ "tags": [
+ "file-word"
+ ],
+ "defaultCode": 61890,
+ "grid": 14
+ },
+ {
+ "id": 14,
+ "paths": [
+ "M838.857 217.143c21.143 21.143 38.857 63.429 38.857 93.714v658.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h512c30.286 0 72.571 17.714 93.714 38.857zM585.143 77.714v214.857h214.857c-3.429-9.714-8.571-19.429-12.571-23.429l-178.857-178.857c-4-4-13.714-9.143-23.429-12.571zM804.571 950.857v-585.143h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-438.857v877.714h731.429zM245.143 817.143v60.571h160.571v-60.571h-42.857l58.857-92c6.857-10.857 10.286-19.429 12-19.429h1.143c0.571 2.286 1.714 4 2.857 5.714 2.286 4.571 5.714 8 9.714 13.714l61.143 92h-43.429v60.571h166.286v-60.571h-38.857l-109.714-156 111.429-161.143h38.286v-61.143h-159.429v61.143h42.286l-58.857 90.857c-6.857 10.857-12 19.429-12 18.857h-1.143c-0.571-2.286-1.714-4-2.857-5.714-2.286-4-5.143-8-9.714-13.143l-60.571-90.857h43.429v-61.143h-165.714v61.143h38.857l108 155.429-110.857 161.714h-38.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "25525525515151511": []
+ },
+ "tags": [
+ "file-excel"
+ ],
+ "defaultCode": 61891,
+ "grid": 14
+ },
+ {
+ "id": 15,
+ "paths": [
+ "M838.857 217.143c21.143 21.143 38.857 63.429 38.857 93.714v658.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h512c30.286 0 72.571 17.714 93.714 38.857zM585.143 77.714v214.857h214.857c-3.429-9.714-8.571-19.429-12.571-23.429l-178.857-178.857c-4-4-13.714-9.143-23.429-12.571zM804.571 950.857v-585.143h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-438.857v877.714h731.429zM237.714 817.143v60.571h186.857v-60.571h-53.143v-95.429h78.286c24.571 0 46.857-1.143 67.429-8.571 51.429-17.714 83.429-70.857 83.429-133.143s-30.857-110.286-78.286-130.286c-21.714-8.571-48-10.857-74.286-10.857h-210.286v61.143h52.571v317.143h-52.571zM439.429 657.143h-68v-153.143h68.571c20 0 35.429 3.429 47.429 10.286 20.571 12 32 35.429 32 65.714 0 32-11.429 56.571-35.429 68.571-12 5.714-26.857 8.571-44.571 8.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "25525525515151511": []
+ },
+ "tags": [
+ "file-powerpoint"
+ ],
+ "defaultCode": 61892,
+ "grid": 14
+ },
+ {
+ "id": 16,
+ "paths": [
+ "M838.857 217.143c21.143 21.143 38.857 63.429 38.857 93.714v658.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h512c30.286 0 72.571 17.714 93.714 38.857zM585.143 77.714v214.857h214.857c-3.429-9.714-8.571-19.429-12.571-23.429l-178.857-178.857c-4-4-13.714-9.143-23.429-12.571zM804.571 950.857v-585.143h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-438.857v877.714h731.429zM731.429 694.857v182.857h-585.143v-109.714l109.714-109.714 73.143 73.143 219.429-219.429zM256 585.143c-60.571 0-109.714-49.143-109.714-109.714s49.143-109.714 109.714-109.714 109.714 49.143 109.714 109.714-49.143 109.714-109.714 109.714z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "25525525515151511": []
+ },
+ "tags": [
+ "file-image-o",
+ "file-photo-o",
+ "file-picture-o"
+ ],
+ "defaultCode": 61893,
+ "grid": 14
+ },
+ {
+ "id": 17,
+ "paths": [
+ "M365.714 219.429v-73.143h-73.143v73.143h73.143zM438.857 292.571v-73.143h-73.143v73.143h73.143zM365.714 365.714v-73.143h-73.143v73.143h73.143zM438.857 438.857v-73.143h-73.143v73.143h73.143zM838.857 217.143c21.143 21.143 38.857 63.429 38.857 93.714v658.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h512c30.286 0 72.571 17.714 93.714 38.857zM585.143 77.714v214.857h214.857c-3.429-9.714-8.571-19.429-12.571-23.429l-178.857-178.857c-4-4-13.714-9.143-23.429-12.571zM804.571 950.857v-585.143h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-73.143v73.143h-73.143v-73.143h-292.571v877.714h731.429zM446.286 538.857c48.571 164 61.143 199.429 61.143 199.429 2.857 9.714 4.571 19.429 4.571 29.714 0 63.429-61.714 109.714-146.286 109.714s-146.286-46.286-146.286-109.714c0-10.286 1.714-20 4.571-29.714 0 0 12-35.429 68.571-226.286v-73.143h73.143v73.143h45.143c16.571 0 30.857 10.857 35.429 26.857zM365.714 804.571c40.571 0 73.143-16.571 73.143-36.571s-32.571-36.571-73.143-36.571-73.143 16.571-73.143 36.571 32.571 36.571 73.143 36.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "25525525515151511": []
+ },
+ "tags": [
+ "file-archive"
+ ],
+ "defaultCode": 61894,
+ "grid": 14
+ },
+ {
+ "id": 18,
+ "paths": [
+ "M838.857 217.143c21.143 21.143 38.857 63.429 38.857 93.714v658.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h512c30.286 0 72.571 17.714 93.714 38.857zM585.143 77.714v214.857h214.857c-3.429-9.714-8.571-19.429-12.571-23.429l-178.857-178.857c-4-4-13.714-9.143-23.429-12.571zM804.571 950.857v-585.143h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-438.857v877.714h731.429zM354.286 485.714c6.857 2.857 11.429 9.714 11.429 17.143v310.857c0 7.429-4.571 14.286-11.429 17.143-2.286 0.571-4.571 1.143-6.857 1.143-4.571 0-9.143-1.714-13.143-5.143l-94.857-95.429h-74.857c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h74.857l94.857-95.429c5.714-5.143 13.143-6.857 20-4zM592.571 879.429c10.857 0 21.143-4.571 28.571-13.714 47.429-58.286 73.714-132 73.714-207.429s-26.286-149.143-73.714-207.429c-12.571-16-36-18.286-51.429-5.714-16 13.143-18.286 36-5.143 52 37.143 45.714 57.143 101.714 57.143 161.143s-20 115.429-57.143 161.143c-13.143 16-10.857 38.857 5.143 51.429 6.857 5.714 14.857 8.571 22.857 8.571zM472 794.857c9.714 0 19.429-4 26.857-11.429 32-34.286 49.714-78.286 49.714-125.143s-17.714-90.857-49.714-125.143c-13.714-14.857-37.143-15.429-52-1.714-14.286 13.714-15.429 37.143-1.143 52 18.857 20.571 29.714 46.857 29.714 74.857s-10.857 54.286-29.714 74.857c-14.286 14.857-13.143 38.286 1.143 52 7.429 6.286 16.571 9.714 25.143 9.714z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "25525525515151511": []
+ },
+ "tags": [
+ "file-audio-o",
+ "file-sound-o"
+ ],
+ "defaultCode": 61895,
+ "grid": 14
+ },
+ {
+ "id": 19,
+ "paths": [
+ "M838.857 217.143c21.143 21.143 38.857 63.429 38.857 93.714v658.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h512c30.286 0 72.571 17.714 93.714 38.857zM585.143 77.714v214.857h214.857c-3.429-9.714-8.571-19.429-12.571-23.429l-178.857-178.857c-4-4-13.714-9.143-23.429-12.571zM804.571 950.857v-585.143h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-438.857v877.714h731.429zM438.857 438.857c40 0 73.143 33.143 73.143 73.143v219.429c0 40-33.143 73.143-73.143 73.143h-219.429c-40 0-73.143-33.143-73.143-73.143v-219.429c0-40 33.143-73.143 73.143-73.143h219.429zM720 440c6.857 2.857 11.429 9.714 11.429 17.143v329.143c0 7.429-4.571 14.286-11.429 17.143-2.286 0.571-4.571 1.143-6.857 1.143-4.571 0-9.714-1.714-13.143-5.143l-151.429-152v-51.429l151.429-152c3.429-3.429 8.571-5.143 13.143-5.143 2.286 0 4.571 0.571 6.857 1.143z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "25525525515151511": []
+ },
+ "tags": [
+ "file-movie-o",
+ "file-video-o"
+ ],
+ "defaultCode": 61896,
+ "grid": 14
+ },
+ {
+ "id": 20,
+ "paths": [
+ "M838.857 217.143c21.143 21.143 38.857 63.429 38.857 93.714v658.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h512c30.286 0 72.571 17.714 93.714 38.857zM585.143 77.714v214.857h214.857c-3.429-9.714-8.571-19.429-12.571-23.429l-178.857-178.857c-4-4-13.714-9.143-23.429-12.571zM804.571 950.857v-585.143h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-438.857v877.714h731.429zM274.286 438.857c6.286-8 17.714-9.714 25.714-3.429l29.143 21.714c8 6.286 9.714 17.714 3.429 25.714l-104 138.857 104 138.857c6.286 8 4.571 19.429-3.429 25.714l-29.143 21.714c-8 6.286-19.429 4.571-25.714-3.429l-129.143-172c-4.571-6.286-4.571-15.429 0-21.714zM732.571 610.857c4.571 6.286 4.571 15.429 0 21.714l-129.143 172c-6.286 8-17.714 9.714-25.714 3.429l-29.143-21.714c-8-6.286-9.714-17.714-3.429-25.714l104-138.857-104-138.857c-6.286-8-4.571-19.429 3.429-25.714l29.143-21.714c8-6.286 19.429-4.571 25.714 3.429zM378.286 874.286c-10.286-1.714-16.571-11.429-14.857-21.143l78.857-474.857c1.714-10.286 11.429-16.571 21.143-14.857l36 5.714c10.286 1.714 16.571 11.429 14.857 21.143l-78.857 474.857c-1.714 10.286-11.429 16.571-21.143 14.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "25525525515151511": []
+ },
+ "tags": [
+ "file-code"
+ ],
+ "defaultCode": 61897,
+ "grid": 14
+ },
+ {
+ "id": 21,
+ "paths": [
+ "M85.333 853.339c0-15.709-12.736-28.444-28.446-28.444h28.446v28.444zM85.333 824.893v-682.671h288.302l80.842 113.778h484.189v42.997h85.333v-71.441c0-31.419-25.47-56.889-56.889-56.889h-468.584l-63.833-89.839c-10.67-15.018-27.952-23.939-46.374-23.939h-331.43c-31.419 0-56.889 25.47-56.889 56.889v739.561c0 31.419 25.47 56.889 56.889 56.889l355.669-0.006-0.001-85.333-327.223 0.004zM85.333 142.222v-28.444c0 15.709-12.736 28.444-28.444 28.444h28.444zM388.319 142.222c-9.211 0-17.852-4.46-23.188-11.969l8.504 11.969h14.683zM967.111 256c-15.709 0-28.444-12.736-28.444-28.444v28.444h28.444zM938.667 227.556c0 15.709 12.736 28.444 28.444 28.444h-28.444v-28.444zM938.667 298.997h85.333v-71.441c0-31.419-25.47-56.889-56.889-56.889h-468.584l-63.833-89.839c-10.67-15.018-27.952-23.939-46.374-23.939h-331.43c-31.419 0-56.889 25.47-56.889 56.889v739.561c0 31.419 25.47 56.889 56.889 56.889l355.669-0.006-0.001-85.333-327.223 0.004v-682.671h288.302l80.842 113.778h484.189v42.997zM388.319 142.222c-9.211 0-17.852-4.46-23.188-11.969l8.504 11.969h14.683zM56.889 142.222c15.709 0 28.444-12.736 28.444-28.444v28.444h-28.444zM56.888 824.893c15.711 0 28.446 12.736 28.446 28.444v-28.444h-28.446z",
+ "M1023.318 871.646c0.448 2.122 0.682 4.322 0.682 6.577 0 17.673-14.456 32-32.288 32-0.022 0-0.043 0-0.066 0-0.011 0-0.023 0-0.034 0-196.601 0-345.434 0-446.5 0-0.098 0-0.196-0.001-0.291-0.004-0.177 0.003-0.354 0.004-0.532 0.004-17.832 0-32.288-14.327-32.288-32 0-1.13 0.059-2.246 0.174-3.344-0.016-0.392 0.010-0.823 0.078-1.298 13.262-91.708 75.569-167.727 159.737-201.118-35.96-28.129-59.042-71.712-59.042-120.64 0-84.831 69.388-153.6 154.981-153.6s154.981 68.769 154.981 153.6c0 48.927-23.082 92.511-59.042 120.64 83.576 33.156 145.597 108.341 159.45 199.183z",
+ "M981.333 341.333c23.564 0 42.667-19.102 42.667-42.667s-19.102-42.667-42.667-42.667c-23.564 0-42.667 19.102-42.667 42.667s19.102 42.667 42.667 42.667z",
+ "M412.444 910.222c23.564 0 42.667-19.102 42.667-42.667s-19.102-42.667-42.667-42.667c-23.564 0-42.667 19.102-42.667 42.667s19.102 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "25525525515151511": []
+ },
+ "tags": [
+ "folder-account"
+ ],
+ "grid": 18
+ },
+ {
+ "id": 22,
+ "paths": [
+ "M614.398 819.202v-153.598h-204.8v-204.8h204.8v-153.598l255.999 255.999zM921.6 204.798h-409.6l-102.4-102.4h-307.202c-56.831 0-102.4 45.569-102.4 102.4v614.398c0 56.32 46.080 102.4 102.4 102.4h819.2c56.32 0 102.4-46.080 102.4-102.4v-511.999c0-56.831-46.080-102.4-102.4-102.4z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "25525525515151511": []
+ },
+ "tags": [
+ "folder-move"
+ ],
+ "grid": 18
+ },
+ {
+ "id": 23,
+ "paths": [
+ "M409.601 102.399l102.4 102.4h409.601c56.32 0 102.4 46.080 102.4 102.4v511.999c0 56.32-46.080 102.4-102.4 102.4h-819.199c-56.831 0-102.4-46.080-102.4-102.4v-614.398c0-56.831 45.568-102.4 102.4-102.4h307.201zM665.6 358.402v153.598h-153.598v102.4h153.598v153.598h102.4v-153.598h153.598v-102.4h-153.598v-153.598h-102.4z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "25525525515151511": []
+ },
+ "tags": [
+ "folder-plus"
+ ],
+ "grid": 18
+ },
+ {
+ "id": 24,
+ "paths": [
+ "M85.333 853.339c0-15.709-12.736-28.444-28.446-28.444h28.446v28.444zM85.333 824.893v-682.671h288.302l80.842 113.778h484.189v42.997h85.333v-71.441c0-31.419-25.47-56.889-56.889-56.889h-468.584l-63.833-89.839c-10.67-15.018-27.952-23.939-46.374-23.939h-331.43c-31.419 0-56.889 25.47-56.889 56.889v739.561c0 31.419 25.47 56.889 56.889 56.889l355.669-0.006-0.001-85.333-327.223 0.004zM85.333 142.222v-28.444c0 15.709-12.736 28.444-28.444 28.444h28.444zM388.319 142.222c-9.211 0-17.852-4.46-23.188-11.969l8.504 11.969h14.683zM967.111 256c-15.709 0-28.444-12.736-28.444-28.444v28.444h28.444zM938.667 227.556c0 15.709 12.736 28.444 28.444 28.444h-28.444v-28.444zM938.667 298.997h85.333v-71.441c0-31.419-25.47-56.889-56.889-56.889h-468.584l-63.833-89.839c-10.67-15.018-27.952-23.939-46.374-23.939h-331.43c-31.419 0-56.889 25.47-56.889 56.889v739.561c0 31.419 25.47 56.889 56.889 56.889l355.669-0.006-0.001-85.333-327.223 0.004v-682.671h288.302l80.842 113.778h484.189v42.997zM388.319 142.222c-9.211 0-17.852-4.46-23.188-11.969l8.504 11.969h14.683zM56.889 142.222c15.709 0 28.444-12.736 28.444-28.444v28.444h-28.444zM56.888 824.893c15.711 0 28.446 12.736 28.446 28.444v-28.444h-28.446z",
+ "M870.4 674.923v206.854c0 15.709-12.736 28.444-28.444 28.444h-147.911c-15.709 0-28.444-12.736-28.444-28.444v-206.854h-130.508c-12.753 0-23.092-10.339-23.092-23.092 0-6.124 2.433-11.998 6.763-16.329l228.826-228.826c11.273-11.273 29.55-11.273 40.822 0l228.826 228.826c9.018 9.018 9.018 23.64 0 32.658-4.331 4.331-10.204 6.763-16.329 6.763h-130.508z",
+ "M981.333 341.333c23.564 0 42.667-19.102 42.667-42.667s-19.102-42.667-42.667-42.667c-23.564 0-42.667 19.102-42.667 42.667s19.102 42.667 42.667 42.667z",
+ "M412.444 910.222c23.564 0 42.667-19.102 42.667-42.667s-19.102-42.667-42.667-42.667c-23.564 0-42.667 19.102-42.667 42.667s19.102 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "25525525515151511": []
+ },
+ "tags": [
+ "folder-upload"
+ ],
+ "grid": 18
+ },
+ {
+ "id": 25,
+ "paths": [
+ "M85.335 853.338c0-15.709-12.736-28.444-28.445-28.444h28.445v28.444zM85.335 824.892v-682.669h288.301l80.842 113.777h484.187v42.997h85.333v-71.441c0-31.419-25.47-56.889-56.889-56.889h-468.583l-63.833-89.839c-10.67-15.018-27.952-23.939-46.374-23.939h-331.429c-31.419 0-56.889 25.47-56.889 56.889v739.559c0 31.419 25.47 56.889 56.889 56.889l355.668-0.006-0.001-85.333-327.222 0.004zM85.335 142.223v-28.444c0 15.709-12.736 28.444-28.444 28.444h28.444zM388.319 142.223c-9.211 0-17.852-4.46-23.188-11.969l8.504 11.969h14.683zM967.11 256.001c-15.709 0-28.444-12.736-28.444-28.444v28.444h28.444zM938.665 227.556c0 15.709 12.736 28.444 28.444 28.444h-28.444v-28.444zM938.665 298.997h85.333v-71.441c0-31.419-25.47-56.889-56.889-56.889h-468.583l-63.833-89.839c-10.67-15.018-27.952-23.939-46.374-23.939h-331.429c-31.419 0-56.889 25.47-56.889 56.889v739.559c0 31.419 25.47 56.889 56.889 56.889l355.668-0.006-0.001-85.333-327.222 0.004v-682.669h288.301l80.842 113.777h484.187v42.997zM388.319 142.223c-9.211 0-17.852-4.46-23.188-11.969l8.504 11.969h14.683zM56.89 142.223c15.709 0 28.444-12.736 28.444-28.444v28.444h-28.444zM56.889 824.892c15.711 0 28.445 12.736 28.445 28.444v-28.444h-28.445z",
+ "M981.332 341.334c23.564 0 42.667-19.102 42.667-42.667s-19.102-42.667-42.667-42.667c-23.564 0-42.667 19.102-42.667 42.667s19.102 42.667 42.667 42.667z",
+ "M412.445 910.221c23.564 0 42.667-19.102 42.667-42.667s-19.102-42.667-42.667-42.667c-23.564 0-42.667 19.102-42.667 42.667s19.102 42.667 42.667 42.667z",
+ "M932.775 735.056l0.458 156.303c0.090 6.090-2.54 11.466-6.694 14.9-5.519 3.942-11.199 4.899-16.686 2.941l-141.777-48.913-141.792 48.915c-5.484 1.959-11.159 1.002-15.541-2.072-5.298-4.297-7.924-9.68-7.84-15.77l0.461-156.303-87.78-125.811c-3.47-4.864-4.358-10.828-2.929-16.148 2.263-6.608 6.329-10.896 11.876-12.69l142.483-48.055 86.833-126.203c3.34-4.973 8.483-7.709 13.767-7.928 6.67 0.214 11.801 2.944 15.143 7.913l86.884 126.391 141.963 47.881c5.547 1.792 9.613 6.082 11.44 11.286 1.869 6.72 0.982 12.681-2.487 17.553l-87.78 125.81z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "25525525515151511": []
+ },
+ "tags": [
+ "folder-star"
+ ],
+ "grid": 18
+ },
+ {
+ "id": 26,
+ "paths": [
+ "M93.666 113.921c-51.985 0-93.664 41.682-93.664 93.664v561.993c0 51.516 42.149 93.664 93.664 93.664h374.662v-88.513l468.328-468.328v-5.151c0-51.985-42.149-93.664-93.664-93.664h-374.662l-93.664-93.664h-280.997zM938.53 447.841c-6.556 0-13.114 2.809-18.265 7.96l-46.835 46.835 96.009 96.009 46.835-46.835c10.305-9.834 10.305-26.226 0-36.060l-59.947-59.947c-5.151-5.151-11.241-7.96-17.794-7.96zM846.267 529.796l-284.275 283.808v96.474h96.474l283.808-284.275-96.009-96.009z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "25525525515151511": []
+ },
+ "tags": [
+ "folder-edit"
+ ],
+ "grid": 18
+ },
+ {
+ "id": 27,
+ "paths": [
+ "M921.6 204.799c56.32 0 102.4 46.080 102.4 102.4v511.999c0 56.32-46.080 102.4-102.4 102.4h-819.2c-56.831 0-102.4-46.080-102.4-102.4v-614.398c0-56.831 45.568-102.4 102.4-102.4h307.201l102.4 102.4h409.6zM883.199 563.199h-166.399v-204.801h-102.4v204.801h-166.399l217.6 217.6z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "25525525515151511": []
+ },
+ "tags": [
+ "folder-download"
+ ],
+ "grid": 18
+ },
+ {
+ "id": 28,
+ "paths": [
+ "M921.6 819.201h-819.199v-511.999h819.199zM921.6 204.799h-409.6l-102.4-102.4h-307.201c-56.831 0-102.4 45.568-102.4 102.4v614.398c0 56.32 46.080 102.4 102.4 102.4h819.199c56.32 0 102.4-46.080 102.4-102.4v-511.999c0-56.831-46.080-102.4-102.4-102.4z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "25525525515151511": []
+ },
+ "tags": [
+ "folder-outline"
+ ],
+ "grid": 18
+ },
+ {
+ "id": 29,
+ "paths": [
+ "M409.598 102.399h-307.201c-56.831 0-102.4 45.568-102.4 102.4v614.398c0 56.32 46.080 102.4 102.4 102.4h819.199c56.32 0 102.4-46.080 102.4-102.4v-511.999c0-56.831-46.080-102.4-102.4-102.4h-409.601l-102.4-102.4z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "25525525515151511": []
+ },
+ "tags": [
+ "folder"
+ ],
+ "defaultCode": 61563,
+ "grid": 18
+ },
+ {
+ "id": 30,
+ "paths": [
+ "M877.714 749.715v-402.286c0-30.288-24.572-54.857-54.857-54.857h-402.286c-30.288 0-54.857-24.572-54.857-54.857v-36.571c0-30.288-24.572-54.857-54.857-54.857h-182.858c-30.288 0-54.857 24.572-54.857 54.857v548.573c0 30.288 24.572 54.857 54.857 54.857h694.859c30.288 0 54.857-24.572 54.857-54.857zM950.859 347.428v402.286c0 70.286-57.714 128.002-128.002 128.002h-694.859c-70.286 0-128.002-57.714-128.002-128.002v-548.573c0-70.286 57.714-128.002 128.002-128.002h182.858c70.286 0 128.002 57.714 128.002 128.002v18.286h383.999c70.286 0 128.002 57.714 128.002 128.002z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "25525525515151511": []
+ },
+ "tags": [
+ "folder-o"
+ ],
+ "defaultCode": 61716,
+ "grid": 18
+ },
+ {
+ "id": 31,
+ "paths": [
+ "M1017.716 568.571c0-16.001-17.715-20.001-30.288-20.001h-621.719c-30.288 0-70.286 18.858-89.716 42.286l-168 207.429c-5.142 6.856-10.287 14.286-10.287 22.858 0 16.001 17.715 20.001 30.288 20.001h621.719c30.288 0 70.286-18.858 89.716-42.858l168-207.429c5.142-6.287 10.287-13.713 10.287-22.285zM365.71 475.428h438.862v-91.429c0-30.288-24.572-54.856-54.856-54.856h-329.145c-30.288 0-54.856-24.572-54.856-54.856v-36.57c0-30.288-24.572-54.856-54.856-54.856h-182.859c-30.288 0-54.856 24.572-54.856 54.856v487.432l146.288-180.002c33.145-40.57 94.286-69.715 146.288-69.715zM1090.859 568.571c0 25.142-10.856 49.142-26.285 68.573l-168.573 207.429c-32.571 40.001-94.859 69.715-146.288 69.715h-621.719c-70.286 0-128.001-57.713-128.001-128.001v-548.576c0-70.286 57.713-128.001 128.001-128.001h182.859c70.286 0 128.001 57.713 128.001 128.001v18.286h310.859c70.286 0 128.001 57.713 128.001 128.001v91.429h109.714c38.858 0 77.715 17.715 94.859 54.288 5.714 12.001 8.571 25.142 8.571 38.858z"
+ ],
+ "width": 1090.8525714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "25525525515151511": []
+ },
+ "tags": [
+ "folder-open-o"
+ ],
+ "defaultCode": 61717,
+ "grid": 18
+ },
+ {
+ "id": 32,
+ "paths": [
+ "M820.743 898.232h-724.187c-53.589 0-96.558-43.451-96.558-96.558v-579.346c0-53.589 42.969-96.558 96.558-96.558h289.676l96.558 96.558h337.953c53.107 0 96.558 43.451 96.558 96.558v0h-820.743v482.789l103.318-386.232h824.123l-110.074 410.373c-11.103 42.004-48.762 72.42-93.18 72.42z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {
+ "25525525515151511": []
+ },
+ "tags": [
+ "folder-open"
+ ],
+ "defaultCode": 61564,
+ "grid": 18
+ }
+ ],
+ "colorThemes": [
+ [
+ [
+ 51,
+ 51,
+ 51,
+ 1
+ ],
+ [
+ 255,
+ 255,
+ 255,
+ 1
+ ]
+ ]
+ ],
+ "colorThemeIdx": 0
+ },
+ {
+ "selection": [
+ {
+ "order": 220,
+ "id": 0,
+ "name": "color",
+ "prevSize": 18,
+ "code": 59708,
+ "tempChar": ""
+ },
+ {
+ "order": 221,
+ "id": 1,
+ "name": "paper-clip",
+ "prevSize": 18,
+ "code": 59709,
+ "tempChar": ""
+ },
+ {
+ "order": 222,
+ "id": 2,
+ "name": "text",
+ "prevSize": 18,
+ "code": 59689,
+ "tempChar": ""
+ },
+ {
+ "order": 223,
+ "id": 3,
+ "name": "menu-collapse",
+ "prevSize": 18,
+ "code": 59776,
+ "tempChar": ""
+ },
+ {
+ "order": 224,
+ "id": 4,
+ "name": "menu-expand",
+ "prevSize": 18,
+ "code": 59777,
+ "tempChar": ""
+ },
+ {
+ "name": "share",
+ "id": 5,
+ "order": 225,
+ "prevSize": 18,
+ "code": 61540,
+ "tempChar": ""
+ },
+ {
+ "order": 226,
+ "id": 6,
+ "name": "format-list-bulleted",
+ "prevSize": 18,
+ "code": 59816,
+ "tempChar": ""
+ },
+ {
+ "order": 227,
+ "id": 7,
+ "name": "format-bold",
+ "prevSize": 18,
+ "code": 59731,
+ "tempChar": ""
+ },
+ {
+ "order": 228,
+ "id": 8,
+ "name": "format-header-pound",
+ "prevSize": 18,
+ "code": 59732,
+ "tempChar": ""
+ },
+ {
+ "order": 229,
+ "id": 9,
+ "name": "format-italic",
+ "prevSize": 18,
+ "code": 59733,
+ "tempChar": ""
+ },
+ {
+ "order": 230,
+ "id": 10,
+ "name": "format-list-numbers",
+ "prevSize": 18,
+ "code": 59753,
+ "tempChar": ""
+ },
+ {
+ "order": 231,
+ "id": 11,
+ "name": "format-quote-close",
+ "prevSize": 18,
+ "code": 59754,
+ "tempChar": ""
+ },
+ {
+ "order": 232,
+ "id": 12,
+ "name": "image",
+ "prevSize": 18,
+ "code": 59756,
+ "tempChar": ""
+ },
+ {
+ "order": 233,
+ "id": 13,
+ "name": "table-large",
+ "prevSize": 18,
+ "code": 59757,
+ "tempChar": ""
+ }
+ ],
+ "id": 4,
+ "metadata": {
+ "name": "文档编辑器",
+ "importSize": {
+ "width": 28,
+ "height": 28
+ }
+ },
+ "height": 1024,
+ "prevSize": 28,
+ "icons": [
+ {
+ "id": 0,
+ "paths": [
+ "M512 1023.98c-282.759 0-511.98-229.221-511.98-511.98s229.221-511.98 511.98-511.98c282.759 0 508.252 204.169 511.98 447.983 1.318 86.219-30.006 212.303-192.409 275.415-69.232 26.904-186.27 1.378-234.428 25.237-64.809 32.11-47.245 111.882-22.099 133.338 43.832 37.4 17.103 141.988-63.044 141.988zM749.952 453.475c0 53.017 42.979 95.996 95.996 95.996s95.996-42.979 95.996-95.996c0-53.017-42.979-95.996-95.996-95.996s-95.996 42.979-95.996 95.996zM246.317 496.211c23.242-47.652 3.452-105.122-44.198-128.363s-105.122-3.452-128.363 44.198c-23.242 47.652-3.452 105.122 44.198 128.363s105.122 3.452 128.363-44.198zM380.748 324.876c51.658-11.927 83.868-63.472 71.941-115.13s-63.472-83.868-115.13-71.941c-51.658 11.927-83.868 63.472-71.941 115.13s63.472 83.868 115.13 71.941zM611.036 298.617c41.203 33.365 101.651 27.011 135.015-14.19s27.011-101.651-14.19-135.015c-41.203-33.365-101.651-27.011-135.015 14.19s-27.011 101.651 14.19 135.015z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "color"
+ ],
+ "defaultCode": 59708,
+ "grid": 18
+ },
+ {
+ "id": 1,
+ "paths": [
+ "M453.734 918.427l429.193-429.193c82.479-82.479 82.479-216.090 0-298.57s-216.090-82.479-298.57 0l-466.514 466.514c-51.503 51.503-51.503 135.102 0 186.605s135.102 51.503 186.605 0l391.873-391.873c20.526-20.526 20.526-54.116 0-74.642s-54.116-20.526-74.642 0l-354.55 354.55-55.981-55.981 354.55-354.55c51.503-51.503 135.102-51.503 186.605 0s51.503 135.102 0 186.605l-391.873 391.873c-82.479 82.479-216.090 82.479-298.57 0s-82.479-216.090 0-298.57l466.514-466.514c113.456-113.456 297.076-113.456 410.533 0s113.456 297.076 0 410.533l-429.193 429.193-55.981-55.981z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "paper-clip"
+ ],
+ "defaultCode": 59709,
+ "grid": 18
+ },
+ {
+ "id": 2,
+ "paths": [
+ "M847.856 98.639l59.939 224.765-49.603 13.434c-23.25-44.952-47.022-89.907-74.407-112.64-27.385-22.218-59.421-22.218-90.939-22.218h-129.176v542.539c0 25.836 0 51.669 17.050 64.586 17.568 12.919 51.669 12.919 86.288 12.919v51.669h-310.021v-51.669c34.62 0 68.723 0 86.288-12.919 17.050-12.919 17.050-38.753 17.050-64.586v-542.539h-129.176c-31.519 0-63.554 0-90.939 22.218-27.385 22.733-51.152 67.689-74.407 112.64l-49.603-13.434 59.939-224.765h671.713z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "text"
+ ],
+ "defaultCode": 59689,
+ "grid": 18
+ },
+ {
+ "id": 3,
+ "paths": [
+ "M0.003 36.567h1023.997v111.86h-1023.997v-111.86zM341.335 316.236h682.668v111.86h-682.668v-111.86zM341.335 595.899h682.668v111.86h-682.668v-111.86zM0.003 875.563h1023.997v111.86h-1023.997v-111.86zM227.561 316.236v391.523l-227.555-195.764 227.555-195.764z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "menu-collapse"
+ ],
+ "defaultCode": 59776,
+ "grid": 14
+ },
+ {
+ "id": 4,
+ "paths": [
+ "M1023.997 36.567h-1023.997v111.86h1023.997v-111.86zM682.665 316.236h-682.668v111.86h682.668v-111.86zM682.665 595.899h-682.668v111.86h682.668v-111.86zM1023.997 875.563h-1023.997v111.86h1023.997v-111.86zM796.439 316.236v391.523l227.555-195.764-227.555-195.764z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "menu-expand"
+ ],
+ "defaultCode": 59777,
+ "grid": 14
+ },
+ {
+ "id": 5,
+ "paths": [
+ "M960.285 383.918c0 8.506-3.502 16.511-9.505 22.514l-256.163 256.163c-6.003 6.003-14.008 9.505-22.514 9.505-17.512 0-32.020-14.509-32.020-32.020v-128.082h-112.072c-215.638 0-357.227 41.527-357.227 280.178 0 20.513 1.001 41.025 2.501 61.54 0.5 8.005 2.501 17.011 2.501 25.015 0 9.505-6.003 17.512-16.010 17.512-7.004 0-10.506-3.502-14.008-8.506-7.505-10.506-13.009-26.518-18.511-38.025-28.517-64.041-63.54-155.598-63.54-225.643 0-56.036 5.504-113.572 26.518-166.606 69.545-172.609 273.673-201.628 437.778-201.628h112.072v-128.082c0-17.512 14.509-32.020 32.020-32.020 8.506 0 16.511 3.502 22.514 9.505l256.163 256.163c6.003 6.003 9.505 14.008 9.505 22.514z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "mail-forward",
+ "share"
+ ],
+ "defaultCode": 61540,
+ "grid": 18
+ },
+ {
+ "id": 6,
+ "paths": [
+ "M74.278 118.081c-41.028 0-74.278 33.069-74.278 73.84s33.25 73.83 74.278 73.83c41.028 0 74.278-33.059 74.278-73.83s-33.25-73.84-74.278-73.84zM993.42 113.844h-730.258c-16.912 0-30.58 13.615-30.58 30.398v84.171c0 16.793 13.667 30.398 30.58 30.398h730.258c16.89 0 30.58-13.605 30.58-30.398v-84.171c0-16.784-13.692-30.398-30.58-30.398zM993.42 436.045h-730.258c-16.912 0-30.58 13.605-30.58 30.408v84.172c0 16.783 13.667 30.398 30.58 30.398h730.258c16.89 0 30.58-13.615 30.58-30.398v-84.172c0-16.806-13.692-30.408-30.58-30.408zM993.42 758.257h-730.258c-16.912 0-30.58 13.604-30.58 30.388v84.172c0 16.781 13.667 30.407 30.58 30.407h730.258c16.89 0 30.58-13.626 30.58-30.407v-84.172c0-16.783-13.692-30.388-30.58-30.388zM74.278 440.283c-41.028 0-74.278 33.058-74.278 73.841 0 40.773 33.25 73.83 74.278 73.83s74.278-33.058 74.278-73.83c0-40.781-33.25-73.841-74.278-73.841v0zM74.278 762.497c-41.028 0-74.278 33.058-74.278 73.828 0 40.773 33.25 73.83 74.278 73.83s74.278-33.058 74.278-73.83c0-40.771-33.25-73.828-74.278-73.828z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ ""
+ ],
+ "defaultCode": 59816,
+ "grid": 18
+ },
+ {
+ "id": 7,
+ "paths": [
+ "M576.001 768.001h-199.112v-170.667h199.112c47.216 0 85.334 38.115 85.334 85.334s-38.115 85.334-85.334 85.334zM376.891 256.002h170.667c47.216 0 85.334 38.115 85.334 85.334s-38.115 85.334-85.334 85.334h-170.667zM695.467 500.053c55.181-38.685 93.866-101.829 93.866-158.721 0-128.569-99.557-227.556-227.556-227.556h-355.556v796.444h400.498c119.468 0 211.057-96.71 211.057-215.608 0-86.471-48.923-160.427-122.311-194.561z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "format-bold"
+ ],
+ "defaultCode": 59731,
+ "grid": 18
+ },
+ {
+ "id": 8,
+ "paths": [
+ "M40.636 182.045h94.272v282.817h188.545v-282.817h94.272v659.907h-94.272v-282.817h-188.545v282.817h-94.272v-659.907zM512 370.592h108.882l15.085-141.408h94.272l-15.085 141.408h94.272l15.085-141.408h94.272l-15.085 141.408h79.663v94.272h-89.558l-9.426 94.272h98.987v94.272h-108.882l-15.085 141.408h-94.272l15.085-141.408h-94.272l-15.085 141.408h-94.272l15.085-141.408h-79.663v-94.272h89.558l9.426-94.272h-98.987v-94.272zM705.26 464.863l-9.426 94.272h94.272l9.426-94.272h-94.272z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "format-header-pound"
+ ],
+ "defaultCode": 59732,
+ "grid": 18
+ },
+ {
+ "id": 9,
+ "paths": [
+ "M398.223 113.778v170.667h125.726l-194.561 455.11h-158.721v170.667h455.11v-170.667h-125.726l194.561-455.11h158.721v-170.667h-455.11z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "format-italic"
+ ],
+ "defaultCode": 59733,
+ "grid": 18
+ },
+ {
+ "id": 10,
+ "paths": [
+ "M301.475 558.786h654.969v-93.567h-654.969zM301.475 839.489h654.969v-93.567h-654.969zM301.475 278.087h654.969v-93.567h-654.969zM67.557 465.222h84.21l-84.21 98.244v42.105h140.349v-46.783h-84.21l84.21-98.244v-42.105h-140.349zM114.34 324.869h46.783v-187.136h-93.567v46.783h46.783zM67.557 745.921h93.567v23.39h-46.783v46.783h46.783v23.39h-93.567v46.783h140.349v-187.136h-140.349v46.783z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "format-list-numbers"
+ ],
+ "defaultCode": 59753,
+ "grid": 18
+ },
+ {
+ "id": 11,
+ "paths": [
+ "M388.467 820.826h-185.294l-123.527-247.060v-370.592h370.592v370.592h-185.294zM882.587 820.826h-185.294l-123.527-247.060v-370.592h370.592v370.592h-185.294l123.527 247.060z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "format-quote-close"
+ ],
+ "defaultCode": 59754,
+ "grid": 18
+ },
+ {
+ "id": 12,
+ "paths": [
+ "M335.013 587.851l126.421 151.704 176.987-227.556 227.556 303.408h-707.951zM967.112 865.976v-707.951c0-56.131-45.512-101.135-101.135-101.135h-707.951c-55.624 0-101.135 45.512-101.135 101.135v707.951c0 55.624 45.512 101.135 101.135 101.135h707.951c55.624 0 101.135-45.512 101.135-101.135z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "image"
+ ],
+ "defaultCode": 59756,
+ "grid": 18
+ },
+ {
+ "id": 13,
+ "paths": [
+ "M150.306 105.094h723.389c49.732 0 90.424 40.69 90.424 90.424v678.176c0 49.732-40.69 90.424-90.424 90.424h-723.389c-49.732 0-90.424-40.69-90.424-90.424v-678.176c0-49.732 40.69-90.424 90.424-90.424zM150.306 285.942v135.636h180.846v-135.636h-180.846zM421.576 285.942v135.636h180.846v-135.636h-180.846zM873.694 421.576v-135.636h-180.846v135.636h180.846zM150.306 512v135.636h180.846v-135.636h-180.846zM150.306 873.694h180.846v-135.636h-180.846v135.636zM421.576 512v135.636h180.846v-135.636h-180.846zM421.576 873.694h180.846v-135.636h-180.846v135.636zM873.694 873.694v-135.636h-180.846v135.636h180.846zM873.694 512h-180.846v135.636h180.846v-135.636z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "colorPermutations": {},
+ "tags": [
+ "table-large"
+ ],
+ "defaultCode": 59757,
+ "grid": 18
+ }
+ ],
+ "colorThemes": [],
+ "colorThemeIdx": 0
+ },
+ {
+ "selection": [
+ {
+ "id": 0,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 1,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 2,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 3,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 4,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 5,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 6,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 7,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 8,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 9,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 10,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 11,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 12,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 13,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 14,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 15,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 16,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 17,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 18,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 19,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 20,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 21,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 22,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 23,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 24,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 25,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 26,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 27,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 28,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 29,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 30,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 31,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 32,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 33,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 34,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 35,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 36,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 37,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 38,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 39,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 40,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 41,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 42,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 43,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 44,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 45,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 46,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 47,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 48,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 49,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 50,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 51,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 52,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 53,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 54,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 55,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 56,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 57,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 58,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 59,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 60,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 61,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 62,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 63,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 64,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 65,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 66,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 67,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 68,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 69,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 70,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 71,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 72,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 73,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 74,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 75,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 76,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 77,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 78,
+ "order": 0,
+ "ligatures": "",
+ "prevSize": 32
+ },
+ {
+ "id": 79,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 80,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 81,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 82,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 83,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 84,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 85,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 86,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 87,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 88,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 89,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 90,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 91,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 92,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 93,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 94,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 95,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 96,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 97,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 98,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 99,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 100,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 101,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 102,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 103,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 104,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 105,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 106,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 107,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 108,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 109,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 110,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 111,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 112,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 113,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 114,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 115,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 116,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 117,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 118,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 119,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 120,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 121,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 122,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 123,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 124,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 125,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 126,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 127,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 128,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 129,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 130,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 131,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 132,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 133,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 134,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 135,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 136,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 137,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 138,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 139,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 140,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 141,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 142,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 143,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 144,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 145,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 146,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 147,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 148,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 149,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 150,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 151,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 152,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 153,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 154,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 155,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 156,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 157,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 158,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 159,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 160,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 161,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 162,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 163,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 164,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 165,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 166,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 167,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 168,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 169,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 170,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 171,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 172,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 173,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 174,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 175,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 176,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 177,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 178,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 179,
+ "order": 0,
+ "ligatures": ""
+ },
+ {
+ "id": 180,
+ "order": 0,
+ "ligatures": ""
+ }
+ ],
+ "id": 3,
+ "metadata": {
+ "name": "OLD ZentaoIcon"
+ },
+ "height": 1024,
+ "prevSize": 32,
+ "icons": [
+ {
+ "id": 0,
+ "paths": [
+ "M898.654 315.013l-80.967 80.967-166.087-166.087 80.967-80.967c16.609-16.609 45.676-16.609 62.284 0l103.806 103.806c16.609 16.609 16.609 45.676 0 62.284zM113.889 767.601l489.959-489.959 166.087 166.087-489.959 489.959h-166.087v-166.087z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pencil"
+ ],
+ "defaultCode": 57940,
+ "grid": 0
+ },
+ {
+ "id": 1,
+ "paths": [
+ "M296.719 361.132l215.782 215.782 215.782-215.782 66.056 66.056-281.84 281.84-281.84-281.84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "angle-down"
+ ],
+ "defaultCode": 58131,
+ "grid": 0
+ },
+ {
+ "id": 2,
+ "paths": [
+ "M688.229 753.068l-66.731 66.731-284.726-284.726 284.726-284.726 66.731 66.731-217.99 217.99z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "angle-left"
+ ],
+ "defaultCode": 58132,
+ "grid": 0
+ },
+ {
+ "id": 3,
+ "paths": [
+ "M336.772 753.060l217.99-217.99-217.99-217.99 66.731-66.731 284.726 284.726-284.726 284.726z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "angle-right"
+ ],
+ "defaultCode": 58133,
+ "grid": 0
+ },
+ {
+ "id": 4,
+ "paths": [
+ "M296.715 709.026l-66.055-66.055 281.84-281.84 281.84 281.84-66.055 66.055-215.783-215.783z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "angle-top"
+ ],
+ "defaultCode": 58134,
+ "grid": 0
+ },
+ {
+ "id": 5,
+ "paths": [
+ "M366.183 712.367l482.74-482.74 64.082 64.082-546.821 546.821-254.186-254.186 64.082-64.082z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "check"
+ ],
+ "defaultCode": 58826,
+ "grid": 0
+ },
+ {
+ "id": 6,
+ "paths": [
+ "M603.614 170.635c0 51.626-39.482 91.113-91.114 91.113-51.626 0-91.113-39.487-91.113-91.113s39.487-91.113 91.113-91.113c51.626-0.003 91.114 39.482 91.114 91.113zM603.614 535.079c0 51.626-39.482 91.113-91.113 91.113s-91.109-39.487-91.109-91.113c0-51.626 39.487-91.113 91.109-91.113s91.113 39.487 91.113 91.113zM603.614 899.522c0 51.626-39.482 91.113-91.113 91.113s-91.113-39.487-91.113-91.113 39.487-91.113 91.113-91.113c51.626 0 91.113 39.482 91.113 91.113z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "ellipsis-v"
+ ],
+ "defaultCode": 58836,
+ "grid": 0
+ },
+ {
+ "id": 7,
+ "paths": [
+ "M235.782 267.758h89.802v534.635h-89.802v-534.635zM789.219 739.742l-62.651 62.651-267.32-267.32 267.32-267.32 62.651 62.651-204.664 204.664z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "first-page"
+ ],
+ "defaultCode": 58844,
+ "grid": 0
+ },
+ {
+ "id": 8,
+ "paths": [
+ "M699.413 267.758h89.803v534.637h-89.803v-534.637zM235.782 330.414l62.652-62.652 267.32 267.32-267.32 267.32-62.652-62.652 204.665-204.665z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "last-page"
+ ],
+ "defaultCode": 58845,
+ "grid": 0
+ },
+ {
+ "id": 9,
+ "paths": [
+ "M693.687 522.138v25.882c0 7.282-5.661 12.942-12.942 12.942h-142.363v142.363c0 7.282-5.661 12.942-12.942 12.942h-25.882c-7.282 0-12.942-5.661-12.942-12.942v-142.363h-142.363c-7.282 0-12.942-5.661-12.942-12.942v-25.882c0-7.282 5.661-12.942 12.942-12.942h142.363v-142.363c0-7.282 5.661-12.942 12.942-12.942h25.882c7.282 0 12.942 5.661 12.942 12.942v142.363h142.363c7.282 0 12.942 5.661 12.942 12.942zM745.455 703.325v-336.492c0-35.59-29.12-64.709-64.709-64.709h-336.492c-35.59 0-64.709 29.12-64.709 64.709v336.492c0 35.59 29.12 64.709 64.709 64.709h336.492c35.59 0 64.709-29.12 64.709-64.709zM797.226 366.833v336.492c0 64.307-52.172 116.48-116.48 116.48h-336.492c-64.307 0-116.48-52.172-116.48-116.48v-336.492c0-64.307 52.172-116.48 116.48-116.48h336.492c64.307 0 116.48 52.172 116.48 116.48z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "expand-alt"
+ ],
+ "defaultCode": 59121,
+ "grid": 0
+ },
+ {
+ "id": 10,
+ "paths": [
+ "M693.682 522.134v25.878c0 7.28-5.664 12.945-12.945 12.945h-336.493c-7.28 0-12.945-5.664-12.945-12.945v-25.878c0-7.28 5.664-12.945 12.945-12.945h336.493c7.28 0 12.945 5.664 12.945 12.945zM745.454 703.327v-336.493c0-35.588-29.121-64.711-64.711-64.711h-336.493c-35.588 0-64.711 29.121-64.711 64.711v336.493c0 35.588 29.121 64.711 64.711 64.711h336.493c35.588 0 64.711-29.121 64.711-64.711zM797.226 366.83v336.493c0 64.305-52.179 116.483-116.483 116.483h-336.493c-64.305 0-116.483-52.179-116.483-116.483v-336.493c0-64.305 52.179-116.483 116.483-116.483h336.493c64.305 0 116.483 52.179 116.483 116.483z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "collapse-alt"
+ ],
+ "defaultCode": 59122,
+ "grid": 0
+ },
+ {
+ "id": 11,
+ "paths": [
+ "M584.647 808.435h-73.227v-424.351l-173.182 419.774h-91.9l-173.145-419.774v424.351h-73.227v-549.607h100.76l191.562 464.333 191.562-464.333h100.796zM1882.232 481.622h352.588v73.227h-352.588v-73.227zM934.966 332.496c111.048 0 201.376 90.326 201.376 201.376s-90.326 201.376-201.376 201.376-201.376-90.326-201.376-201.376 90.326-201.376 201.376-201.376zM934.966 259.268c-151.653 0-274.602 122.948-274.602 274.602s122.948 274.602 274.602 274.602 274.602-122.948 274.602-274.602c0-151.653-122.948-274.602-274.602-274.602v0zM1282.318 262.124h73.227v549.203h-73.227v-549.203zM1318.932 262.124h262.591v73.227h-262.591v-73.227zM1318.932 518.418h262.591v73.227h-262.591v-73.227zM1578.852 262.124v73.227c50.453 0 91.534 41.080 91.534 91.534s-41.080 91.534-91.534 91.534v73.227c90.985 0 164.761-73.776 164.761-164.761s-73.776-164.761-164.761-164.761zM1766.827 808.472l-239.27-272.587-55.031 48.329 196.871 224.258zM2271.251 808.472h-441.486v-546.348h441.486v73.227h-368.26v399.893h368.26z"
+ ],
+ "width": 2271,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "more"
+ ],
+ "defaultCode": 59204,
+ "grid": 0
+ },
+ {
+ "id": 12,
+ "paths": [
+ "M698.664 758.476v-280.343c0-116.078-70.085-210.257-186.164-210.257s-186.164 94.179-186.164 210.257v280.343h372.329zM792.843 710.293l94.179 94.179v45.992h-749.037v-45.992l94.179-94.179v-232.156c0-144.552 76.656-262.82 210.257-295.673v-32.854c0-39.423 30.662-70.085 70.085-70.085s70.085 30.662 70.085 70.085v32.854c133.602 32.854 210.257 153.312 210.257 295.673v232.156zM512.5 990.635c-50.374 0-94.179-41.613-94.179-91.986h188.354c0 50.374-43.805 91.986-94.179 91.986z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bell"
+ ],
+ "defaultCode": 59381,
+ "grid": 0
+ },
+ {
+ "id": 13,
+ "paths": [
+ "M512.5 900.806c201.043 0 365.727-164.684 365.727-365.727s-164.684-365.727-365.727-365.727-365.727 164.684-365.727 365.727 164.684 365.727 365.727 365.727zM512.5 79.522c252.373 0 455.557 203.182 455.557 455.557s-203.182 455.557-455.557 455.557-455.557-203.182-455.557-455.557 203.182-455.557 455.557-455.557z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "circle"
+ ],
+ "defaultCode": 59446,
+ "grid": 0
+ },
+ {
+ "id": 14,
+ "paths": [
+ "M871.009 258.023c0 0 76.846 119.775 42.783 221.476-22.852 68.256-105.811 92.233-172.162 70.159-103.050-34.269-230.868-148.851-370.539-43.514-118.097 89.093-68.862 244.463 15.457 296.228 63.174 38.788 151.284 50.954 202.745 5.144 41.272-36.773 63.754-132.581-5.796-165.451-23.696-11.212-70.359-13.692-96.022 17.593-33.536 40.9-20.768 98.092 25.663 116.191 0 0-83.005-4.31-94.034-94.092-18.762-152.755 168.211-177.951 256.863-120.673 159.491 103.006 102.937 336.406-134.306 378.877-120.195 21.523-318.765-21.735-397.467-189.874-29.496-63.037-21.466-52.231-21.466-52.231s10.459 12.192 27.882 25.404c56.405 42.922 108.988 4.001 96.207-52.454-43.93-194.132 29.93-227.016 75.104-263.371 45.241-36.306 27.387-104.317-61.514-89.387-124.627 20.949-157.546 210.168-157.546 210.168s-20.547-321.472 248.794-349.625c274.724-28.682 314.027 223.898 434.126 262.168 80.066 25.513 108.476-35.4 85.228-182.737z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "zentao-alt"
+ ],
+ "defaultCode": 59648,
+ "grid": 0
+ },
+ {
+ "id": 15,
+ "paths": [
+ "M512.5 1047.579c-283.046 0-512.5-229.454-512.5-512.5s229.454-512.5 512.5-512.5c283.046 0 512.5 229.454 512.5 512.5s-229.454 512.5-512.5 512.5zM871.009 258.023c23.248 147.338-5.162 208.25-85.228 182.737-120.099-38.27-159.402-290.85-434.126-262.168-269.342 28.153-248.794 349.625-248.794 349.625s32.919-189.219 157.546-210.168c88.901-14.93 106.755 53.080 61.514 89.387-45.173 36.356-119.034 69.239-75.104 263.371 12.781 56.455-39.802 95.377-96.207 52.454-17.423-13.212-27.882-25.404-27.882-25.404s-8.030-10.806 21.466 52.231c78.702 168.139 277.272 211.397 397.467 189.874 237.242-42.471 293.797-275.871 134.306-378.877-88.652-57.278-275.625-32.082-256.863 120.673 11.029 89.782 94.034 94.092 94.034 94.092-46.431-18.1-59.198-75.292-25.663-116.191 25.663-31.286 72.326-28.805 96.022-17.593 69.55 32.869 47.069 128.678 5.796 165.451-51.461 45.809-139.57 33.644-202.745-5.144-84.319-51.766-133.554-207.135-15.457-296.228 139.67-105.337 267.489 9.245 370.539 43.514 66.352 22.074 149.31-1.904 172.162-70.159 34.062-101.701-42.783-221.476-42.783-221.476z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "zentao"
+ ],
+ "defaultCode": 59649,
+ "grid": 0
+ },
+ {
+ "id": 16,
+ "paths": [
+ "M517.009 1042.352c260.365-9.218 422.508-219.656 422.576-390.923s-87.089-335.945-208.859-441.672c8.014 13.135 41.16 122.087-19.513 177.763-42.523-178.681-171.239-332.591-273.457-360.073 2.744 90.702-38.359 305.15-189.775 450.006-4.125-10.35 1.704-102.814-40.065-160.422-6.163 113.218-120.446 207.267-122.481 385.922s171.209 348.616 431.574 339.398z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "severity-solid"
+ ],
+ "defaultCode": 59650,
+ "grid": 0
+ },
+ {
+ "id": 17,
+ "paths": [
+ "M113.889 933.69h911.112v113.889h-1025.001v-1025.001h113.889v911.112zM227.778 364.245h113.889v455.556h-113.889v-455.556zM455.556 136.467h113.889v683.334h-113.889v-683.334zM683.334 250.356h113.889v569.445h-113.889v-569.445zM911.112 79.523h113.889v740.279h-113.889v-740.279z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bar-chart"
+ ],
+ "defaultCode": 59651,
+ "grid": 0
+ },
+ {
+ "id": 18,
+ "paths": [
+ "M455.557 592.022h-170.833l227.778 227.778 227.778-227.778h-170.833v-569.445h-113.889v569.445zM341.668 307.3h-341.667v740.279h1025.001v-740.279h-341.667v113.889h227.778v512.5h-797.223v-512.5h227.778v-113.889z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "import"
+ ],
+ "defaultCode": 59652,
+ "grid": 0
+ },
+ {
+ "id": 19,
+ "paths": [
+ "M569.445 250.356h170.834l-227.778-227.778-227.778 227.778h170.834v512.5h113.889v-512.5zM341.667 364.245h-341.667v683.334h1025.001v-683.334h-341.667v113.889h227.778v455.556h-797.223v-455.556h227.778v-113.889z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "export"
+ ],
+ "defaultCode": 59653,
+ "grid": 0
+ },
+ {
+ "id": 20,
+ "paths": [
+ "M968.056 193.412h-227.778v-56.945c0-31.448-25.497-56.945-56.945-56.945h-341.667c-31.448 0-56.945 25.497-56.945 56.945v56.945h-227.778c-31.448 0-56.945 25.497-56.945 56.945v455.556c0 31.448 25.497 56.945 56.945 56.945h113.889v170.834c0 31.448 25.497 56.945 56.945 56.945h569.445c31.448 0 56.945-25.497 56.945-56.945v-170.834h113.889c31.448 0 56.945-25.497 56.945-56.945v-455.556c0-31.448-25.497-56.945-56.945-56.945zM740.279 876.745h-455.556v-227.778h455.556v227.778zM911.112 620.495c0 15.738-12.734 28.472-28.472 28.472h-28.472v-56.945c0-31.448-25.497-56.945-56.945-56.945h-569.445c-31.448 0-56.945 25.497-56.945 56.945v56.945h-28.472c-15.738 0-28.472-12.734-28.472-28.472v-284.722c0-15.738 12.734-28.472 28.472-28.472h740.279c15.738 0 28.472 12.734 28.472 28.472v284.722z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "printer"
+ ],
+ "defaultCode": 59654,
+ "grid": 0
+ },
+ {
+ "id": 21,
+ "paths": [
+ "M310.129 863.604h338.381c16.329 0 29.568-13.238 29.568-29.568v-23.435c0-3.386-2.746-6.133-6.133-6.133v-78.846h44.68c3.386 0 6.133-2.746 6.133-6.133v-46.87c0-3.386-2.746-6.133-6.133-6.133v-78.846h44.68c3.386 0 6.133-2.746 6.133-6.133v-46.87c0-3.386-2.746-6.133-6.133-6.133v-78.846h155.284c16.329 0 29.568-13.238 29.568-29.568s-13.238-29.568-29.568-29.568h-551.266v-156.379c0-15.241-12.355-27.596-27.596-27.596s-27.596 12.355-27.596 27.596v629.456zM756.924 810.603v23.435c0 59.875-48.538 108.414-108.414 108.414h-417.228v-708.302c0-58.786 47.655-106.442 106.442-106.442s106.442 47.655 106.442 106.442v77.532h472.42c59.875 0 108.414 48.538 108.414 108.414s-48.538 108.414-108.414 108.414h-70.522c0.144 2.025 0.217 4.070 0.217 6.133v46.87c0 32.921-18.719 61.469-46.095 75.581 0.93 5.036 1.416 10.226 1.416 15.53v46.87c0 32.921-18.719 61.469-46.095 75.581 0.93 5.036 1.416 10.226 1.416 15.53zM106.442 390.527c-15.241 0-27.596 12.355-27.596 27.596v417.884c0 15.241 12.355 27.596 27.596 27.596s27.596-12.355 27.596-27.596v-417.884c0-15.241-12.355-27.596-27.596-27.596zM106.442 311.682c58.786 0 106.442 47.655 106.442 106.442v417.884c0 58.786-47.655 106.442-106.442 106.442s-106.442-47.655-106.442-106.442v-417.884c0-58.786 47.655-106.442 106.442-106.442z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hand-right"
+ ],
+ "defaultCode": 59655,
+ "grid": 0
+ },
+ {
+ "id": 22,
+ "paths": [
+ "M781.659 76.176h-677.359c-25.344 0-45.89 20.546-45.89 45.89v0 826.025c0 25.344 20.546 45.89 45.89 45.89h826.025c25.344 0 45.89-20.546 45.89-45.89v-547.281l-91.781 91.781v409.611h-734.244v-734.244h539.688l91.781-91.781zM531.381 484.188l-161.143-161.143-96.642 96.642 263.118 263.118 486.818-486.818-101.976-101.976-390.175 390.175z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "checked"
+ ],
+ "defaultCode": 59656,
+ "grid": 0
+ },
+ {
+ "id": 23,
+ "paths": [
+ "M896.267 221.747v718.955h-767.54v-718.955h189.454v-106.871h-194.31c-56.341 0-102.013 45.67-102.013 102.013v728.676c0 56.341 45.67 102.013 102.013 102.013h777.251c56.341 0 102.013-45.67 102.013-102.013v-728.676c0-56.341-45.67-102.013-102.013-102.013h-194.31v106.871h189.454zM446.331 22.577h145.734v534.357h-145.734v-534.357z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "off"
+ ],
+ "defaultCode": 59657,
+ "grid": 0
+ },
+ {
+ "id": 24,
+ "paths": [
+ "M102.505 125.083v820h820v-820h-820zM102.505 22.581h820c56.61 0 102.501 45.891 102.501 102.501v820c0 56.61-45.891 102.501-102.501 102.501h-820c-56.61 0-102.501-45.891-102.501-102.501v-820c0-56.61 45.891-102.501 102.501-102.501zM733.978 556.809l-336.027 210.015c-12.001 7.499-27.806 3.854-35.312-8.147-2.543-4.072-3.894-8.778-3.894-13.582v-420.030c0-14.149 11.474-25.624 25.624-25.624 4.798 0 9.51 1.35 13.582 3.894l336.027 210.015c12.001 7.499 15.644 23.312 8.147 35.312-2.059 3.299-4.849 6.088-8.147 8.147z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "start",
+ "play"
+ ],
+ "defaultCode": 59658,
+ "grid": 0
+ },
+ {
+ "id": 25,
+ "paths": [
+ "M102.5 125.078v820h820v-820h-820zM102.5 22.579h820c56.609 0 102.5 45.891 102.5 102.5v820c0 56.609-45.891 102.5-102.5 102.5h-820c-56.609 0-102.5-45.891-102.5-102.5v-820c0-56.609 45.891-102.5 102.5-102.5zM486.875 547.89v-269.063h-128.124v269.063h-0.427v128.124h358.749v-128.124h-230.197z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "time"
+ ],
+ "defaultCode": 59659,
+ "grid": 0
+ },
+ {
+ "id": 26,
+ "paths": [
+ "M744.080 87.677l-94.816 94.816h-554.447v758.525h758.525v-522.706l94.816-94.816v664.93c0 26.183-21.225 47.407-47.407 47.407h-853.341c-26.183 0-47.407-21.225-47.407-47.407v-853.341c0-26.183 21.225-47.407 47.407-47.407v0h696.674zM908.276 88.27l39.286 39.286c-3.215-20.155-19.132-36.071-39.286-39.286zM473.015 711.997l-172.761 53c-2.502 0.768-5.154-0.639-5.922-3.141-0.278-0.908-0.278-1.874 0-2.781l53-172.761 435.779-435.779 125.685 125.685-435.779 435.779zM937.847 247.165l-125.685-125.685 87.156-87.156 125.685 125.685-87.156 87.156z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "edit"
+ ],
+ "defaultCode": 59660,
+ "grid": 0
+ },
+ {
+ "id": 27,
+ "paths": [
+ "M838.637 488.487v465.907h-652.278v-465.907h-93.181v465.907c0 51.462 41.715 93.181 93.181 93.181h652.278c51.462 0 93.181-41.715 93.181-93.181v-465.907h-93.181zM372.735 581.669h69.886v279.544h-69.886v-279.544zM582.387 581.669h69.886v279.544h-69.886v-279.544zM931.817 219.023c0-5.148-4.175-9.328-9.328-9.328h-281.724v-84.627c0-5.148-4.175-9.328-9.328-9.328h-237.76c-5.148 0-9.328 4.175-9.328 9.328v84.627h-281.868c-5.148 0-9.328 4.175-9.328 9.328v83.109h838.636v-83.109zM922.499 116.531c56.609 0 102.5 45.89 102.5 102.5v176.283h-1025.005v-176.283c0-56.609 45.89-102.5 102.5-102.5h189.043c4.355-52.597 48.417-93.944 102.154-93.944h237.76c53.727 0 97.802 41.336 102.154 93.944h188.898z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "trash"
+ ],
+ "defaultCode": 59661,
+ "grid": 0
+ },
+ {
+ "id": 28,
+ "paths": [
+ "M599.827 569.050c65.288 21.117 139.809 5.751 191.659-46.101l121.299-121.299c73.692-73.692 73.692-193.169 0-266.859v0c-73.692-73.692-193.169-73.692-266.859 0v0l-121.299 121.299c-51.851 51.851-67.219 126.371-46.101 191.659l59.456-59.456c0.307-30.323 12.030-60.547 35.163-83.685v0l121.299-121.299c46.895-46.895 122.925-46.895 169.82 0v0c46.895 46.895 46.895 122.925 0 169.82l-121.299 121.299c-23.135 23.135-53.362 34.858-83.685 35.163l-59.456 59.456zM425.172 501.107c-65.288-21.117-139.809-5.751-191.659 46.101v0l-121.299 121.299c-73.692 73.692-73.692 193.169 0 266.859s193.169 73.692 266.859 0l121.299-121.299c51.851-51.851 67.219-126.371 46.101-191.659l-59.456 59.456c-0.307 30.323-12.030 60.547-35.163 83.685l-121.299 121.299c-46.895 46.895-122.925 46.895-169.82 0v0 0c-46.895-46.895-46.895-122.925 0-169.82l121.299-121.299c23.135-23.135 53.362-34.858 83.685-35.163l59.456-59.456zM282.029 692.767l388.157-388.157 72.781 72.781-388.157 388.157-72.781-72.781z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "link"
+ ],
+ "defaultCode": 59662,
+ "grid": 0
+ },
+ {
+ "id": 29,
+ "paths": [
+ "M649.923 668.112l-4.389 4.389v-4.389h4.389zM822.042 495.993l89.999-89.999c74.686-74.686 74.686-195.773 0-270.459v0c-74.686-74.686-195.773-74.686-270.459 0l-89.999 89.999v108.184l144.91-144.91c44.811-44.811 117.466-44.811 162.275 0v0c44.811 44.811 44.811 117.466 0 162.275l-144.91 144.91h108.184zM473.415 844.62l-89.999 89.999c-74.686 74.686-195.773 74.686-270.459 0s-74.686-195.773 0-270.459v0l89.999-89.999h108.184l-144.91 144.91c-44.811 44.811-44.811 117.466 0 162.275s117.466 44.811 162.275 0l144.91-144.91v108.184zM379.465 397.654l-4.389 4.389h4.389v-4.389zM359.978 384.006h-187.476v114.745h243.979c25.035 0 46.325-16.035 54.16-38.394 2.635-6.584 4.083-13.771 4.083-21.296v-243.979h-114.745v188.926zM663.571 687.6v187.476h-114.745v-243.979c0-25.035 16.035-46.325 38.394-54.16 6.584-2.635 13.771-4.083 21.296-4.083h243.979v114.745h-188.926z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "unlink"
+ ],
+ "defaultCode": 59663,
+ "grid": 0
+ },
+ {
+ "id": 30,
+ "paths": [
+ "M839.737 908.58l-436.316-159.982v-426.62l436.316-159.982v746.586zM185.264 748.597v-426.62h109.079v426.62h-109.079zM306.254 215.321h-176.742c-29.452 0-53.328 23.875-53.328 53.328v533.276c0 29.452 23.875 53.328 53.328 53.328h188.479l560.415 189.502c27.901 9.433 58.166-5.535 67.599-33.436 1.861-5.505 2.81-11.273 2.81-17.082v-918.331c0-29.452-23.875-53.328-53.328-53.328-5.71 0-11.382 0.918-16.802 2.716l-572.432 190.029z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bullhorn"
+ ],
+ "defaultCode": 59664,
+ "grid": 0
+ },
+ {
+ "id": 31,
+ "paths": [
+ "M298.96 677.617v-270.664h427.083v270.558c-0.146 117.685-91.786 199.235-212.737 199.235-120.987 0-214.2-81.55-214.346-199.128zM408.757 193.41h205.036l73.507 127.805h-349.708l71.164-127.805zM811.459 677.617v-57.122h170.833c23.587 0 42.708-19.121 42.708-42.708v-0.641c0-23.587-19.121-42.708-42.708-42.708h-170.833v-143.521l133.742-90.769c11.711-7.949 18.724-21.183 18.724-35.339v-114.137c0-23.569-19.108-42.677-42.677-42.677v0 0c-23.569 0-42.677 19.108-42.677 42.677v81.31l-108.37 80.724-99.146-182.399c-7.474-13.75-21.872-22.312-37.523-22.312h-244.169c-16.162 0-30.94 9.124-38.181 23.573l-90.943 181.458-114.067-81.044v-81.311c0-23.569-19.106-42.676-42.676-42.676v0 0c-23.569 0-42.676 19.106-42.676 42.676v112.961c0 14.078 6.937 27.251 18.544 35.214l134.175 92.070v144.162l-170.706-0.511c-23.587-0.071-42.766 18.993-42.837 42.581 0 0.042 0 0.085 0 0.127v0.513c0 23.587 19.121 42.708 42.708 42.708h170.833v57.122c0 6.373 0.586 12.604 0.988 18.908l-124.385 92.698c-10.816 8.060-17.188 20.756-17.188 34.244v95.986c0 23.587 19.121 42.708 42.708 42.708h13.154c23.587 0 42.708-19.121 42.708-42.708v-62.998l84.722-65.128c40.487 110.137 129.919 170.833 257.056 170.833 126.698 0 216.116-61.267 256.897-170.833l84.868 64.059v64.067c0 23.587 19.121 42.708 42.708 42.708h11.3c23.587 0 42.708-19.121 42.708-42.708v-95.848c0-13.567-6.445-26.326-17.366-34.376l-124.060-91.458c0.475-6.694 1.061-13.353 1.098-20.155z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bug"
+ ],
+ "defaultCode": 59665,
+ "grid": 0
+ },
+ {
+ "id": 32,
+ "paths": [
+ "M205 586.328h102.5v-102.5h-102.5zM410 586.328h410v-102.5h-410zM205 791.329h102.5v-102.5h-102.5zM410 791.329h410v-102.5h-410zM102.5 945.079v-615.001h820v615.001h-820zM102.5 227.578v-102.5h820v102.5h-820zM102.5 1047.578h820c56.609 0 102.5-45.891 102.5-102.5v-820c0-56.609-45.891-102.5-102.5-102.5h-820c-56.609 0-102.5 45.891-102.5 102.5v820c0 56.609 45.891 102.5 102.5 102.5z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "list-alt"
+ ],
+ "defaultCode": 59666,
+ "grid": 0
+ },
+ {
+ "id": 33,
+ "paths": [
+ "M626.389 79.524l130.404 130.404-164 164 80.86 80.86 164-164 130.404 130.404v-341.668zM398.612 79.524h-341.668v341.668l130.404-130.404 268.206 267.638v432.205h113.888v-478.904l-301.235-301.806z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fork"
+ ],
+ "defaultCode": 59667,
+ "grid": 0
+ },
+ {
+ "id": 34,
+ "paths": [
+ "M640.521 874.564v-256.279h298.993v256.279h-298.993zM85.248 874.564v-256.279h298.993v256.279h-298.993zM695.577 107.946l-140.099 131.643 58.475 62.276 80.557-75.688 207.373 306.68h-261.362c-47.18 0-85.427 38.246-85.427 85.427v0h-85.427c0-47.18-38.246-85.427-85.427-85.427h-261.32l207.33-306.68 80.557 75.688 58.475-62.276-140.057-131.643-328.806 424.911-0.478 341.587c-0.066 47.18 38.126 85.479 85.307 85.546 0.040 0 0.080 0 0.12 0h298.874c47.18 0 85.427-38.246 85.427-85.427v-170.853h85.427v170.853c0 47.18 38.246 85.427 85.427 85.427h298.993c47.18 0 85.427-38.246 85.427-85.427v-341.707l-329.362-424.911z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "glasses"
+ ],
+ "defaultCode": 59668,
+ "grid": 0
+ },
+ {
+ "id": 35,
+ "paths": [
+ "M652.273 907.807v-372.634h279.546v372.634h-279.546zM93.182 907.807v-372.634h279.546v372.634h-279.546zM843.762 441.991v-372.821h-656.001v372.821h-141.171c-25.731 0-46.59 20.859-46.59 46.59v465.817c0 25.731 20.859 46.59 46.59 46.59h372.728c25.731 0 46.59-20.859 46.59-46.59v-465.817c0-25.731-20.859-46.59-46.59-46.59h-138.375v-279.639h469.637v279.639h-144.899c-25.731 0-46.59 20.859-46.59 46.59v465.817c0 25.731 20.859 46.59 46.59 46.59h372.728c25.731 0 46.59-20.859 46.59-46.59v-465.817c0-25.731-20.859-46.59-46.59-46.59h-134.647z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sitemap"
+ ],
+ "defaultCode": 59669,
+ "grid": 0
+ },
+ {
+ "id": 36,
+ "paths": [
+ "M102.5 125.078v820h820v-820h-820zM106.56 22.579h811.882c58.851 0 106.559 50.521 106.559 112.844v799.313c0 62.321-47.708 112.844-106.559 112.844h-811.882c-58.851 0-106.559-50.521-106.559-112.844v-799.313c0-62.321 47.708-112.844 106.559-112.844zM461.251 278.828h102.5v512.499h-102.5v-512.499zM768.751 483.829v102.5h-512.499v-102.5h512.499z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "plus-sign"
+ ],
+ "defaultCode": 59670,
+ "grid": 0
+ },
+ {
+ "id": 37,
+ "paths": [
+ "M102.5 125.078v820h820v-820h-820zM106.56 22.579h811.882c58.851 0 106.559 50.521 106.559 112.844v799.313c0 62.321-47.708 112.844-106.559 112.844h-811.882c-58.851 0-106.559-50.521-106.559-112.844v-799.313c0-62.321 47.708-112.844 106.559-112.844zM358.75 432.578h102.5v410h-102.5v-410zM615.001 586.328v102.5h-410v-102.5h410zM615.001 227.578h102.5v307.5h-102.5v-307.5zM820.001 330.079v102.5h-307.5v-102.5h307.5z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pluses"
+ ],
+ "defaultCode": 59671,
+ "grid": 0
+ },
+ {
+ "id": 38,
+ "paths": [
+ "M931.992 594.795c0 0-70.779 33.813-112.4 33.813-164.849 0-212.931-113.083-426.541-113.083-130.257 0-209.035 37.958-300.043 74.799v-382.004c69.011-34.139 161.089-92.591 300.043-92.591 166.187 0 214.113 122.166 426.541 122.166 39.947 0 78.452-4.145 112.4-9.875 0 244.517 0 366.775 0 366.775zM393.052 22.578c-224.894 0-393.052 129.897-393.052 129.897v848.6c0 25.683 20.821 46.504 46.504 46.504v0 0c25.683 0 46.504-20.821 46.504-46.504v-309.45c83.521-37.213 166.531-82.949 300.043-82.949 214.294 0 262.274 113.083 426.541 113.083s205.409-75.963 205.409-75.963v-536.913c0 0-97.287 35.863-205.409 35.863-213.175 0-261.769-122.166-426.541-122.166z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "flag-alt"
+ ],
+ "defaultCode": 59672,
+ "grid": 0
+ },
+ {
+ "id": 39,
+ "paths": [
+ "M109.86 876.922l486.485-486.485 60.81 60.81-484.991 483.549-62.305-57.875zM570.3 294.857l-556.001 556.001c-14.394 14.394-14.394 37.73 0 52.123l130.308 130.308c14.394 14.394 37.73 14.394 52.123 0l555.98-555.984c14.393-14.393 14.394-37.727 0.003-52.121l-130.288-130.327c-14.391-14.395-37.728-14.398-52.123-0.005-0.001 0.001-0.001 0.001-0.003 0.003zM925.407 163.552l-156.385 156.385-52.15-52.186 156.349-156.385 52.186 52.186zM677.128 620.284l52.186-52.186 156.349 156.385-52.186 52.186-156.349-156.385zM796.82 500.766v-73.787h221.141v73.787h-221.141zM468.928 307.74l-52.186 52.186-156.349-156.385 52.15-52.186 156.385 156.385zM536.281 240.225v-221.141h73.787v221.141h-73.787z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "magic"
+ ],
+ "defaultCode": 59673,
+ "grid": 0
+ },
+ {
+ "id": 40,
+ "paths": [
+ "M42.794 791.261c-23.587 0-42.708-19.122-42.708-42.708v-341.539c0-23.587 19.122-42.708 42.708-42.708h341.668c23.587 0 42.708 19.122 42.708 42.708v341.539c0 23.587-19.122 42.708-42.708 42.708h-341.668zM85.501 705.844h256.25v-256.123h-256.25v256.123zM637.978 449.721c-23.587 0-42.708-19.122-42.708-42.708v-341.582c0-23.587 19.122-42.708 42.708-42.708h341.668c23.587 0 42.708 19.122 42.708 42.708v341.582c0 23.587-19.122 42.708-42.708 42.708h-341.668zM680.686 364.304h256.25v-256.165h-256.25v256.165zM637.978 1047.725c-23.587 0-42.708-19.122-42.708-42.708v-341.539c0-23.587 19.122-42.708 42.708-42.708h341.668c23.587 0 42.708 19.122 42.708 42.708v341.539c0 23.587-19.122 42.708-42.708 42.708h-341.668zM680.686 962.308h256.25v-256.123h-256.25v256.123zM640.626 791.329l-256.25-298.959 1.606 133.879 254.646 293.206zM640.626 107.994l-256.25 384.375v128.125l256.25-363.022z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "treemap"
+ ],
+ "defaultCode": 59674,
+ "grid": 0
+ },
+ {
+ "id": 41,
+ "paths": [
+ "M207.72 327.36h69.24v-69.24h-69.24zM346.199 327.36h323.117v-69.24h-323.117zM207.72 465.839h69.24v-69.24h-69.24zM346.199 465.839h323.117v-69.24h-323.117zM877.034 329.521v-163.72c0-50.987-41.332-92.32-92.32-92.32h-692.394c-50.987 0-92.32 41.332-92.32 92.32v0 738.554c0 50.987 41.332 92.32 92.32 92.32h692.394c50.987 0 92.32-41.332 92.32-92.32v-183.157l-90.68 90.68-1.641-1.641v94.118h-692.394v-738.554h692.394v256.039l92.32-92.32zM629.031 693.562l-129.65-129.65-77.755 77.755 211.697 211.697 391.677-391.677-82.046-82.046-313.923 313.923z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "confirm"
+ ],
+ "defaultCode": 59675,
+ "grid": 0
+ },
+ {
+ "id": 42,
+ "paths": [
+ "M604.614 812.049h-176.007c-12.337-85.624-54.691-167.588-122.671-234.944-56.485-55.9-85.99-129.7-83.061-207.856 5.454-148.333 135.007-270.967 288.831-273.42l5.051-0.036c162.133 0 294.066 127.357 294.066 283.889 0 75.63-30.568 146.722-86.137 200.205-66.661 64.392-108.175 145.403-120.071 232.163zM550.252 974.366h-67.064l-42.061-84.527h151.224l-42.099 84.527zM510.46 22.651c-191.712 3.038-353.883 157.558-360.727 343.889-3.88 102.426 36.9 195.482 104.66 262.583 64.137 63.587 104.952 145.88 104.952 234.944v25.771l43.367 87.118c21.54 43.27 65.71 70.623 114.044 70.623v0 0c48.332 0 92.5-27.357 114.030-70.629l43.343-87.111v-26.064c0-87.271 37.67-169.675 101.402-231.211 66.991-64.502 108.504-153.896 108.504-252.882 0-197.203-164.44-357.103-367.281-357.103-2.087 0-4.173 0.036-6.296 0.074zM340.523 390.502h73.214c0-56.009 45.539-101.548 101.548-101.548v-73.214c-96.35 0-174.764 78.377-174.764 174.764z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "lightbulb"
+ ],
+ "defaultCode": 59676,
+ "grid": 0
+ },
+ {
+ "id": 43,
+ "paths": [
+ "M128.125 150.703h768.751c70.762 0 128.125 57.363 128.125 128.125v640.626c0 70.762-57.363 128.125-128.125 128.125h-768.751c-70.762 0-128.125-57.363-128.125-128.125v-640.626c0-70.762 57.363-128.125 128.125-128.125v0zM160.156 246.797c-35.381 0-64.063 28.682-64.063 64.063v576.563c0 35.381 28.682 64.063 64.063 64.063h704.688c35.381 0 64.063-28.682 64.063-64.063v-576.563c0-35.381-28.682-64.063-64.063-64.063h-704.688zM704.688 727.266v64.063h-384.374v-64.063h384.374zM704.688 535.078v64.063h-384.374v-64.063h384.374zM640.626 22.578h128.125v384.374h-128.125v-384.374zM256.249 22.578h128.125v384.374h-128.125v-384.374z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "delay",
+ "calendar"
+ ],
+ "defaultCode": 59677,
+ "grid": 0
+ },
+ {
+ "id": 44,
+ "paths": [
+ "M102.5 125.078v820h820v-820h-820zM106.56 22.579h811.882c58.851 0 106.559 50.521 106.559 112.844v799.313c0 62.321-47.708 112.844-106.559 112.844h-811.882c-58.851 0-106.559-50.521-106.559-112.844v-799.313c0-62.321 47.708-112.844 106.559-112.844zM281.875 304.453h153.75v461.25h-153.75v-461.25zM589.376 304.453h153.75v461.25h-153.75v-461.25z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pause"
+ ],
+ "defaultCode": 59678,
+ "grid": 0
+ },
+ {
+ "id": 45,
+ "paths": [
+ "M93.009 115.587v831.39h831.39v-831.39h-831.39zM93.009 18.781h831.39c53.464 0 96.806 43.341 96.806 96.806v831.39c0 53.464-43.341 96.806-96.806 96.806h-831.39c-53.464 0-96.806-43.341-96.806-96.806v-831.39c0-53.464 43.341-96.806 96.806-96.806zM923.648 27.701l85.901 85.901-901.955 901.955-85.901-85.901z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "ban"
+ ],
+ "defaultCode": 59679,
+ "grid": 0
+ },
+ {
+ "id": 46,
+ "paths": [
+ "M1025.006 432.579v205h-1025.001v-205h1025.001zM409.999 22.573h205v1025.001h-205v-1025.001z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "plus-bold"
+ ],
+ "defaultCode": 59680,
+ "grid": 0
+ },
+ {
+ "id": 47,
+ "paths": [
+ "M536.835 925.553h-390.408c-26.956 0-48.812-21.851-48.812-48.812v-585.716c0-26.956 21.851-48.812 48.812-48.812h97.619v195.239c0 53.914 43.706 97.619 97.619 97.619h243.978v341.668c0 26.956-21.851 48.812-48.812 48.812zM341.751 242.223l195.157 194.895-146.323 0.257c-26.956 0.046-48.847-21.768-48.898-48.724 0-0.035 0-0.071 0-0.106l0.061-146.323zM380.165 144.604h-282.547c-53.914 0-97.619 43.706-97.619 97.619v683.335c0 53.914 43.706 97.619 97.619 97.619h488.098c53.914 0 97.619-43.706 97.619-97.619v-486.498l-303.166-294.456zM1024.999 291.032l-292.853-244.041h-122.024l414.878 366.065zM732.144 242.223v-195.239h-195.239c-53.914 0-97.619 43.706-97.619 97.619v0l97.619 97.619-0.139-48.672c-0.076-26.956 21.714-48.872 48.672-48.949 0.046 0 0.093 0 0.139 0h48.949v146.43c0 53.914 43.706 97.619 97.619 97.619v0h195.239v341.668c0 26.956-21.851 48.812-48.812 48.812h-146.43v97.619h195.239c53.914 0 97.619-43.706 97.619-97.619v-488.098h-244.047c-26.956 0-48.812-21.851-48.812-48.812z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "copy"
+ ],
+ "defaultCode": 59681,
+ "grid": 0
+ },
+ {
+ "id": 48,
+ "paths": [
+ "M114.731 623.708c40.303 177.613 199.142 310.205 388.951 310.205s348.648-132.591 388.951-310.205h-91.592c-38.135 128.136-156.835 221.575-297.358 221.575s-259.223-93.438-297.358-221.575h-91.592zM107.284 490.764c22.044-199.415 191.109-354.518 396.399-354.518s374.355 155.103 396.399 354.518h-89.337c-21.501-150.33-150.787-265.889-307.063-265.889s-285.56 115.56-307.063 265.889h-89.337zM91.497 663.117l3.714-13.86c10.618-39.626 51.349-63.142 90.975-52.523l227.886 61.062-22.939 85.61-299.634-80.287zM119.759 900.080l-85.61-22.939 61.062-227.886c10.618-39.626 51.349-63.142 90.975-52.523l13.86 3.714-80.287 299.634zM933.504 442.402l-3.714 13.86c-10.618 39.626-51.349 63.142-90.975 52.523l-227.886-61.062 22.939-85.61 299.634 80.287zM905.242 205.439l85.61 22.939-61.062 227.886c-10.618 39.626-51.349 63.142-90.975 52.523l-13.86-3.714 80.287-299.634z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "refresh"
+ ],
+ "defaultCode": 59682,
+ "grid": 0
+ },
+ {
+ "id": 49,
+ "paths": [
+ "M841.355 504.649l-298.959-298.959c-4.271-4.271-8.541-8.541-12.813-8.541-8.541-4.271-21.354-4.271-34.166 0-4.271 4.271-8.541 4.271-12.813 8.541l-298.959 298.959c-17.084 17.084-17.084 42.709 0 59.791s42.709 17.084 59.791 0l226.354-226.354v495.417c0 25.625 17.084 42.709 42.709 42.709s42.709-17.084 42.709-42.709v-495.417l226.354 226.354c8.541 8.541 21.354 12.813 29.896 12.813s21.354-4.271 29.896-12.813c17.084-17.084 17.084-42.709 0-59.791z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow-up"
+ ],
+ "defaultCode": 59683,
+ "grid": 0
+ },
+ {
+ "id": 50,
+ "paths": [
+ "M841.354 505.182c-17.084-17.084-42.709-17.084-59.791 0l-226.354 226.354v-495.417c0-25.625-17.084-42.709-42.709-42.709s-42.709 17.084-42.709 42.709v495.417l-226.354-226.354c-17.084-17.084-42.709-17.084-59.791 0s-17.084 42.709 0 59.791l298.959 298.959c4.271 4.271 8.541 8.541 12.813 8.541 4.271 4.271 12.813 4.271 17.084 4.271s12.813 0 17.084-4.271c4.271-4.271 8.541-4.271 12.813-8.541l298.959-298.959c17.084-17.084 17.084-42.709 0-59.791z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow-down"
+ ],
+ "defaultCode": 59684,
+ "grid": 0
+ },
+ {
+ "id": 51,
+ "paths": [
+ "M811.459 492.37h-256.25v-256.25c0-25.625-17.084-42.709-42.709-42.709s-42.709 17.084-42.709 42.709v256.25h-256.25c-25.625 0-42.709 17.084-42.709 42.709s17.084 42.709 42.709 42.709h256.25v256.25c0 25.625 17.084 42.709 42.709 42.709s42.709-17.084 42.709-42.709v-256.25h256.25c25.625 0 42.709-17.084 42.709-42.709s-17.084-42.709-42.709-42.709z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "plus"
+ ],
+ "defaultCode": 59685,
+ "grid": 0
+ },
+ {
+ "id": 52,
+ "paths": [
+ "M811.457 492.37h-597.913c-25.625 0-42.709 17.084-42.709 42.709s17.084 42.709 42.709 42.709h597.913c25.625 0 42.709-17.084 42.709-42.709s-17.084-42.709-42.709-42.709z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "minus"
+ ],
+ "defaultCode": 59686,
+ "grid": 0
+ },
+ {
+ "id": 53,
+ "paths": [
+ "M473.913 652.027h302.054c16.13 0 29.201-13.074 29.201-29.201s-13.074-29.201-29.201-29.201v0h-544.422c-4.269 0-8.203 2.323-10.259 6.067-3.116 5.668-1.051 12.786 4.618 15.903v0l264.64 145.56c2.916 1.604 6.379 1.892 9.518 0.788 6.101-2.14 9.315-8.822 7.172-14.923v0l-33.32-94.991zM551.088 418.13h-302.054c-16.13 0-29.201 13.074-29.201 29.201v0 0c0 16.13 13.074 29.201 29.201 29.201v0h544.422c4.269 0 8.203-2.323 10.259-6.067 3.116-5.668 1.051-12.786-4.618-15.903l-264.64-145.56c-2.916-1.604-6.379-1.892-9.518-0.788-6.101 2.14-9.315 8.822-7.172 14.923v0l33.32 94.991z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "exchange"
+ ],
+ "defaultCode": 59687,
+ "grid": 0
+ },
+ {
+ "id": 54,
+ "paths": [
+ "M637.028 502.852c0-124.376-101.212-225.588-225.588-225.588s-225.588 101.212-225.588 225.588 101.212 225.588 225.588 225.588 225.588-101.212 225.588-225.588zM894.843 921.801c0 35.248-29.206 64.454-64.454 64.454-17.122 0-33.737-7.049-45.319-19.135l-172.716-172.213c-58.915 40.788-129.411 62.44-200.914 62.44-195.879 0-354.496-158.617-354.496-354.496s158.617-354.496 354.496-354.496 354.496 158.617 354.496 354.496c0 71.503-21.652 142-62.44 200.914l172.716 172.716c11.582 11.582 18.631 28.199 18.631 45.319z"
+ ],
+ "width": 952,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "search"
+ ],
+ "defaultCode": 59688,
+ "grid": 0
+ },
+ {
+ "id": 55,
+ "paths": [
+ "M848.685 121.313l59.998 224.985-49.651 13.447c-23.273-44.996-47.068-89.995-74.48-112.75-27.412-22.24-59.479-22.24-91.028-22.24h-129.302v543.069c0 25.861 0 51.72 17.067 64.649 17.585 12.932 51.72 12.932 86.372 12.932v51.72h-310.324v-51.72c34.654 0 68.79 0 86.372-12.932 17.067-12.932 17.067-38.791 17.067-64.649v-543.069h-129.302c-31.55 0-63.616 0-91.028 22.24-27.412 22.755-51.202 67.755-74.48 112.75l-49.651-13.447 59.998-224.985h672.37z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "text"
+ ],
+ "defaultCode": 59689,
+ "grid": 0
+ },
+ {
+ "id": 56,
+ "paths": [
+ "M951.786 846.24v-439.286c-12.012 13.727-25.168 26.312-39.468 37.751-81.794 62.918-164.16 126.981-243.667 193.332-42.899 36.035-96.094 80.078-155.581 80.078h-1.144c-59.487 0-112.681-44.043-155.581-80.078-79.507-66.351-161.872-130.413-243.667-193.332-14.3-11.44-27.456-24.023-39.468-37.751v439.286c0 9.723 8.579 18.304 18.304 18.304h841.964c9.723 0 18.304-8.579 18.304-18.304zM951.786 245.081c0-14.3 3.432-39.468-18.304-39.468h-841.964c-9.723 0-18.304 8.579-18.304 18.304 0 65.207 32.603 121.833 84.082 162.445 76.646 60.059 153.293 120.689 229.367 181.32 30.316 24.595 85.226 77.218 125.265 77.218h1.144c40.039 0 94.95-52.622 125.265-77.218 76.074-60.63 152.72-121.261 229.367-181.32 37.179-29.171 84.082-92.661 84.082-141.281zM1025.001 223.918v622.321c0 50.335-41.183 91.518-91.518 91.518h-841.964c-50.335 0-91.518-41.183-91.518-91.518v-622.321c0-50.335 41.183-91.518 91.518-91.518h841.964c50.335 0 91.518 41.183 91.518 91.518z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "envelope-o"
+ ],
+ "defaultCode": 59690,
+ "grid": 0
+ },
+ {
+ "id": 57,
+ "paths": [
+ "M558.055 435.847l108.92 35.044c13.593 4.373 28.492 0.749 38.556-9.38 14.777-14.869 14.701-38.908-0.171-53.687v0l-139.097-138.21c-29.708-29.52-77.709-29.409-107.284 0.246v0l-137.523 137.922c-10.064 10.094-13.627 24.974-9.225 38.53 6.476 19.941 27.889 30.857 47.829 24.382v0l106.878-34.706v319.284c0 25.16 20.394 45.554 45.554 45.554v0c25.16 0 45.554-20.394 45.554-45.554v0-319.418zM512.5 79.522v0c251.597 0 455.557 203.959 455.557 455.557v0c0 251.597-203.959 455.557-455.557 455.557s-455.557-203.959-455.557-455.557v0 0c0-251.597 203.959-455.557 455.557-455.557v0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "up-circle"
+ ],
+ "defaultCode": 59691,
+ "grid": 0
+ },
+ {
+ "id": 58,
+ "paths": [
+ "M611.732 580.633l-35.044 108.92c-4.373 13.593-0.749 28.492 9.38 38.556 14.869 14.777 38.908 14.701 53.687-0.171v0l138.21-139.097c29.52-29.708 29.409-77.709-0.246-107.284v0l-137.922-137.523c-10.094-10.064-24.974-13.627-38.53-9.225-19.941 6.476-30.857 27.889-24.382 47.829v0l34.706 106.878h-319.284c-25.16 0-45.554 20.394-45.554 45.554v0c0 25.16 20.394 45.554 45.554 45.554v0h319.418zM968.057 535.079v0c0 251.597-203.959 455.557-455.557 455.557v0c-251.597 0-455.557-203.959-455.557-455.557s203.959-455.557 455.557-455.557v0 0c251.597 0 455.557 203.959 455.557 455.557v0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "right-circle"
+ ],
+ "defaultCode": 59692,
+ "grid": 0
+ },
+ {
+ "id": 59,
+ "paths": [
+ "M466.946 634.31l-108.92-35.044c-13.593-4.373-28.492-0.749-38.556 9.38-14.777 14.869-14.701 38.908 0.171 53.687v0l139.097 138.21c29.708 29.52 77.709 29.409 107.284-0.246v0l137.523-137.922c10.064-10.094 13.627-24.974 9.225-38.53-6.476-19.941-27.889-30.857-47.829-24.382v0l-106.878 34.706v-319.284c0-25.16-20.394-45.554-45.554-45.554v0c-25.16 0-45.554 20.394-45.554 45.554v0 319.418zM512.5 990.635v0c-251.597 0-455.557-203.959-455.557-455.557v0c0-251.597 203.959-455.557 455.557-455.557s455.557 203.959 455.557 455.557v0 0c0 251.597-203.959 455.557-455.557 455.557v0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "down-circle"
+ ],
+ "defaultCode": 59693,
+ "grid": 0
+ },
+ {
+ "id": 60,
+ "paths": [
+ "M413.269 489.524l35.044-108.92c4.373-13.593 0.749-28.492-9.38-38.556-14.869-14.777-38.908-14.701-53.687 0.171v0l-138.21 139.097c-29.52 29.708-29.409 77.709 0.246 107.284v0l137.922 137.523c10.094 10.064 24.974 13.627 38.53 9.225 19.941-6.476 30.857-27.889 24.382-47.829v0l-34.706-106.878h319.284c25.16 0 45.554-20.394 45.554-45.554v0c0-25.16-20.394-45.554-45.554-45.554v0h-319.418zM56.944 535.079v0c0-251.597 203.959-455.557 455.557-455.557v0c251.597 0 455.557 203.959 455.557 455.557s-203.959 455.557-455.557 455.557v0 0c-251.597 0-455.557-203.959-455.557-455.557v0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "left-circle"
+ ],
+ "defaultCode": 59694,
+ "grid": 0
+ },
+ {
+ "id": 61,
+ "paths": [
+ "M415.963 650.486l-83.194-83.194c-17.79-17.79-46.635-17.79-64.425 0s-17.79 46.635 0 64.425l112.847 112.847c0.778 0.911 1.598 1.8 2.459 2.661v0c0.862 0.862 1.75 1.682 2.661 2.459l0.145 0.145 0.011-0.011c17.897 15.15 44.728 14.286 61.607-2.594v0l322.128-322.128c17.79-17.79 17.79-46.635 0-64.425s-46.635-17.79-64.425 0l-289.813 289.813zM512.5 990.635c-251.598 0-455.557-203.959-455.557-455.557s203.959-455.557 455.557-455.557c251.598 0 455.557 203.959 455.557 455.557s-203.959 455.557-455.557 455.557z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "check-circle"
+ ],
+ "defaultCode": 59695,
+ "grid": 0
+ },
+ {
+ "id": 62,
+ "paths": [
+ "M512.5 990.635c-251.597 0-455.557-203.959-455.557-455.557s203.959-455.557 455.557-455.557c251.597 0 455.557 203.959 455.557 455.557s-203.959 455.557-455.557 455.557zM512.5 838.782c31.445 0 56.942-25.495 56.942-56.942s-25.495-56.942-56.942-56.942c-31.445 0-56.942 25.495-56.942 56.942s25.495 56.942 56.942 56.942zM512.499 269.34c-25.16 0-45.554 20.394-45.554 45.554v288.519c0 25.16 20.394 45.554 45.554 45.554s45.554-20.394 45.554-45.554v-288.519c0-25.16-20.394-45.554-45.554-45.554z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "exclamation-sign"
+ ],
+ "defaultCode": 59696,
+ "grid": 0
+ },
+ {
+ "id": 63,
+ "paths": [
+ "M85.753 823.933h238.979c28.283 0 51.208 22.927 51.208 51.208s-22.927 51.208-51.208 51.208h-238.979c-28.283 0-51.208-22.927-51.208-51.208s22.927-51.208 51.208-51.208zM761.72 892.212v0 0c28.283 0 51.208-22.927 51.208-51.208v-443.815c0-28.283-22.927-51.208-51.208-51.208v0 0c-28.283 0-51.208 22.927-51.208 51.208v443.815c0 28.283 22.927 51.208 51.208 51.208zM795.972 914.023c19.999-19.999 19.999-52.424 0-72.423l-168.984-168.984c-19.999-19.999-52.424-19.999-72.423 0s-19.999 52.424 0 72.423l168.984 168.984c19.999 19.999 52.424 19.999 72.423 0zM795.972 914.023l168.984-168.984c19.999-19.999 19.999-52.424 0-72.423s-52.424-19.999-72.423 0l-168.984 168.984c-19.999 19.999-19.999 52.424 0 72.423s52.424 19.999 72.423 0zM85.753 596.334h238.979c28.283 0 51.208 22.927 51.208 51.208s-22.927 51.208-51.208 51.208h-238.979c-28.283 0-51.208-22.927-51.208-51.208s22.927-51.208 51.208-51.208zM85.753 368.739h238.979c28.283 0 51.208 22.927 51.208 51.208v0 0c0 28.283-22.927 51.208-51.208 51.208h-238.979c-28.283 0-51.208-22.927-51.208-51.208v0 0c0-28.283 22.927-51.208 51.208-51.208zM85.753 141.136h853.495c28.283 0 51.208 22.927 51.208 51.208s-22.927 51.208-51.208 51.208h-853.495c-28.283 0-51.208-22.927-51.208-51.208s22.927-51.208 51.208-51.208z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "unfold-all"
+ ],
+ "defaultCode": 59697,
+ "grid": 0
+ },
+ {
+ "id": 64,
+ "paths": [
+ "M85.072 815.473h239.361c28.328 0 51.29 22.963 51.29 51.29s-22.963 51.29-51.29 51.29h-239.361c-28.328 0-51.29-22.963-51.29-51.29s22.963-51.29 51.29-51.29zM762.121 391.463v0 0c28.328 0 51.29 22.963 51.29 51.29v444.527c0 28.328-22.963 51.29-51.29 51.29v0 0c-28.328 0-51.29-22.963-51.29-51.29v-444.527c0-28.328 22.963-51.29 51.29-51.29zM796.425 369.62c20.031 20.031 20.031 52.507 0 72.536l-169.252 169.252c-20.031 20.031-52.507 20.031-72.536 0s-20.031-52.507 0-72.536l169.252-169.252c20.031-20.031 52.507-20.031 72.536 0zM796.425 369.62l169.252 169.252c20.031 20.031 20.031 52.507 0 72.536s-52.507 20.031-72.536 0l-169.252-169.252c-20.031-20.031-20.031-52.507 0-72.536s52.507-20.031 72.536 0zM85.072 587.511h239.361c28.328 0 51.29 22.963 51.29 51.29s-22.963 51.29-51.29 51.29h-239.361c-28.328 0-51.29-22.963-51.29-51.29s22.963-51.29 51.29-51.29zM85.072 359.55h239.361c28.328 0 51.29 22.963 51.29 51.29v0 0c0 28.328-22.963 51.29-51.29 51.29h-239.361c-28.328 0-51.29-22.963-51.29-51.29v0 0c0-28.328 22.963-51.29 51.29-51.29zM85.072 131.587h854.858c28.328 0 51.29 22.963 51.29 51.29s-22.963 51.29-51.29 51.29h-854.858c-28.328 0-51.29-22.963-51.29-51.29s22.963-51.29 51.29-51.29z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fold-all"
+ ],
+ "defaultCode": 59698,
+ "grid": 0
+ },
+ {
+ "id": 65,
+ "paths": [
+ "M471.826 494.404h-203.376c-22.466 0-40.675 18.213-40.675 40.675s18.213 40.675 40.675 40.675h203.376v203.376c0 22.466 18.213 40.675 40.675 40.675s40.675-18.213 40.675-40.675v0-203.376h203.376c22.466 0 40.675-18.213 40.675-40.675s-18.213-40.675-40.675-40.675v0h-203.376v-203.376c0-22.466-18.213-40.675-40.675-40.675v0 0c-22.466 0-40.675 18.213-40.675 40.675v203.376z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "plus-sm"
+ ],
+ "defaultCode": 59699,
+ "grid": 0
+ },
+ {
+ "id": 66,
+ "paths": [
+ "M731.732 151.423v0c30.27 30.27 30.27 79.346 0 109.615l-328.846 328.846c-30.27 30.27-79.346 30.27-109.615 0v0c-30.27-30.27-30.27-79.346 0-109.615l328.846-328.846c30.27-30.27 79.346-30.27 109.615 0zM731.732 918.734v0c-30.27 30.27-79.346 30.27-109.615 0l-328.846-328.846c-30.27-30.27-30.27-79.346 0-109.615v0c30.27-30.27 79.346-30.27 109.615 0l328.846 328.846c30.27 30.27 30.27 79.346 0 109.615z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chevron-left"
+ ],
+ "defaultCode": 59700,
+ "grid": 0
+ },
+ {
+ "id": 67,
+ "paths": [
+ "M297.448 158.736v0c-29.692 29.692-29.692 77.834 0 107.525l322.578 322.578c29.692 29.692 77.834 29.692 107.525 0v0c29.692-29.692 29.692-77.834 0-107.525l-322.578-322.578c-29.692-29.692-77.834-29.692-107.525 0zM297.448 911.421v0c29.692 29.692 77.834 29.692 107.525 0l322.578-322.578c29.692-29.692 29.692-77.834 0-107.525v0c-29.692-29.692-77.834-29.692-107.525 0l-322.578 322.578c-29.692 29.692-29.692 77.834 0 107.525z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chevron-right"
+ ],
+ "defaultCode": 59701,
+ "grid": 0
+ },
+ {
+ "id": 68,
+ "paths": [
+ "M840.579 207c18.12 18.12 18.12 47.497 0 65.614l-590.538 590.538c-18.12 18.12-47.497 18.12-65.614 0s-18.12-47.497 0-65.614l590.538-590.538c18.12-18.12 47.497-18.12 65.614 0zM184.422 207c18.12-18.12 47.497-18.12 65.614 0l590.538 590.538c18.12 18.12 18.12 47.497 0 65.614s-47.497 18.12-65.614 0l-590.538-590.538c-18.12-18.12-18.12-47.497 0-65.614z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "close"
+ ],
+ "defaultCode": 59702,
+ "grid": 0
+ },
+ {
+ "id": 69,
+ "paths": [
+ "M116.478 95.324c116.821-59.002 248.886-59.032 396.195-0.092v0c0.145 0.058 0.288 0.116 0.433 0.174 147.936 60.103 279.744 60.076 395.419-0.083 0 44.040 0 484.437 0 528.477-116.343 57.651-247.651 57.714-393.924 0.19v0c-0.304-0.12-0.609-0.241-0.912-0.365-145.189-58.978-277.592-58.92-397.211 0.174 0 0 0-528.477 0-528.477zM149.479 491.077c18.227 0 33.002 14.775 33.002 33.002v462.027c0 18.227-14.775 33.002-33.002 33.002s-33.002-14.775-33.002-33.002v-462.027c0-18.227 14.775-33.002 33.002-33.002z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "flag"
+ ],
+ "defaultCode": 59703,
+ "grid": 0
+ },
+ {
+ "id": 70,
+ "paths": [
+ "M473.685 611.199l-108.718-108.718c-20.015-20.015-52.464-20.015-72.478 0v0 0c-20.015 20.015-20.015 52.464 0 72.478v0l144.958 144.958c10.008 10.008 23.125 15.011 36.24 15.011s26.232-5.003 36.24-15.011l289.913-289.913c20.015-20.015 20.015-52.464 0-72.478v0c-20.015-20.015-52.464-20.015-72.478 0l-253.676 253.676zM205.001 22.577h615.002c113.219 0 205 91.782 205 205v615.002c0 113.219-91.782 205-205 205h-615.002c-113.219 0-205-91.782-205-205v-615.002c0-113.219 91.782-205 205-205v0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "check-sign"
+ ],
+ "defaultCode": 59704,
+ "grid": 0
+ },
+ {
+ "id": 71,
+ "paths": [
+ "M284.723 193.41h455.556c62.899 0 113.889 50.99 113.889 113.889v455.556c0 62.899-50.99 113.889-113.889 113.889h-455.556c-62.899 0-113.889-50.99-113.889-113.889v-455.556c0-62.899 50.99-113.889 113.889-113.889v0zM398.611 478.136c-31.451 0-56.943 25.495-56.943 56.943s25.495 56.943 56.943 56.943h227.777c31.451 0 56.943-25.495 56.943-56.943s-25.495-56.943-56.943-56.943h-227.777z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "minus-sign"
+ ],
+ "defaultCode": 59705,
+ "grid": 0
+ },
+ {
+ "id": 72,
+ "paths": [
+ "M170.833 79.522h683.333c62.899 0 113.889 50.99 113.889 113.889v683.333c0 62.899-50.99 113.889-113.889 113.889h-683.333c-62.899 0-113.889-50.99-113.889-113.889v-683.333c0-62.899 50.99-113.889 113.889-113.889v0zM313.194 705.911c-15.724 0-28.472 12.747-28.472 28.472s12.747 28.472 28.472 28.472h398.611c15.724 0 28.472-12.747 28.472-28.472s-12.747-28.472-28.472-28.472h-398.611zM313.194 535.079c-15.724 0-28.472 12.747-28.472 28.472s12.747 28.472 28.472 28.472h398.611c15.724 0 28.472-12.747 28.472-28.472s-12.747-28.472-28.472-28.472h-398.611zM313.194 364.246c-15.724 0-28.472 12.747-28.472 28.472s12.747 28.472 28.472 28.472h398.611c15.724 0 28.472-12.747 28.472-28.472s-12.747-28.472-28.472-28.472h-398.611z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bars-sign"
+ ],
+ "defaultCode": 59706,
+ "grid": 0
+ },
+ {
+ "id": 73,
+ "paths": [
+ "M897.25 622.303c-83.074 4.112-149.164 72.769-149.164 156.863 0 23.892 5.334 46.538 14.88 66.811-37.386 31-80.612 55.199-127.786 70.7-28.782-35.956-73.040-58.983-122.68-58.983s-93.898 23.026-122.68 58.983c-47.123-15.484-90.312-39.651-127.671-70.603 9.571-20.298 14.923-42.977 14.923-66.908 0-84.15-66.178-152.841-149.327-156.869-5.174-25.431-7.891-51.756-7.891-78.717s2.719-53.289 7.894-78.723c83.074-4.112 149.164-72.769 149.164-156.863 0-23.892-5.334-46.538-14.88-66.811 37.386-31 80.612-55.199 127.786-70.7 28.782 35.956 73.040 58.983 122.68 58.983s93.898-23.026 122.68-58.983c47.174 15.501 90.4 39.7 127.786 70.7-9.542 20.273-14.88 42.921-14.88 66.811 0 84.094 66.090 152.751 149.164 156.863 5.175 25.434 7.894 51.763 7.894 78.723s-2.719 53.289-7.894 78.723zM512.5 711.767c92.938 0 168.277-75.34 168.277-168.277s-75.34-168.277-168.277-168.277c-92.938 0-168.277 75.34-168.277 168.277s75.34 168.277 168.277 168.277z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cog"
+ ],
+ "defaultCode": 59707,
+ "grid": 0
+ },
+ {
+ "id": 74,
+ "paths": [
+ "M512.5 1047.559c-283.035 0-512.48-229.445-512.48-512.48s229.445-512.48 512.48-512.48c283.035 0 508.749 204.369 512.48 448.421 1.319 86.303-30.035 212.511-192.597 275.684-69.3 26.93-186.452 1.379-234.657 25.262-64.872 32.141-47.291 111.991-22.121 133.468 43.875 37.437 17.12 142.127-63.106 142.127zM750.685 476.496c0 53.069 43.021 96.090 96.090 96.090s96.090-43.021 96.090-96.090c0-53.069-43.021-96.090-96.090-96.090s-96.090 43.021-96.090 96.090zM246.558 519.274c23.265-47.699 3.455-105.225-44.241-128.488s-105.225-3.455-128.488 44.241c-23.265 47.699-3.455 105.225 44.241 128.488s105.225 3.455 128.488-44.241zM381.12 347.772c51.708-11.939 83.95-63.534 72.011-115.243s-63.534-83.95-115.243-72.011c-51.708 11.939-83.95 63.534-72.011 115.243s63.534 83.95 115.243 72.011zM611.633 321.487c41.243 33.398 101.75 27.037 135.147-14.204s27.037-101.75-14.204-135.147c-41.243-33.398-101.75-27.037-135.147 14.204s-27.037 101.75 14.204 135.147z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "color"
+ ],
+ "defaultCode": 59708,
+ "grid": 0
+ },
+ {
+ "id": 75,
+ "paths": [
+ "M454.178 941.903l429.613-429.613c82.56-82.56 82.56-216.301 0-298.862s-216.301-82.56-298.862 0l-466.97 466.97c-51.553 51.553-51.553 135.234 0 186.787s135.234 51.553 186.787 0l392.256-392.256c20.546-20.546 20.546-54.169 0-74.715s-54.169-20.546-74.715 0l-354.897 354.897-56.036-56.036 354.897-354.897c51.553-51.553 135.234-51.553 186.787 0s51.553 135.234 0 186.787l-392.256 392.256c-82.56 82.56-216.301 82.56-298.862 0s-82.56-216.301 0-298.862l466.97-466.97c113.567-113.567 297.366-113.567 410.934 0s113.567 297.366 0 410.934l-429.613 429.613-56.036-56.036z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "paper-clip"
+ ],
+ "defaultCode": 59709,
+ "grid": 0
+ },
+ {
+ "id": 76,
+ "paths": [
+ "M850.431 552.164c4.27-8.542 4.27-21.353 0-34.167-4.27-4.27-4.27-8.542-8.542-12.811l-298.959-298.959c-17.086-17.086-42.708-17.086-59.79 0s-17.086 42.708 0 59.79l226.354 226.354h-495.418c-25.627 0-42.708 17.086-42.708 42.708s17.086 42.708 42.708 42.708h495.418l-226.354 226.354c-17.086 17.086-17.086 42.708 0 59.79 8.542 8.542 21.353 12.811 29.896 12.811s21.353-4.27 29.896-12.811l298.959-298.959c4.27-4.27 8.542-8.542 8.542-12.811z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow-right"
+ ],
+ "defaultCode": 59710,
+ "grid": 0
+ },
+ {
+ "id": 77,
+ "paths": [
+ "M160.468 990.124c-0.23 0.002-0.461 0.003-0.693 0.003-37.14 0-67.241-30.102-67.241-67.243 0-37.133 30.102-67.241 67.241-67.241 2.816 0 5.59 0.173 8.315 0.508h463.061c111.409 0 201.724-90.314 201.724-201.724s-90.314-201.724-201.724-201.724h-470.684v-134.474h470.236c185.5 0 335.884 150.58 335.884 336.328 0 185.745-150.381 336.328-335.884 336.328h-470.236v-0.764zM82.205 334.423l293.56-251.661c5.64-4.833 14.13-4.184 18.963 1.457 2.789 3.253 3.862 7.635 2.887 11.811l-67.529 289.444 67.529 289.444c1.691 7.232-2.81 14.466-10.040 16.153-4.173 0.972-8.557-0.1-11.811-2.887l-293.56-251.661c-28.197-24.172-31.457-66.618-7.285-94.815 2.237-2.613 4.675-5.049 7.285-7.285h0.002z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "back"
+ ],
+ "defaultCode": 59711,
+ "grid": 0
+ },
+ {
+ "id": 78,
+ "paths": [
+ "M876.028 730.827h-419.459l-111.855 67.116v-67.116h-195.748v-503.35h727.060v503.35zM65.080 255.439v447.421c0 61.777 50.078 111.855 111.855 111.855h89.483v111.855l190.154-111.855h391.494c61.777 0 111.855-50.078 111.855-111.855v-447.421c0-61.777-50.078-111.855-111.855-111.855h-671.131c-61.777 0-111.855 50.078-111.855 111.855zM288.79 451.186h447.421v-83.893h-447.421zM288.79 618.971h447.421v-83.893h-447.421z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chat-line"
+ ],
+ "defaultCode": 59712,
+ "grid": 0
+ },
+ {
+ "id": 79,
+ "paths": [
+ "M780.957 458.407l-0.032 0.014c10.376-29.529 16.299-61.116 16.299-94.176 0-157.251-127.457-284.722-284.722-284.722s-284.722 127.472-284.722 284.722c0 33.060 5.922 64.646 16.293 94.176v-0.014c-110.942 56.43-187.127 171.376-187.127 304.381v170.819c0 31.503 25.525 57.028 57.028 57.028h797.055c31.503 0 57.028-25.525 57.028-57.028v-170.819c0-133.005-76.158-247.95-187.1-304.381zM512.5 193.412c94.204 0 170.834 76.63 170.834 170.834s-76.63 170.834-170.834 170.834c-94.204 0-170.834-76.63-170.834-170.834s76.63-170.834 170.834-170.834zM854.167 876.745h-683.334v-113.958c0-91.353 54.22-170.111 132.019-206.355 52.051 56.75 126.568 92.534 209.649 92.534 83.082 0 157.598-35.784 209.649-92.534 77.799 36.243 132.019 115.001 132.019 206.355v113.958z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "person"
+ ],
+ "defaultCode": 59713,
+ "grid": 0
+ },
+ {
+ "id": 80,
+ "paths": [
+ "M85.416 876.751c0-15.724-12.748-28.472-28.474-28.472h28.474v28.472zM85.416 848.277v-683.338h288.584l80.921 113.889h484.662v43.039h85.416v-71.511c0-31.45-25.495-56.945-56.945-56.945h-469.042l-63.895-89.927c-10.68-15.033-27.979-23.962-46.419-23.962h-331.754c-31.45 0-56.945 25.495-56.945 56.945v740.284c0 31.45 25.495 56.945 56.945 56.945l356.017-0.006-0.001-85.416-327.543 0.004zM85.416 164.939v-28.472c0 15.724-12.748 28.472-28.472 28.472h28.472zM388.699 164.939c-9.22 0-17.869-4.464-23.211-11.981l8.512 11.981h14.697zM968.056 278.828c-15.724 0-28.472-12.748-28.472-28.472v28.472h28.472zM939.585 250.356c0 15.724 12.748 28.472 28.472 28.472h-28.472v-28.472zM939.585 321.867h85.416v-71.511c0-31.45-25.495-56.945-56.945-56.945h-469.042l-63.895-89.927c-10.68-15.033-27.979-23.962-46.419-23.962h-331.754c-31.45 0-56.945 25.495-56.945 56.945v740.284c0 31.45 25.495 56.945 56.945 56.945l356.017-0.006-0.001-85.416-327.543 0.004v-683.338h288.584l80.921 113.889h484.662v43.039zM388.699 164.939c-9.22 0-17.869-4.464-23.211-11.981l8.512 11.981h14.697zM56.945 164.939c15.724 0 28.472-12.748 28.472-28.472v28.472h-28.472zM56.944 848.277c15.726 0 28.474 12.748 28.474 28.472v-28.472h-28.474zM1024.318 895.076c0.448 2.124 0.683 4.326 0.683 6.583 0 17.69-14.47 32.031-32.32 32.031-0.022 0-0.043 0-0.066 0-0.011 0-0.023 0-0.034 0-196.793 0-345.772 0-446.936 0-0.098 0-0.196-0.001-0.291-0.004-0.177 0.003-0.354 0.004-0.533 0.004-17.849 0-32.32-14.341-32.32-32.031 0-1.131 0.059-2.248 0.174-3.347-0.016-0.392 0.010-0.824 0.078-1.299 13.275-91.798 75.643-167.891 159.893-201.315-35.995-28.156-59.1-71.782-59.1-120.758 0-84.914 69.456-153.75 155.132-153.75s155.132 68.836 155.132 153.75c0 48.975-23.105 92.601-59.1 120.758 83.658 33.188 145.739 108.447 159.606 199.378zM982.292 364.245c23.587 0 42.709-19.121 42.709-42.709s-19.121-42.709-42.709-42.709c-23.587 0-42.709 19.121-42.709 42.709s19.121 42.709 42.709 42.709zM412.847 933.69c23.587 0 42.709-19.121 42.709-42.709s-19.121-42.709-42.709-42.709c-23.587 0-42.709 19.121-42.709 42.709s19.121 42.709 42.709 42.709z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "folder-account"
+ ],
+ "defaultCode": 59714,
+ "grid": 0
+ },
+ {
+ "id": 81,
+ "paths": [
+ "M1025.001 342.891l-512.5-256.25-512.5 256.25 512.5 256.25 512.5-256.25zM512.5 171.694l342.392 171.197-342.392 171.197-342.392-171.197 342.392-171.197zM922.345 483.75l102.656 51.328-512.5 256.25-512.5-256.25 102.656-51.328 409.844 204.922zM922.345 675.938l102.656 51.328-512.5 256.25-512.5-256.25 102.656-51.328 409.844 204.922z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "stack"
+ ],
+ "defaultCode": 59715,
+ "grid": 0
+ },
+ {
+ "id": 82,
+ "paths": [
+ "M409.998 125.077h-307.501c-56.887 0-102.5 45.613-102.5 102.5v614.999c0 56.375 46.125 102.5 102.5 102.5h820c56.375 0 102.5-46.125 102.5-102.5v-512.499c0-56.887-46.125-102.5-102.5-102.5h-410.001l-102.5-102.5z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "folder"
+ ],
+ "defaultCode": 59716,
+ "grid": 0
+ },
+ {
+ "id": 83,
+ "paths": [
+ "M878.572 773.026v-402.679c0-30.318-24.596-54.911-54.911-54.911h-402.679c-30.318 0-54.911-24.596-54.911-54.911v-36.607c0-30.318-24.596-54.911-54.911-54.911h-183.037c-30.318 0-54.911 24.596-54.911 54.911v549.109c0 30.318 24.596 54.911 54.911 54.911h695.538c30.318 0 54.911-24.596 54.911-54.911zM951.788 370.346v402.679c0 70.355-57.77 128.127-128.127 128.127h-695.538c-70.355 0-128.127-57.77-128.127-128.127v-549.109c0-70.355 57.77-128.127 128.127-128.127h183.037c70.355 0 128.127 57.77 128.127 128.127v18.304h384.374c70.355 0 128.127 57.77 128.127 128.127z"
+ ],
+ "width": 952,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "folder-o"
+ ],
+ "defaultCode": 59717,
+ "grid": 0
+ },
+ {
+ "id": 84,
+ "paths": [
+ "M1018.711 591.705c0-16.017-17.732-20.021-30.318-20.021h-622.327c-30.318 0-70.355 18.876-89.804 42.327l-168.164 207.632c-5.147 6.863-10.297 14.3-10.297 22.88 0 16.017 17.732 20.021 30.318 20.021h622.327c30.318 0 70.355-18.876 89.804-42.9l168.164-207.632c5.147-6.293 10.297-13.726 10.297-22.307zM366.067 498.471h439.291v-91.518c0-30.318-24.596-54.91-54.91-54.91h-329.467c-30.318 0-54.91-24.596-54.91-54.91v-36.606c0-30.318-24.596-54.91-54.91-54.91h-183.038c-30.318 0-54.91 24.596-54.91 54.91v487.908l146.431-180.178c33.177-40.61 94.378-69.783 146.431-69.783zM1091.925 591.705c0 25.167-10.867 49.19-26.311 68.64l-168.738 207.632c-32.603 40.040-94.952 69.783-146.431 69.783h-622.327c-70.355 0-128.126-57.769-128.126-128.126v-549.112c0-70.355 57.769-128.126 128.126-128.126h183.038c70.355 0 128.126 57.769 128.126 128.126v18.304h311.163c70.355 0 128.126 57.769 128.126 128.126v91.518h109.821c38.896 0 77.791 17.732 94.952 54.341 5.72 12.013 8.579 25.167 8.579 38.896z"
+ ],
+ "width": 1092,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "folder-open-o"
+ ],
+ "defaultCode": 59718,
+ "grid": 0
+ },
+ {
+ "id": 85,
+ "paths": [
+ "M821.545 921.688h-724.895c-53.641 0-96.652-43.493-96.652-96.652v-579.912c0-53.641 43.011-96.652 96.652-96.652h289.959l96.652 96.652h338.283c53.159 0 96.652 43.493 96.652 96.652v0h-821.545v483.261l103.419-386.61h824.929l-110.182 410.774c-11.114 42.045-48.81 72.491-93.271 72.491z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "folder-open"
+ ],
+ "defaultCode": 59719,
+ "grid": 0
+ },
+ {
+ "id": 86,
+ "paths": [
+ "M113.887 136.465h797.223v113.889h-797.223v-113.889zM113.887 478.134h797.223v113.889h-797.223v-113.889zM113.887 819.803h797.223v113.889h-797.223v-113.889z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bars"
+ ],
+ "defaultCode": 59720,
+ "grid": 0
+ },
+ {
+ "id": 87,
+ "paths": [
+ "M170.834 136.467h284.722v341.667h-341.667v-284.722c0-31.45 25.495-56.945 56.945-56.945zM113.889 592.023h341.667v341.667h-284.722c-31.45 0-56.945-25.495-56.945-56.945v-284.722zM569.445 136.467h284.722c31.45 0 56.945 25.495 56.945 56.945v284.722h-341.667v-341.667zM569.445 592.023h341.667v284.722c0 31.45-25.495 56.945-56.945 56.945h-284.722v-341.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cards-view"
+ ],
+ "defaultCode": 59721,
+ "grid": 0
+ },
+ {
+ "id": 88,
+ "paths": [
+ "M471.159 86.089l0.545 0.793c-0.184-0.262-0.365-0.527-0.545-0.793zM77.228 396.273l0.508 0.729c-0.167-0.244-0.336-0.487-0.508-0.729zM200.925 965.040l0.942-0.325c-0.315 0.105-0.63 0.213-0.942 0.325zM825.191 965.332c-0.338-0.12-0.677-0.237-1.015-0.35l1.015 0.35zM757.874 1010.306l-0.003-0.954c-0.003 0.318-0.002 0.637 0.003 0.954zM645.584 339.895l-132.489-192.785-148.513 215.9-251.4 84.805 155.219 222.521-0.080 26.986-0.726 244.714 245.057-84.561 245.024 84.558-0.795-271.699 155.216-222.509-250.391-84.471zM842.375 697.069l0.916 312.987c0.18 12.194-5.085 22.959-13.402 29.836-11.049 7.895-22.42 9.809-33.405 5.889l-283.834-97.947-283.862 97.951c-10.98 3.922-22.34 2.007-31.112-4.15-10.605-8.603-15.863-19.383-15.696-31.578l0.924-312.987-175.732-251.929c-6.947-9.742-8.725-21.681-5.865-32.336 4.53-13.232 12.67-21.816 23.773-25.411l285.246-96.228 173.837-252.714c6.686-9.959 16.983-15.437 27.561-15.874 13.353 0.428 23.625 5.896 30.316 15.846l173.94 253.091 284.204 95.88c11.103 3.589 19.247 12.179 22.901 22.599 3.741 13.455 1.967 25.392-4.978 35.15l-175.732 251.926z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "star-empty"
+ ],
+ "defaultCode": 59722,
+ "grid": 0
+ },
+ {
+ "id": 89,
+ "paths": [
+ "M842.375 697.069l0.916 312.987c0.18 12.194-5.085 22.959-13.402 29.836-11.049 7.895-22.42 9.809-33.405 5.889l-283.834-97.947-283.862 97.951c-10.98 3.922-22.34 2.007-31.112-4.15-10.605-8.603-15.863-19.383-15.696-31.578l0.924-312.987-175.732-251.929c-6.947-9.742-8.725-21.681-5.865-32.336 4.53-13.232 12.67-21.816 23.773-25.411l285.246-96.228 173.837-252.714c6.686-9.959 16.983-15.437 27.561-15.874 13.353 0.428 23.625 5.896 30.316 15.846l173.94 253.091 284.204 95.88c11.103 3.589 19.247 12.179 22.901 22.599 3.741 13.455 1.967 25.392-4.978 35.15l-175.732 251.926z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "star"
+ ],
+ "defaultCode": 59723,
+ "grid": 0
+ },
+ {
+ "id": 90,
+ "paths": [
+ "M964.43 551.663c4.146-8.291 4.146-20.731 0-33.168-4.146-4.146-4.146-8.291-8.291-12.438l-124.384-124.384c-16.584-16.584-41.461-16.584-58.047 0s-16.584 41.461 0 58.047l53.901 53.901h-273.645v-273.645l53.901 53.901c8.291 8.291 16.584 12.438 29.023 12.438s20.731-4.146 29.023-12.438c16.584-16.584 16.584-41.461 0-58.047l-124.384-124.384c-4.146-4.146-8.291-8.291-12.438-8.291-8.291-4.146-20.731-4.146-33.168 0-4.146 4.146-8.291 4.146-12.438 8.291l-124.384 124.384c-16.584 16.584-16.584 41.461 0 58.047s41.461 16.584 58.047 0l53.901-53.901v273.645h-273.645l53.901-53.901c16.584-16.584 16.584-41.461 0-58.047s-41.461-16.584-58.047 0l-124.384 124.384c-4.146 4.146-8.291 8.291-8.291 12.438-4.146 8.291-4.146 20.731 0 33.168 4.146 4.146 4.146 8.291 8.291 12.438l124.384 124.384c8.291 8.291 16.584 12.438 29.023 12.438s20.731-4.146 29.023-12.438c16.584-16.584 16.584-41.461 0-58.047l-53.901-53.901h273.645v273.645l-53.901-53.901c-16.584-16.584-41.461-16.584-58.047 0s-16.584 41.461 0 58.047l124.384 124.384c4.146 4.146 8.291 8.291 12.438 8.291 4.146 4.146 12.438 4.146 16.584 4.146s12.438 0 16.584-4.146c4.146-4.146 8.291-4.146 12.438-8.291l124.384-124.384c16.584-16.584 16.584-41.461 0-58.047s-41.461-16.584-58.047 0l-53.901 53.901v-273.645h273.645l-53.901 53.901c-16.584 16.584-16.584 41.461 0 58.047 8.291 8.291 20.731 12.438 29.023 12.438s20.731-4.146 29.023-12.438l124.384-124.384c4.146-4.146 8.291-8.291 8.291-12.438z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "move"
+ ],
+ "defaultCode": 59724,
+ "grid": 0
+ },
+ {
+ "id": 91,
+ "paths": [
+ "M722.159 278.826c51.25 0 93.182 41.932 93.182 93.182s-41.932 93.182-93.182 93.182c-51.25 0-93.182-41.932-93.182-93.182s41.932-93.182 93.182-93.182zM722.159 535.078c89.92 0 163.068-73.148 163.068-163.068s-73.148-163.068-163.068-163.068c-89.92 0-163.068 73.148-163.068 163.068s73.148 163.068 163.068 163.068zM302.841 278.826c51.25 0 93.182 41.932 93.182 93.182s-41.932 93.182-93.182 93.182c-51.25 0-93.182-41.932-93.182-93.182s41.932-93.182 93.182-93.182zM302.841 535.078c89.92 0 163.068-73.148 163.068-163.068s-73.148-163.068-163.068-163.068c-89.92 0-163.068 73.148-163.068 163.068s73.148 163.068 163.068 163.068zM955.114 791.328h-349.433v-58.238c0-21.432-9.318-40.067-23.295-56.842 40.067-13.978 90.386-24.693 139.773-24.693 113.682 0 232.955 56.375 232.955 81.535zM535.794 791.328h-465.911v-58.238c0-25.16 119.272-81.535 232.955-81.535s232.955 56.375 232.955 81.535zM722.159 581.671c-55.91 0-143.035 15.841-209.659 46.593-66.625-31.214-153.75-46.593-209.659-46.593-101.103 0-302.84 50.316-302.84 151.422v128.124h1025.001v-128.124c0-101.103-201.739-151.422-302.84-151.422z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "persons"
+ ],
+ "defaultCode": 59725,
+ "grid": 0
+ },
+ {
+ "id": 92,
+ "paths": [
+ "M512.5 395.307c77.341 0 139.771 62.432 139.771 139.771s-62.432 139.771-139.771 139.771c-77.341 0-139.771-62.432-139.771-139.771s62.432-139.771 139.771-139.771zM512.5 185.645c232.954 0 431.9 144.898 512.5 349.433-80.602 204.535-279.545 349.433-512.5 349.433s-431.9-144.898-512.5-349.433c80.602-204.535 279.545-349.433 512.5-349.433zM101.569 535.079c76.874 156.546 235.75 256.252 410.931 256.252s334.057-99.705 410.931-256.252c-76.874-156.546-235.75-256.252-410.931-256.252s-334.057 99.705-410.931 256.252z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "eye"
+ ],
+ "defaultCode": 59726,
+ "grid": 0
+ },
+ {
+ "id": 93,
+ "paths": [
+ "M805.358 949.961v-488.097h-585.714v488.097h585.714zM805.358 364.245c53.69 0 97.619 43.929 97.619 97.619v488.097c0 53.69-43.929 97.619-97.619 97.619h-585.714c-54.179 0-97.619-43.929-97.619-97.619v-488.097c0-53.69 43.929-97.619 97.619-97.619h439.287v-97.619c0-81.024-65.405-146.429-146.429-146.429s-146.429 65.405-146.429 146.429h-97.619c0-134.715 109.333-244.047 244.047-244.047s244.047 109.333 244.047 244.047v97.619h48.81zM512.5 803.532c-53.69 0-97.619-43.929-97.619-97.619s43.929-97.619 97.619-97.619c53.69 0 97.619 43.929 97.619 97.619s-43.929 97.619-97.619 97.619z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "unlock"
+ ],
+ "defaultCode": 59727,
+ "grid": 0
+ },
+ {
+ "id": 94,
+ "paths": [
+ "M512.5 803.531c-54.179 0-97.619-43.929-97.619-97.619 0-54.179 43.44-97.619 97.619-97.619 53.69 0 97.619 43.929 97.619 97.619s-43.929 97.619-97.619 97.619zM805.358 949.96v-488.097h-585.714v488.097h585.714zM805.358 364.246c53.69 0 97.619 43.929 97.619 97.619v488.097c0 53.69-43.929 97.619-97.619 97.619h-585.714c-54.179 0-97.619-43.929-97.619-97.619v-488.097c0-54.179 43.44-97.619 97.619-97.619h48.81v-97.619c0-134.715 109.333-244.047 244.047-244.047s244.047 109.333 244.047 244.047v97.619h48.81zM512.5 120.197c-81.024 0-146.429 65.405-146.429 146.429v97.619h292.858v-97.619c0-81.024-65.405-146.429-146.429-146.429z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "lock"
+ ],
+ "defaultCode": 59728,
+ "grid": 0
+ },
+ {
+ "id": 95,
+ "paths": [
+ "M512.5 79.522c251.468 0 455.557 204.089 455.557 455.557s-204.089 455.557-455.557 455.557c-251.468 0-455.557-204.089-455.557-455.557s204.089-455.557 455.557-455.557zM512.5 170.635c-201.357 0-364.444 163.089-364.444 364.444 0 84.278 28.7 161.722 76.533 223.677l511.59-511.59c-61.957-47.833-139.4-76.533-223.677-76.533zM512.5 899.522c201.357 0 364.444-163.089 364.444-364.444 0-84.278-28.7-161.722-76.533-223.677l-511.59 511.59c61.957 47.833 139.4 76.533 223.677 76.533z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cancel",
+ "ban-circle"
+ ],
+ "defaultCode": 59729,
+ "grid": 0
+ },
+ {
+ "id": 96,
+ "paths": [
+ "M811.459 492.37h-495.417l226.354-226.354c17.084-17.084 17.084-42.709 0-59.791s-42.709-17.084-59.791 0l-298.959 298.959c-4.271 4.271-8.541 8.541-8.541 12.813-4.271 8.541-4.271 21.354 0 34.166 4.271 4.271 4.271 8.541 8.541 12.813l298.959 298.959c8.541 8.541 21.354 12.813 29.896 12.813s21.354-4.271 29.896-12.813c17.084-17.084 17.084-42.709 0-59.791l-226.354-226.354h495.417c25.625 0 42.709-17.084 42.709-42.709s-17.084-42.709-42.709-42.709z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow-left"
+ ],
+ "defaultCode": 59730,
+ "grid": 0
+ },
+ {
+ "id": 97,
+ "paths": [
+ "M576.564 791.33h-199.307v-170.834h199.307c47.262 0 85.417 38.152 85.417 85.417s-38.152 85.417-85.417 85.417zM377.259 278.83h170.834c47.262 0 85.417 38.152 85.417 85.417s-38.152 85.417-85.417 85.417h-170.834zM696.147 523.12c55.235-38.723 93.958-101.929 93.958-158.876 0-128.695-99.654-227.778-227.778-227.778h-355.904v797.223h400.889c119.585 0 211.263-96.805 211.263-215.819 0-86.556-48.971-160.584-122.431-194.751z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format-bold"
+ ],
+ "defaultCode": 59731,
+ "grid": 0
+ },
+ {
+ "id": 98,
+ "paths": [
+ "M40.676 204.801h94.364v283.093h188.729v-283.093h94.364v660.552h-94.364v-283.093h-188.729v283.093h-94.364v-660.552zM512.5 393.532h108.988l15.1-141.546h94.364l-15.1 141.546h94.364l15.1-141.546h94.364l-15.1 141.546h79.741v94.364h-89.646l-9.435 94.364h99.084v94.364h-108.988l-15.1 141.546h-94.364l15.1-141.546h-94.364l-15.1 141.546h-94.364l15.1-141.546h-79.741v-94.364h89.646l9.435-94.364h-99.084v-94.364zM705.949 487.895l-9.435 94.364h94.364l9.435-94.364h-94.364z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format-header-pound"
+ ],
+ "defaultCode": 59732,
+ "grid": 0
+ },
+ {
+ "id": 99,
+ "paths": [
+ "M398.612 136.467v170.834h125.849l-194.751 455.555h-158.876v170.834h455.555v-170.834h-125.849l194.751-455.555h158.876v-170.834h-455.555z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format-italic"
+ ],
+ "defaultCode": 59733,
+ "grid": 0
+ },
+ {
+ "id": 100,
+ "paths": [
+ "M285.39 200.389h669.38v95.625h-669.38v-95.625zM285.39 582.891v-95.625h669.38v95.625h-669.38zM141.951 176.483c39.683 0 71.718 32.035 71.718 71.718s-32.035 71.718-71.718 71.718c-39.683 0-71.718-32.035-71.718-71.718s32.035-71.718 71.718-71.718zM141.951 463.362c39.683 0 71.718 32.035 71.718 71.718s-32.035 71.718-71.718 71.718c-39.683 0-71.718-32.035-71.718-71.718s32.035-71.718 71.718-71.718zM285.39 869.771v-95.625h669.38v95.625h-669.38zM141.951 750.236c39.683 0 71.718 32.035 71.718 71.718s-32.035 71.718-71.718 71.718c-39.683 0-71.718-32.035-71.718-71.718s32.035-71.718 71.718-71.718z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format-list-bulleted"
+ ],
+ "defaultCode": 59734,
+ "grid": 0
+ },
+ {
+ "id": 101,
+ "paths": [
+ "M633.413 749l213.922-213.922-213.922-213.922 65.107-65.107 279.028 279.028-279.028 279.028-65.107-65.107zM391.588 749l-213.922-213.922 213.922-213.922-65.107-65.107-279.028 279.028 279.028 279.028 65.107-65.107z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "code"
+ ],
+ "defaultCode": 59735,
+ "grid": 0
+ },
+ {
+ "id": 102,
+ "paths": [
+ "M427.084 876.745v-256.25h170.834v256.25h213.542v-341.667h128.125l-427.084-384.375-427.084 384.375h128.125v341.667h213.542z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "home"
+ ],
+ "defaultCode": 59736,
+ "grid": 0
+ },
+ {
+ "id": 103,
+ "paths": [
+ "M200.644 990.635l-95.799-95.799 407.655-407.655 407.655 407.655-95.799 95.799-311.858-311.177-311.858 311.177zM200.644 582.977l-95.799-95.799 407.655-407.655 407.655 407.655-95.799 95.799-311.858-311.177-311.858 311.177z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chevron-double-up"
+ ],
+ "defaultCode": 59737,
+ "grid": 0
+ },
+ {
+ "id": 104,
+ "paths": [
+ "M824.358 79.523l95.799 95.799-407.656 407.656-407.656-407.656 95.799-95.799 311.858 311.176 311.858-311.176zM824.358 487.18l95.799 95.799-407.656 407.656-407.656-407.656 95.799-95.799 311.858 311.176 311.858-311.176z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chevron-double-down"
+ ],
+ "defaultCode": 59738,
+ "grid": 0
+ },
+ {
+ "id": 105,
+ "paths": [
+ "M968.057 484.461h-404.938v-404.938c223.729 0 404.938 181.21 404.938 404.938zM866.823 585.696c0 140.716-71.877 264.73-180.703 337.618l-194.877-337.618h375.581zM461.883 990.635c-140.716 0-264.73-71.877-337.618-180.703l328.506-189.814 189.309 328.506c-53.655 26.827-115.408 42.012-180.198 42.012zM56.944 585.696c0-223.729 181.21-404.938 404.938-404.938v375.581l-362.925 209.557c-26.827-53.655-42.012-115.408-42.012-180.198z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chart-pie"
+ ],
+ "defaultCode": 59739,
+ "grid": 0
+ },
+ {
+ "id": 106,
+ "paths": [
+ "M692.192 525.195l190.473-329.286 77.716 44.923-234.948 406.552-292.448-168.461-214.281 370.614h743.025v89.846h-898.457v-808.612h89.846v653.178l247.076-428.565 291.999 169.808z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chart-line"
+ ],
+ "defaultCode": 59740,
+ "grid": 0
+ },
+ {
+ "id": 107,
+ "paths": [
+ "M961.73 939.387h-898.457v-808.612h89.846v718.767h89.846v-404.309h179.691v404.309h89.846v-584h179.691v584h89.846v-224.616h179.691v314.462z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chart-bar"
+ ],
+ "defaultCode": 59741,
+ "grid": 0
+ },
+ {
+ "id": 108,
+ "paths": [
+ "M512.69 198.789c108.8 0 217.082 40.871 299.876 123.664 166.129 166.129 165.591 433.621-0.532 600.282-97.124 98.72-230.346 137.995-357.195 121.015l28.132-104.025c90.763 8.495 185.23-22.295 254.76-91.823 124.197-124.197 124.197-325.879 0-450.076-62.629-62.629-143.835-92.883-225.040-92.883v243.084l-263.254-262.724 263.254-262.724v176.208zM212.282 923.264c-140.115-140.653-161.35-352.955-65.287-515.364l78.548 78.024c-57.852 118.359-36.090 264.311 61.568 361.975 27.597 27.597 59.449 49.359 92.883 64.747l-26.534 103.501c-53.072-21.234-99.78-51.485-141.177-92.883z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "restart"
+ ],
+ "defaultCode": 59742,
+ "grid": 0
+ },
+ {
+ "id": 109,
+ "paths": [
+ "M610.116 339.844h-73.21v244.046l208.901 123.973 35.142-59.063-170.83-101.52v-207.44zM585.713 95.795c-242.579 0-439.284 196.699-439.284 439.284h-146.428l193.285 196.699 197.192-196.699h-146.428c0-188.892 152.776-341.666 341.666-341.666s341.666 152.776 341.666 341.666c0 188.892-152.776 341.666-341.666 341.666-94.199 0-179.615-38.557-241.112-100.545l-69.307 69.307c79.558 80.047 188.404 128.854 310.423 128.854 242.579 0 439.284-196.699 439.284-439.284s-196.699-439.284-439.284-439.284z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "history"
+ ],
+ "defaultCode": 59743,
+ "grid": 0
+ },
+ {
+ "id": 110,
+ "paths": [
+ "M614.999 842.581v-153.748h-205v-205h205v-153.748l256.249 256.249zM922.501 227.576h-410l-102.5-102.5h-307.502c-56.887 0-102.5 45.614-102.5 102.5v614.999c0 56.375 46.125 102.5 102.5 102.5h820.001c56.375 0 102.5-46.125 102.5-102.5v-512.499c0-56.887-46.125-102.5-102.5-102.5z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "folder-move"
+ ],
+ "defaultCode": 59744,
+ "grid": 0
+ },
+ {
+ "id": 111,
+ "paths": [
+ "M410.001 125.077l102.5 102.5h410.001c56.375 0 102.5 46.125 102.5 102.5v512.499c0 56.375-46.125 102.5-102.5 102.5h-820c-56.887 0-102.5-46.125-102.5-102.5v-614.999c0-56.887 45.613-102.5 102.5-102.5h307.501zM666.251 381.33v153.748h-153.748v102.5h153.748v153.748h102.5v-153.748h153.748v-102.5h-153.748v-153.748h-102.5z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "folder-plus"
+ ],
+ "defaultCode": 59745,
+ "grid": 0
+ },
+ {
+ "id": 112,
+ "paths": [
+ "M85.416 876.751c0-15.724-12.748-28.472-28.474-28.472h28.474v28.472zM85.416 848.277v-683.338h288.584l80.921 113.889h484.662v43.039h85.416v-71.511c0-31.45-25.495-56.945-56.945-56.945h-469.042l-63.895-89.927c-10.68-15.033-27.979-23.962-46.419-23.962h-331.754c-31.45 0-56.945 25.495-56.945 56.945v740.284c0 31.45 25.495 56.945 56.945 56.945l356.017-0.006-0.001-85.416-327.543 0.004zM85.416 164.939v-28.472c0 15.724-12.748 28.472-28.472 28.472h28.472zM388.699 164.939c-9.22 0-17.869-4.464-23.211-11.981l8.512 11.981h14.697zM968.056 278.828c-15.724 0-28.472-12.748-28.472-28.472v28.472h28.472zM939.585 250.356c0 15.724 12.748 28.472 28.472 28.472h-28.472v-28.472zM939.585 321.867h85.416v-71.511c0-31.45-25.495-56.945-56.945-56.945h-469.042l-63.895-89.927c-10.68-15.033-27.979-23.962-46.419-23.962h-331.754c-31.45 0-56.945 25.495-56.945 56.945v740.284c0 31.45 25.495 56.945 56.945 56.945l356.017-0.006-0.001-85.416-327.543 0.004v-683.338h288.584l80.921 113.889h484.662v43.039zM388.699 164.939c-9.22 0-17.869-4.464-23.211-11.981l8.512 11.981h14.697zM56.945 164.939c15.724 0 28.472-12.748 28.472-28.472v28.472h-28.472zM56.944 848.277c15.726 0 28.474 12.748 28.474 28.472v-28.472h-28.474zM871.251 698.161v207.056c0 15.724-12.748 28.472-28.472 28.472h-148.056c-15.724 0-28.472-12.748-28.472-28.472v-207.056h-130.636c-12.765 0-23.115-10.349-23.115-23.115 0-6.13 2.435-12.010 6.77-16.345l229.050-229.050c11.284-11.284 29.579-11.284 40.862 0l229.050 229.050c9.027 9.027 9.027 23.663 0 32.69-4.335 4.335-10.214 6.77-16.345 6.77h-130.636zM982.292 364.245c23.587 0 42.709-19.121 42.709-42.709s-19.121-42.709-42.709-42.709c-23.587 0-42.709 19.121-42.709 42.709s19.121 42.709 42.709 42.709zM412.847 933.69c23.587 0 42.709-19.121 42.709-42.709s-19.121-42.709-42.709-42.709c-23.587 0-42.709 19.121-42.709 42.709s19.121 42.709 42.709 42.709z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "folder-upload"
+ ],
+ "defaultCode": 59746,
+ "grid": 0
+ },
+ {
+ "id": 113,
+ "paths": [
+ "M85.418 876.75c0-15.724-12.748-28.472-28.473-28.472h28.473v28.472zM85.418 848.276v-683.336h288.583l80.921 113.888h484.66v43.039h85.416v-71.511c0-31.45-25.495-56.945-56.945-56.945h-469.041l-63.895-89.927c-10.68-15.033-27.979-23.962-46.419-23.962h-331.753c-31.45 0-56.945 25.495-56.945 56.945v740.282c0 31.45 25.495 56.945 56.945 56.945l356.016-0.006-0.001-85.416-327.542 0.004zM85.418 164.94v-28.472c0 15.724-12.748 28.472-28.472 28.472h28.472zM388.699 164.94c-9.22 0-17.869-4.464-23.211-11.981l8.512 11.981h14.697zM968.055 278.829c-15.724 0-28.472-12.748-28.472-28.472v28.472h28.472zM939.583 250.356c0 15.724 12.748 28.472 28.472 28.472h-28.472v-28.472zM939.583 321.867h85.416v-71.511c0-31.45-25.495-56.945-56.945-56.945h-469.041l-63.895-89.927c-10.68-15.033-27.979-23.962-46.419-23.962h-331.753c-31.45 0-56.945 25.495-56.945 56.945v740.282c0 31.45 25.495 56.945 56.945 56.945l356.016-0.006-0.001-85.416-327.542 0.004v-683.336h288.583l80.921 113.888h484.66v43.039zM388.699 164.94c-9.22 0-17.869-4.464-23.211-11.981l8.512 11.981h14.697zM56.946 164.94c15.724 0 28.472-12.748 28.472-28.472v28.472h-28.472zM56.945 848.276c15.726 0 28.473 12.748 28.473 28.472v-28.472h-28.473zM982.291 364.246c23.587 0 42.709-19.121 42.709-42.709s-19.121-42.709-42.709-42.709c-23.587 0-42.709 19.121-42.709 42.709s19.121 42.709 42.709 42.709zM412.848 933.689c23.587 0 42.709-19.121 42.709-42.709s-19.121-42.709-42.709-42.709c-23.587 0-42.709 19.121-42.709 42.709s19.121 42.709 42.709 42.709zM933.687 758.353l0.458 156.456c0.090 6.096-2.542 11.477-6.701 14.915-5.524 3.946-11.21 4.904-16.702 2.944l-141.916-48.961-141.931 48.963c-5.489 1.961-11.17 1.003-15.556-2.074-5.303-4.301-7.932-9.689-7.848-15.785l0.461-156.456-87.866-125.934c-3.473-4.869-4.362-10.839-2.932-16.164 2.265-6.614 6.335-10.907 11.888-12.702l142.622-48.102 86.918-126.326c3.343-4.978 8.491-7.717 13.78-7.936 6.677 0.214 11.813 2.947 15.158 7.921l86.969 126.515 142.102 47.928c5.552 1.794 9.622 6.088 11.451 11.297 1.871 6.727 0.983 12.693-2.489 17.57l-87.866 125.933z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "folder-star"
+ ],
+ "defaultCode": 59747,
+ "grid": 0
+ },
+ {
+ "id": 114,
+ "paths": [
+ "M93.758 136.61c-52.036 0-93.756 41.723-93.756 93.756v562.542c0 51.566 42.19 93.756 93.756 93.756h375.028v-88.6l468.786-468.786v-5.156c0-52.036-42.19-93.756-93.756-93.756h-375.028l-93.756-93.756h-281.272zM939.447 470.857c-6.562 0-13.127 2.812-18.283 7.968l-46.881 46.881 96.103 96.103 46.881-46.881c10.315-9.844 10.315-26.252 0-36.095l-60.006-60.006c-5.156-5.156-11.252-7.968-17.811-7.968zM847.094 552.892l-284.553 284.085v96.568h96.568l284.085-284.553-96.103-96.103z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "folder-edit"
+ ],
+ "defaultCode": 59748,
+ "grid": 0
+ },
+ {
+ "id": 115,
+ "paths": [
+ "M922.501 227.577c56.375 0 102.5 46.125 102.5 102.5v512.499c0 56.375-46.125 102.5-102.5 102.5h-820.001c-56.887 0-102.5-46.125-102.5-102.5v-614.999c0-56.887 45.613-102.5 102.5-102.5h307.501l102.5 102.5h410zM884.062 586.328h-166.562v-205.001h-102.5v205.001h-166.562l217.813 217.813z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "folder-download"
+ ],
+ "defaultCode": 59749,
+ "grid": 0
+ },
+ {
+ "id": 116,
+ "paths": [
+ "M922.501 842.58h-820v-512.499h820zM922.501 227.577h-410l-102.5-102.5h-307.501c-56.887 0-102.5 45.613-102.5 102.5v614.999c0 56.375 46.125 102.5 102.5 102.5h820c56.375 0 102.5-46.125 102.5-102.5v-512.499c0-56.887-46.125-102.5-102.5-102.5z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "folder-outline"
+ ],
+ "defaultCode": 59750,
+ "grid": 0
+ },
+ {
+ "id": 117,
+ "paths": [
+ "M922.499 740.078c0 17.31-9.569 32.344-24.144 40.089l-359.888 202.269c-7.29 5.469-16.4 8.2-25.969 8.2s-18.679-2.731-25.969-8.2l-359.888-202.269c-14.579-7.744-24.144-22.779-24.144-40.089v-409.998c0-17.31 9.569-32.344 24.144-40.089l359.888-202.269c7.29-5.469 16.4-8.2 25.969-8.2s18.679 2.731 25.969 8.2l359.888 202.269c14.579 7.744 24.144 22.779 24.144 40.089v409.998zM512.5 177.471l-271.508 152.608 271.508 152.608 271.508-152.608-271.508-152.608zM193.612 713.198l273.331 153.977v-305.677l-273.331-153.52v305.219zM831.389 713.198v-305.219l-273.331 153.52v305.677l273.331-153.977z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cube"
+ ],
+ "defaultCode": 59751,
+ "grid": 0
+ },
+ {
+ "id": 118,
+ "paths": [
+ "M466.944 808.411h91.111v-91.111h-91.111v91.111zM512.5 79.522c-251.468 0-455.557 204.089-455.557 455.557s204.089 455.557 455.557 455.557c251.468 0 455.557-204.089 455.557-455.557s-204.089-455.557-455.557-455.557zM512.5 899.522c-200.9 0-364.444-163.544-364.444-364.444s163.544-364.444 364.444-364.444c200.9 0 364.444 163.544 364.444 364.444s-163.544 364.444-364.444 364.444zM512.5 261.746c-100.678 0-182.222 81.544-182.222 182.222h91.111c0-50.111 41-91.111 91.111-91.111s91.111 41 91.111 91.111c0 91.111-136.667 79.722-136.667 227.777h91.111c0-102.5 136.667-113.889 136.667-227.777 0-100.678-81.544-182.222-182.222-182.222z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "help"
+ ],
+ "defaultCode": 59752,
+ "grid": 0
+ },
+ {
+ "id": 119,
+ "paths": [
+ "M301.77 581.91h655.609v-93.658h-655.609zM301.77 862.888h655.609v-93.658h-655.609zM301.77 300.937h655.609v-93.658h-655.609zM67.623 488.255h84.292l-84.292 98.34v42.146h140.486v-46.829h-84.292l84.292-98.34v-42.146h-140.486zM114.452 347.765h46.829v-187.319h-93.658v46.829h46.829zM67.623 769.228h93.658v23.413h-46.829v46.829h46.829v23.413h-93.658v46.829h140.486v-187.319h-140.486v46.829z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format-list-numbers"
+ ],
+ "defaultCode": 59753,
+ "grid": 0
+ },
+ {
+ "id": 120,
+ "paths": [
+ "M388.847 844.206h-185.475l-123.648-247.302v-370.954h370.954v370.954h-185.475zM883.45 844.206h-185.475l-123.648-247.302v-370.954h370.954v370.954h-185.475l123.648 247.302z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format-quote-close"
+ ],
+ "defaultCode": 59754,
+ "grid": 0
+ },
+ {
+ "id": 121,
+ "paths": [
+ "M56.944 79.522h325.398v130.158h-195.239v195.239h-130.158v-325.398zM642.659 79.522h325.398v325.398h-130.158v-195.239h-195.239v-130.158zM837.898 665.237h130.158v325.398h-325.398v-130.158h195.239v-195.239zM382.342 860.476v130.158h-325.398v-325.398h130.158v195.239h195.239z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fullscreen"
+ ],
+ "defaultCode": 59755,
+ "grid": 0
+ },
+ {
+ "id": 122,
+ "paths": [
+ "M335.34 611.004l126.545 151.852 177.16-227.778 227.778 303.705h-708.643zM968.057 889.401v-708.643c0-56.186-45.556-101.234-101.234-101.234h-708.643c-55.678 0-101.234 45.556-101.234 101.234v708.643c0 55.678 45.556 101.234 101.234 101.234h708.643c55.678 0 101.234-45.556 101.234-101.234z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "image"
+ ],
+ "defaultCode": 59756,
+ "grid": 0
+ },
+ {
+ "id": 123,
+ "paths": [
+ "M150.453 127.775h724.096c49.781 0 90.512 40.73 90.512 90.512v678.839c0 49.781-40.73 90.512-90.512 90.512h-724.096c-49.781 0-90.512-40.73-90.512-90.512v-678.839c0-49.781 40.73-90.512 90.512-90.512zM150.453 308.8v135.769h181.023v-135.769h-181.023zM421.988 308.8v135.769h181.023v-135.769h-181.023zM874.548 444.566v-135.769h-181.023v135.769h181.023zM150.453 535.079v135.769h181.023v-135.769h-181.023zM150.453 897.126h181.023v-135.769h-181.023v135.769zM421.988 535.079v135.769h181.023v-135.769h-181.023zM421.988 897.126h181.023v-135.769h-181.023v135.769zM874.548 897.126v-135.769h-181.023v135.769h181.023zM874.548 535.079h-181.023v135.769h181.023v-135.769z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "table-large"
+ ],
+ "defaultCode": 59757,
+ "grid": 0
+ },
+ {
+ "id": 124,
+ "paths": [
+ "M46.59 174.93l59.637-59.171 779.003 779.003-59.171 59.637-143.501-143.501c-53.579 17.704-110.422 27.023-170.057 27.023-232.955 0-431.899-144.898-512.501-349.431 32.146-82.001 83.398-154.218 148.625-211.523l-102.035-102.035zM512.5 348.716c77.343 0 139.773 62.432 139.773 139.773 0 16.307-2.795 32.146-7.921 46.591l-178.442-178.442c14.442-5.124 30.285-7.921 46.591-7.921zM512.5 139.058c232.955 0 431.899 144.898 512.501 349.431-38.204 96.91-102.965 180.773-186.364 241.807l-66.16-66.625c63.365-43.796 115.545-103.433 150.954-175.183-76.875-156.547-235.75-256.251-410.932-256.251-50.785 0-100.635 8.386-147.228 23.295l-71.75-71.284c67.092-28.886 141.172-45.192 218.978-45.192zM101.568 488.489c76.875 156.547 235.75 256.251 410.932 256.251 32.146 0 63.829-3.263 93.182-9.784l-106.228-106.693c-66.625-6.989-119.74-60.103-126.727-126.727l-158.409-158.876c-46.125 39.604-84.795 88.988-112.751 145.831z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "eye-off"
+ ],
+ "defaultCode": 59758,
+ "grid": 0
+ },
+ {
+ "id": 125,
+ "paths": [
+ "M204.999 483.828h563.752c28.305 0 51.25 22.945 51.25 51.25v51.25c0 28.305-22.945 51.25-51.25 51.25h-563.752v-153.75zM204.999 330.078h743.126c42.457 0 76.875 34.419 76.875 76.875s-34.419 76.875-76.875 76.875h-743.126v-153.75zM281.874 125.077c42.457 0 76.875 34.419 76.875 76.875v128.125h-153.75v-128.125c0-42.457 34.419-76.875 76.875-76.875zM76.875 330.078h25.626c28.305 0 51.25 22.945 51.25 51.25v512.5c0 28.305-22.945 51.25-51.25 51.25h-25.626c-42.457 0-76.875-34.419-76.875-76.875v-461.25c0-42.457 34.419-76.875 76.875-76.875v0zM204.999 637.58h512.5c28.305 0 51.25 22.945 51.25 51.25v51.25c0 28.305-22.945 51.25-51.25 51.25h-512.5v-153.75zM204.999 791.33h461.25c28.305 0 51.25 22.945 51.25 51.25v25.626c0 42.457-34.419 76.875-76.875 76.875h-435.625v-153.75z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hand-right-alt"
+ ],
+ "defaultCode": 59759,
+ "grid": 0
+ },
+ {
+ "id": 126,
+ "paths": [
+ "M28.472 22.578v1025.001M56.945 22.578v1025.001M85.416 22.578v1025.001M113.889 22.578v1025.001M142.361 22.578v1025.001M170.834 22.578v1025.001M199.306 22.578v1025.001M227.778 22.578v1025.001M256.25 22.578v1025.001M284.722 22.578v1025.001M313.195 22.578v1025.001M341.667 22.578v1025.001M370.139 22.578v1025.001M398.611 22.578v1025.001M427.084 22.578v1025.001M455.556 22.578v1025.001M484.029 22.578v1025.001M512.5 22.578v1025.001M540.972 22.578v1025.001M569.445 22.578v1025.001M597.917 22.578v1025.001M626.39 22.578v1025.001M654.862 22.578v1025.001M683.334 22.578v1025.001M711.806 22.578v1025.001M740.279 22.578v1025.001M768.751 22.578v1025.001M797.223 22.578v1025.001M825.695 22.578v1025.001M854.167 22.578v1025.001M882.64 22.578v1025.001M911.112 22.578v1025.001M939.585 22.578v1025.001M968.056 22.578v1025.001M996.529 22.578v1025.001M0 51.050h1025.001M0 79.523h1025.001M0 107.994h1025.001M0 136.467h1025.001M0 164.939h1025.001M0 193.412h1025.001M0 221.884h1025.001M0 250.356h1025.001M0 278.828h1025.001M0 307.3h1025.001M0 335.773h1025.001M0 364.245h1025.001M0 392.718h1025.001M0 421.189h1025.001M0 449.662h1025.001M0 478.134h1025.001M0 506.607h1025.001M0 535.079h1025.001M0 563.55h1025.001M0 592.023h1025.001M0 620.495h1025.001M0 648.968h1025.001M0 677.44h1025.001M0 705.912h1025.001M0 734.384h1025.001M0 762.857h1025.001M0 791.329h1025.001M0 819.801h1025.001M0 848.273h1025.001M0 876.745h1025.001M0 905.218h1025.001M0 933.69h1025.001M0 962.163h1025.001M0 990.634h1025.001M0 1019.107h1025.001M827.896 131.483l32.853 78.846-700.712 291.964c-0.293 0.992 234.447 125.486 704.221 373.48l-39.869 75.542-704.298-371.712c-17.761-9.372-31.701-24.64-39.427-43.178-18.353-44.043 2.475-94.622 46.518-112.976l700.714-291.965zM840.332 79.109l13.663 3.663c39.064 10.465 62.244 50.618 51.777 89.681l-60.192 224.644-84.391-22.612 79.144-295.374zM606.741 106.969l22.612-84.391 224.642 60.192c39.064 10.467 62.244 50.618 51.777 89.681l-3.663 13.663-295.369-79.144zM838.378 991.046l13.663-3.663c39.064-10.465 62.244-50.618 51.777-89.681l-60.192-224.642-84.391 22.612 79.144 295.372zM604.787 963.186l22.612 84.391 224.642-60.192c39.064-10.465 62.244-50.618 51.777-89.681l-3.663-13.663-295.369 79.144z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "change"
+ ],
+ "defaultCode": 59760,
+ "grid": 0
+ },
+ {
+ "id": 127,
+ "paths": [
+ "M411.266 155.451v202.469h202.469v-202.469h-202.469zM550.466 737.549h37.964c27.955 0 50.617 22.662 50.617 50.617v151.852c0 27.955-22.662 50.617-50.617 50.617h-151.852c-27.955 0-50.617-22.662-50.617-50.617v-151.852c0-27.955 22.662-50.617 50.617-50.617h37.964v-143.799h-255.387v143.799h40.264c27.955 0 50.617 22.662 50.617 50.617v151.852c0 27.955-22.662 50.617-50.617 50.617h-151.852c-27.955 0-50.617-22.662-50.617-50.617v-151.852c0-27.955 22.662-50.617 50.617-50.617h35.661v-169.107c0-27.955 22.662-50.617 50.617-50.617h280.697v-83.978h-63.272c-41.933 0-75.926-33.993-75.926-75.926v-202.469c0-41.933 33.993-75.926 75.926-75.926h202.469c41.933 0 75.926 33.993 75.926 75.926v202.469c0 41.933-33.993 75.926-75.926 75.926h-63.272v83.978h280.697c27.955 0 50.617 22.662 50.617 50.617v169.107h35.661c27.955 0 50.617 22.662 50.617 50.617v151.852c0 27.955-22.662 50.617-50.617 50.617h-151.852c-27.955 0-50.617-22.662-50.617-50.617v-151.852c0-27.955 22.662-50.617 50.617-50.617h40.264v-143.799h-255.387v143.799zM132.872 813.474v101.236h101.236v-101.236h-101.236zM790.895 813.474v101.236h101.236v-101.236h-101.236zM461.883 813.474v101.236h101.236v-101.236h-101.236z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "treemap-alt"
+ ],
+ "defaultCode": 59761,
+ "grid": 0
+ },
+ {
+ "id": 128,
+ "paths": [
+ "M638.010 652.455h313.775v125.51h-188.266v188.266h-125.51v-313.775zM73.214 652.455h313.775v313.775h-125.51v-188.266h-188.266v-125.51zM261.479 87.659h125.51v313.775h-313.775v-125.51h188.266v-188.266zM951.786 275.924v125.51h-313.775v-313.775h125.51v188.266h188.266z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fullscreen-exit"
+ ],
+ "defaultCode": 59762,
+ "grid": 0
+ },
+ {
+ "id": 129,
+ "paths": [
+ "M181.912 500.738c-39.44 79.525-56.657 134.070-57.457 204.315-1.894 166.244 165.317 307.065 391.073 299.072 217.526-7.702 384.97-179.91 385.037-351.598 0.044-113.059-41.643-227.983-111.726-322.223-6.815 33.134-21.525 64.589-46.565 87.567l-54.101 49.643-16.999-71.431c-30.919-129.927-114.539-253.166-193.911-307.009-15.026 138.72-84.824 306.871-202.010 418.979l-46.194 44.193-23.667-59.388c-3.102-7.786-3.632-12.209-4.523-25.279-0.041-0.606-0.141-2.184-0.267-4.174-8.088 16.247-18.4 36.749-18.687 37.329zM713.118 386.103c6.051-5.553 58.78-83.258 19.7-179.468 122.938 106.742 210.93 272.999 210.863 445.909s-163.767 385.366-426.63 394.672c-262.863 9.305-437.769-162.285-435.715-342.655s117.434-275.32 123.656-389.623c22.53 31.074 31.344 72.194 35.3 105.348 0 7.941 1.716 26.813 5.149 56.613 26.586-26.015 39.791-40.093 39.616-42.232 120.551-142.998 154.493-328.988 151.98-412.090 204.816 86.236 274.098 355.195 276.081 363.527z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "severity"
+ ],
+ "defaultCode": 59763,
+ "grid": 0
+ },
+ {
+ "id": 130,
+ "paths": [
+ "M256.251 673.372c17.973 0 32.919 12.95 36.016 30.028l0.59 6.579v292.857c0 17.971-12.95 32.917-30.028 36.016l-6.581 0.59h-219.643c-17.973 0-32.919-12.95-36.016-30.028l-0.59-6.579v-292.855c0-17.973 12.95-32.919 30.026-36.018l6.581-0.59h219.643zM622.323 526.944c17.971 0 32.917 12.95 36.016 30.028l0.59 6.579v439.285c0 17.971-12.95 32.917-30.028 36.016l-6.579 0.59h-219.643c-17.973 0-32.919-12.95-36.016-30.028l-0.59-6.579v-439.285c0-17.973 12.95-32.917 30.026-36.016l6.581-0.59h219.643zM988.393 380.516c17.971 0 32.917 12.95 36.016 30.026l0.59 6.579v585.715c0 17.971-12.95 32.917-30.028 36.016l-6.579 0.59h-219.643c-17.971 0-32.917-12.95-36.016-30.028l-0.59-6.579v-585.715c0-17.973 12.95-32.919 30.028-36.016l6.581-0.59h219.643zM73.142 746.366l-0.147 219.863 146.722 0.145 0.145-219.936-146.72-0.073zM439.286 599.938l-0.293 366.291 146.722 0.145 0.219-366.363-146.648-0.073zM805.357 453.509l-0.293 512.72 146.72 0.145 0.219-512.793-146.648-0.073zM369.256 245.646l-282.775 251.298c-0.189 0.169-0.381 0.335-0.574 0.5-15.323 13.054-38.328 11.216-51.382-4.108-13.365-15.687-11.59-39.215 3.977-52.72l309.133-268.175c12.704-11.020 31.284-11.968 45.041-2.295l218.2 153.397 289.888-238.238h-48.272c-20.705 0-34.553-14.198-34.553-35.43s13.846-35.43 34.553-35.43h137.96c20.705 0 34.553 14.198 34.553 35.43v141.593c0 21.233-13.846 35.43-34.553 35.43s-34.553-14.198-34.553-35.43v-63.697l-323.595 268.279c-12.663 10.499-30.775 11.262-44.276 1.865l-218.77-152.268z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "menu-report"
+ ],
+ "defaultCode": 59764,
+ "grid": 0
+ },
+ {
+ "id": 131,
+ "paths": [
+ "M789.406 355.908c0 189.566-147.713 341.464-333.24 342.071h-7.091c-177.256 3.645-328.514 132.454-361.601 311.085-3.544 18.835-18.317 30.379-36.633 30.379h-3.544c-22.453-3.645-33.087-26.734-29.544-45.569 29.544-159.795 136.486-284.959 277.11-342.073-103.99-56.506-170.165-167.087-170.165-295.894 0-189.566 148.304-341.464 332.649-341.464s332.059 151.896 332.059 341.464zM198.553 355.908c0 144.606 111.080 261.871 251.703 266.123h11.226c140.032-4.253 254.658-121.518 254.658-266.123 0-148.252-114.625-266.123-258.794-266.123s-258.794 117.872-258.794 266.123zM939.585 766.11c35.043 0 63.925 26.379 67.873 60.364l0.46 7.969v136.666c0 35.043-26.379 63.925-60.364 67.873l-7.971 0.46h-205c-35.043 0-63.925-26.379-67.873-60.364l-0.46-7.969v-136.666c0-35.043 26.381-63.925 60.364-67.873l7.969-0.46h205zM939.585 834.444h-205v136.666h205v-136.666zM818.857 937.401c-18.809 0-36.445-13.776-36.445-34.166s14.109-34.166 36.445-34.166h36.445c21.749 0 36.445 13.776 36.445 34.166s-14.109 34.166-36.445 34.166h-36.445z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "menu-users"
+ ],
+ "defaultCode": 59765,
+ "grid": 0
+ },
+ {
+ "id": 132,
+ "paths": [
+ "M402.678 819.801h73.214v219.643h-73.214v-219.643zM549.107 819.801h73.214v219.643h-73.214v-219.643zM329.465 966.23h366.072c20.219 0 36.607 16.391 36.607 36.607s-16.391 36.607-36.607 36.607h-366.072c-20.217 0-36.607-16.391-36.607-36.607s16.391-36.607 36.607-36.607zM73.214 124.263v658.928h878.573v-658.928h-878.573zM36.607 51.050h951.786c20.217 0 36.607 16.389 36.607 36.607v732.144c0 20.219-16.391 36.607-36.607 36.607h-951.786c-20.219 0-36.607-16.391-36.607-36.607v-732.144c0-20.217 16.389-36.607 36.607-36.607zM525.504 345.081c10.027-17.212 30.759-24.404 48.947-17.902l5.87 2.636 6.442 3.499c17.268 9.927 24.535 30.643 17.962 49.009l-2.71 6.017-96.301 169.049c-9.632 17.516-30.402 25.017-48.647 18.541l-6.959-3.274-5.859-3.138c-17.269-9.927-24.536-30.645-17.962-49.011l2.71-6.017 96.506-169.41zM299.938 337.84c11.861-11.803 29.36-15.007 44.27-8.94l6.207 3.17 1.593 1.126 5.705 4.678c11.943 12.093 15.122 29.58 8.265 45.495l-3.556 6.706-4.69 5.673-52.803 52.583 54.56 54.16 4.565 5.949c9.921 16.040 7.604 36.969-5.913 50.457-11.827 11.801-29.334 15.015-45.325 8.212l-6.74-3.532-5.73-4.688-81.869-81.284c-11.772-12.011-14.986-29.612-8.244-45.744l3.503-6.803 4.87-6.035 81.328-81.18zM674.261 337.347c11.827-11.803 29.336-15.015 44.258-8.965l6.213 3.162 1.595 1.122 5.762 4.72 81.287 81.16c4.649 4.279 8.153 9.594 10.362 16.224l1.771 7.078 0.349 7.447-0.644 6.533c-0.676 3.591-1.826 7.067-3.715 10.743l-3.418 5.707-4.259 5.056-81.681 80.95c-12.049 12.141-29.896 15.328-46.132 8.033l-5.998-3.23-5.851-4.81c-11.793-11.892-15.002-29.352-8.177-45.287l3.543-6.716 4.698-5.702 52.776-52.722-52.803-52.656c-12.411-12.439-15.154-30.87-8.233-45.956l3.556-6.233 4.74-5.661z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "menu-backend"
+ ],
+ "defaultCode": 59766,
+ "grid": 0
+ },
+ {
+ "id": 133,
+ "paths": [
+ "M73.214 87.658v878.573h878.573v-878.573h-878.573zM10.982 14.443h1003.037c6.065 0 10.982 4.917 10.982 10.982v1003.037c0 6.065-4.917 10.982-10.982 10.982h-1003.037c-6.065 0-10.982-4.917-10.982-10.982v-1003.037c0-6.065 4.917-10.982 10.982-10.982zM486.875 270.693h51.25c6.065 0 10.982 4.917 10.982 10.982v344.107c0 6.065-4.917 10.982-10.982 10.982h-51.25c-6.065 0-10.982-4.917-10.982-10.982v-344.107c0-6.065 4.917-10.982 10.982-10.982zM523.483 563.55h197.678c6.065 0 10.982 4.917 10.982 10.982v51.25c0 6.065-4.917 10.982-10.982 10.982h-197.678c-6.065 0-10.982-4.917-10.982-10.982v-51.25c0-6.065 4.917-10.982 10.982-10.982z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "menu-recent"
+ ],
+ "defaultCode": 59767,
+ "grid": 0
+ },
+ {
+ "id": 134,
+ "paths": [
+ "M754.926 14.879l7.981 1.288c31.376 6.886 55.757 34.192 59.101 67.927l0.4 8.308-0.009 464.405 6.926 6.924 51.78 0.047 8.075 0.427 7.983 1.286c31.379 6.886 55.762 34.192 59.107 67.927l0.4 8.308-0.009 320.101-0.417 8.309-1.262 8.219c-6.734 32.301-33.382 57.272-66.157 60.683l-8.067 0.407-813.275-0.435-7.981-1.288c-31.376-6.886-55.755-34.192-59.101-67.927l-0.4-8.308 0.009-548.389 0.417-8.309 1.262-8.219c6.734-32.301 33.382-57.272 66.157-60.683l8.067-0.407 51.427 0.009 6.932-6.926v-236.5l0.417-8.309 1.262-8.219c6.734-32.301 33.382-57.272 66.157-60.683l8.067-0.407 544.753 0.435zM284.24 406.17h-208.685l-6.934 6.926v548.731l6.934 6.926h805.567l6.932-6.926v-320.438l-6.932-6.924h-384.883l-12.616-0.464-12.136-1.338c-52.17-7.697-98.519-39.8-124.887-87.318l-5.835-11.466-3.625-8.363-46.474-115.007-6.429-4.333zM746.858 85.135h-537.045l-6.934 6.926v229.436l6.934 6.924h74.426l8.613 0.46 8.77 1.418c23.062 5.076 43.303 20.341 54.909 42.021l4.091 8.778 46.397 114.793 3.987 8.623 5.508 9.262c15.881 23.7 41.028 39.25 69.090 42.394l10.255 0.578 251.005-0.037 6.932-6.924v-457.726l-6.932-6.926zM612.596 373.742l6.109 0.505c17.901 2.998 31.612 18.954 31.612 38.252 0 21.444-16.928 38.758-37.721 38.758h-134.26l-6.109-0.507c-17.901-2.998-31.612-18.952-31.612-38.25 0-21.444 16.928-38.758 37.721-38.758h134.26zM612.596 190.634l6.109 0.507c17.901 2.998 31.612 18.952 31.612 38.25 0 21.444-16.928 38.758-37.721 38.758h-268.522l-6.109-0.505c-17.901-2.998-31.612-18.954-31.612-38.252 0-21.444 16.928-38.758 37.721-38.758h268.522z"
+ ],
+ "width": 952,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "menu-doc"
+ ],
+ "defaultCode": 59768,
+ "grid": 0
+ },
+ {
+ "id": 135,
+ "paths": [
+ "M478.334 646.527c-28.305 0-51.25-22.945-51.25-51.25s22.945-51.25 51.25-51.25c28.305 0 51.25 22.945 51.25 51.25s-22.945 51.25-51.25 51.25zM644.246 646.527c-28.305 0-51.25-22.945-51.25-51.25s22.945-51.25 51.25-51.25c28.305 0 51.25 22.945 51.25 51.25s-22.945 51.25-51.25 51.25zM136.667 151.11v68.334h-68.334v-102.5c0-18.869 15.297-34.166 34.166-34.166h751.668c18.869 0 34.166 15.297 34.166 34.166v102.5h-68.334v-68.334h-683.335zM897.421 424.443v-136.667h-828.389v615.002h828.389v-136.667h-589.92c-18.869 0-34.166-15.297-34.166-34.166v-273.333c0-18.869 15.297-34.166 34.166-34.166h589.92zM955.97 492.777h-618.643v205.001h618.643v-205.001zM966.454 936.944c0 18.869-15.453 34.166-34.517 34.166h-897.421c-19.063 0-34.516-15.297-34.516-34.166v-683.335c0-18.869 15.453-34.166 34.516-34.166h897.421c19.063 0 34.517 15.297 34.517 34.166v168.571h24.031c19.063 0 34.516 15.297 34.516 34.166v277.481c0 18.869-15.453 34.166-34.516 34.166h-24.031v168.95z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "menu-project"
+ ],
+ "defaultCode": 59769,
+ "grid": 0
+ },
+ {
+ "id": 136,
+ "paths": [
+ "M68.334 410.511v560.599h888.335v-560.599l-444.167-319.8-444.167 319.8zM14.203 365.283l478.334-344.4c11.925-8.585 28.002-8.585 39.928 0l478.334 344.4c8.918 6.421 14.203 16.737 14.203 27.727v612.267c0 18.869-15.298 34.166-34.166 34.166h-956.667c-18.869 0-34.166-15.298-34.166-34.166v-612.267c0-10.988 5.285-21.306 14.203-27.727zM307.5 526.944h410c18.869 0 34.166 15.298 34.166 34.166s-15.298 34.166-34.166 34.166h-410c-18.869 0-34.166-15.298-34.166-34.166s15.298-34.166 34.166-34.166zM307.5 731.944h410c18.869 0 34.166 15.298 34.166 34.166s-15.298 34.166-34.166 34.166h-410c-18.869 0-34.166-15.298-34.166-34.166s15.298-34.166 34.166-34.166z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "menu-my"
+ ],
+ "defaultCode": 59770,
+ "grid": 0
+ },
+ {
+ "id": 137,
+ "paths": [
+ "M457.834 60.631h-345.481c-19.575 0-34.961 17.178-34.961 39.050v337.301c0 21.873 15.386 39.050 34.961 39.050h345.481c19.575 0 34.961-17.178 34.961-39.050v-337.301c0-21.873-15.386-39.050-34.961-39.050zM179.104 374.872v-207.703h207.703v207.703h-207.703zM909.361 578.873h-345.603c-19.643 0-34.966 17.181-34.966 38.906v337.657c0 21.726 15.323 38.841 34.966 38.841h345.536c19.578 0 34.901-17.114 34.901-38.841v-337.657c0.065-21.726-16.697-38.906-34.835-38.906zM631.99 889.394v-207.703h207.703v207.703h-207.703zM625.88 134.841c109.148 10.964 196.719 76.672 215.403 189.394h-63.177l101.956 151.799 102.024-151.799h-70.368c-18.685-151.799-133.543-250.465-278.647-264.521-20.096-1.614-38.713 15.604-38.713 37.53 1.345 18.831 14.249 35.98 31.522 37.597zM398.985 919.055c-122.051-10.964-215.403-92.345-219.706-226.991h67.478l-101.889-151.799-101.956 151.799h67.478c2.823 173.793 124.874 286.445 281.47 302.118 20.096 1.546 38.781-15.672 38.781-37.597v0c0.256-18.653-13.24-34.65-31.656-37.53v0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "swap"
+ ],
+ "defaultCode": 59771,
+ "grid": 0
+ },
+ {
+ "id": 138,
+ "paths": [
+ "M951.785 526.944c0-242.61-196.674-439.285-439.285-439.285s-439.285 196.674-439.285 439.285c0 242.61 196.674 439.285 439.285 439.285s439.285-196.674 439.285-439.285zM1025 526.944c0 283.045-229.454 512.501-512.501 512.501s-512.499-229.454-512.499-512.501c0-283.047 229.454-512.499 512.499-512.499s512.501 229.454 512.501 512.499zM549.106 511.936l135.815 135.447c14.354 14.354 14.354 37.629 0 51.981s-37.629 14.354-51.981 0l-146.429-146.429c-6.854-6.909-10.671-16.261-10.615-25.99v-329.465c0-20.218 16.389-36.606 36.606-36.606s36.606 16.389 36.606 36.606v314.455z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "clock"
+ ],
+ "defaultCode": 59772,
+ "grid": 0
+ },
+ {
+ "id": 139,
+ "paths": [
+ "M951.785 526.944c0-242.61-196.674-439.285-439.285-439.285s-439.285 196.674-439.285 439.285c0 242.61 196.674 439.285 439.285 439.285s439.285-196.674 439.285-439.285zM1025 526.944c0 283.045-229.454 512.501-512.501 512.501s-512.499-229.454-512.499-512.501c0-283.047 229.454-512.499 512.499-512.499s512.501 229.454 512.501 512.499zM559.066 791.106h-85.713v-109.103h-124.135v-44.503h124.135v-61.728l-0.738-0.718h-123.397v-44.503h97.534l-144.085-251.943h97.534l116.007 220.36 116.007-220.36h97.534l-144.085 251.943h98.273v44.503h-124.135l-0.738 0.718v61.728h124.874v44.503h-124.874v109.103z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cost"
+ ],
+ "defaultCode": 59773,
+ "grid": 0
+ },
+ {
+ "id": 140,
+ "paths": [
+ "M585.243 494.968c59.8-44.92 98.437-114.516 98.437-192.706 0-135.147-114.993-245.112-256.384-245.112s-256.384 109.965-256.384 245.112c0 78.19 38.629 147.785 98.436 192.706-157.616 60.215-269.349 207.387-269.349 379.224v81.683c0 22.593 19.116 40.86 42.717 40.86h769.152c23.607 0 42.718-18.269 42.718-40.86v-81.681c0.001-171.906-111.732-319.017-269.344-379.225zM241.821 301.937c0-97.806 83.176-177.313 185.474-177.313 102.291 0 185.471 79.51 185.471 177.313 0 97.781-83.18 177.313-185.471 177.313-102.298 0-185.474-79.503-185.474-177.313zM64.222 929.706v-43.388c0-191.386 162.867-347.108 363.104-347.108 200.163 0 363.002 155.723 363.002 347.108v43.388h-726.107zM896.875 343.182c0-112.653-95.844-204.32-213.666-204.32-3.557 0-6.846 0.836-10.302 0.992 3.331 4.609 6.513 9.314 9.545 14.108 17.356 21.756 30.981 46.361 39.957 72.949 51.464 15.897 107.744 61.78 107.744 116.235 0 48.059-29.554 91.697-75.269 111.536-16.925 6.139-28.86 20.73-28.86 37.786 0 17.661 12.805 32.697 30.686 38.42l8.343 1.924c113.935 27.515 193.287 124.394 193.287 237.339v31.699h-61.233c5.65 26.401 8.613 44.347 8.613 72.341h76.559c23.639 0 42.719-18.266 42.719-40.858v-63.186c0.069-124.654-72.472-234.841-183.711-289.932 34.976-36.859 55.583-85.33 55.583-137.036z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "group"
+ ],
+ "defaultCode": 59774,
+ "grid": 0
+ },
+ {
+ "id": 141,
+ "paths": [
+ "M512.541 14.44c181.289 0 329.433 137.796 329.433 307.475l2.157 68.409h34.103c40.494 0 73.555 30.985 73.555 68.329l-1.038 512.459c0 37.426-33.064 68.329-73.555 68.329h-730.427c-40.492 0-73.555-30.985-73.555-68.329v-512.459c0-37.426 33.064-68.329 73.555-68.329h38.333l-2.079-68.409c0.082-169.679 147.187-307.475 329.515-307.475h0.001zM512.541 561.148c-60.696 0-109.81 45.906-109.81 102.493 0 37.345 22.361 70.45 54.306 88.631v97.112c0 29.923 24.597 53.407 55.507 53.407 29.871 0 54.306-23.485 54.306-53.407v-97.029c33.142-18.183 54.467-50.227 54.467-88.631 1.038-56.668-48.079-102.573-108.773-102.573v0zM512.541 116.935c-121.55 0-219.623 91.811-219.623 204.983v68.409h438.21v-68.49c0-113.173-98.073-204.983-218.584-204.983v0.082z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "private"
+ ],
+ "defaultCode": 59775,
+ "grid": 0
+ },
+ {
+ "id": 142,
+ "paths": [
+ "M0.003 51.046h1024.998v111.969h-1024.998v-111.969zM341.669 330.988h683.335v111.969h-683.335v-111.969zM341.669 610.925h683.335v111.969h-683.335v-111.969zM0.003 890.862h1024.998v111.969h-1024.998v-111.969zM227.783 330.988v391.906l-227.777-195.955 227.777-195.955z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "menu-collapse"
+ ],
+ "defaultCode": 59776,
+ "grid": 0
+ },
+ {
+ "id": 143,
+ "paths": [
+ "M1024.998 51.046h-1024.998v111.969h1024.998v-111.969zM683.332 330.988h-683.335v111.969h683.335v-111.969zM683.332 610.925h-683.335v111.969h683.335v-111.969zM1024.998 890.862h-1024.998v111.969h1024.998v-111.969zM797.218 330.988v391.906l227.777-195.955-227.777-195.955z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "menu-expand"
+ ],
+ "defaultCode": 59777,
+ "grid": 0
+ },
+ {
+ "id": 144,
+ "paths": [
+ "M416.407 951.485c0-53.072 43.022-96.094 96.094-96.094s96.094 43.022 96.094 96.094c0 53.072-43.022 96.094-96.094 96.094s-96.094-43.022-96.094-96.094zM0 535.079c0-53.072 43.024-96.094 96.094-96.094s96.094 43.022 96.094 96.094c0 53.072-43.022 96.094-96.094 96.094s-96.094-43.022-96.094-96.094zM832.813 535.079c0-53.072 43.022-96.094 96.094-96.094s96.094 43.022 96.094 96.094c0 53.072-43.022 96.094-96.094 96.094s-96.094-43.022-96.094-96.094zM121.963 240.635c0-53.072 43.022-96.094 96.094-96.094s96.094 43.022 96.094 96.094c0 53.072-43.022 96.094-96.094 96.094s-96.094-43.022-96.094-96.094zM710.85 829.522c0-53.072 43.022-96.094 96.094-96.094s96.094 43.022 96.094 96.094c0 53.072-43.022 96.094-96.094 96.094s-96.094-43.022-96.094-96.094zM121.963 829.522c0-53.072 43.022-96.094 96.094-96.094s96.094 43.022 96.094 96.094c0 53.072-43.022 96.094-96.094 96.094s-96.094-43.022-96.094-96.094zM710.85 240.635c0-53.072 43.022-96.094 96.094-96.094s96.094 43.022 96.094 96.094c0 53.072-43.022 96.094-96.094 96.094s-96.094-43.022-96.094-96.094z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "spinner-indicator"
+ ],
+ "defaultCode": 59778,
+ "grid": 0
+ },
+ {
+ "id": 145,
+ "paths": [
+ "M129.123 87.657h766.755c8.823 0 15.975 7.153 15.975 15.975v47.923c0 8.823-7.153 15.975-15.975 15.975h-766.755c-8.823 0-15.975-7.153-15.975-15.975v-47.923c0-8.823 7.153-15.975 15.975-15.975zM129.123 247.397h47.923c8.823 0 15.975 7.153 15.975 15.975v686.884c0 8.823-7.153 15.975-15.975 15.975h-47.923c-8.823 0-15.975-7.153-15.975-15.975v-686.884c0-8.823 7.153-15.975 15.975-15.975zM368.734 247.397h47.923c8.823 0 15.975 7.153 15.975 15.975v447.275c0 8.823-7.153 15.975-15.975 15.975h-47.923c-8.823 0-15.975-7.153-15.975-15.975v-447.275c0-8.823 7.153-15.975 15.975-15.975zM608.344 247.397h47.923c8.823 0 15.975 7.153 15.975 15.975v686.884c0 8.823-7.153 15.975-15.975 15.975h-47.923c-8.823 0-15.975-7.153-15.975-15.975v-686.884c0-8.823 7.153-15.975 15.975-15.975zM847.956 247.397h47.923c8.823 0 15.975 7.153 15.975 15.975v447.275c0 8.823-7.153 15.975-15.975 15.975h-47.923c-8.823 0-15.975-7.153-15.975-15.975v-447.275c0-8.823 7.153-15.975 15.975-15.975z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "kanban"
+ ],
+ "defaultCode": 59779,
+ "grid": 0
+ },
+ {
+ "id": 146,
+ "paths": [
+ "M1012.855 240.454l-236.145-214.981c-16.451-14.807-42.965-14.694-59.261 0.256l-642.202 584.184c-6.444 5.162-10.817 12.133-12.426 19.809l-57.069 265.603c-2.216 11.366 1.719 23.008 10.57 31.275 7.319 6.779 17.334 10.58 27.775 10.546 2.224 0.024 4.446-0.148 6.636-0.513l294.393-46.067c9.023-0.807 17.463-4.422 23.895-10.238l643.665-585.976c7.905-7.15 12.34-16.881 12.313-27.026v0c0.075-10.078-4.301-19.76-12.145-26.872h-0.001zM322.747 822.029l-229.791 36.137 44.474-203.925 452.049-411.535 184.754 168.35-451.487 410.973zM829.561 360.638l-184.925-168.299 102.386-93.21 184.925 168.35-102.386 93.159zM952.75 1039.211h-908.933c-21.597 2.24-41.099-11.883-43.563-31.544s13.052-37.416 34.65-39.656c2.961-0.307 5.95-0.307 8.911 0h909.047c21.597-2.24 41.099 11.883 43.563 31.544s-13.052 37.416-34.65 39.656c-2.961 0.307-5.95 0.307-8.911 0h-0.113z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pencil-alt"
+ ],
+ "defaultCode": 59780,
+ "grid": 0
+ },
+ {
+ "id": 147,
+ "paths": [
+ "M757.054 660.205v-28.236c-22.381 22.94-35.706 54.156-35.706 87.656 0 8.053 0.789 16.186 2.359 24.187l2.116 10.84-122.314 70.614-8.333-7.315c-0.576-0.508-1.202-0.937-1.785-1.43-1.128-0.959-2.3-1.858-3.465-2.773-1.903-1.496-3.82-2.964-5.796-4.343-1.298-0.907-2.633-1.763-3.967-2.626-1.917-1.231-3.85-2.418-5.826-3.546-1.504-0.856-3.023-1.667-4.564-2.463-1.888-0.973-3.798-1.888-5.73-2.766-1.689-0.767-3.392-1.504-5.118-2.197-1.881-0.752-3.783-1.43-5.701-2.087-1.814-0.627-3.629-1.246-5.479-1.792-1.976-0.583-3.982-1.062-5.981-1.542-1.822-0.435-3.621-0.9-5.471-1.253-2.33-0.449-4.683-0.76-7.035-1.077-1.571-0.214-3.112-0.486-4.698-0.642-3.989-0.383-8.008-0.612-12.057-0.612s-8.060 0.221-12.057 0.612c-1.586 0.155-3.127 0.427-4.698 0.642-2.352 0.317-4.712 0.627-7.035 1.077-1.851 0.354-3.651 0.819-5.471 1.253-2.006 0.479-4.004 0.966-5.981 1.542-1.851 0.546-3.665 1.165-5.479 1.792-1.917 0.657-3.82 1.342-5.701 2.087-1.733 0.693-3.429 1.43-5.118 2.197-1.932 0.87-3.842 1.792-5.73 2.766-1.542 0.797-3.060 1.608-4.564 2.463-1.976 1.121-3.908 2.315-5.826 3.546-1.334 0.863-2.67 1.718-3.967 2.626-1.976 1.379-3.894 2.839-5.796 4.343-1.165 0.914-2.337 1.822-3.465 2.773-0.583 0.494-1.209 0.922-1.785 1.43l-8.333 7.315-122.314-70.614 2.116-10.84c1.564-7.994 2.359-16.135 2.359-24.187 0-53.514-33.994-101.195-84.589-118.642l-10.427-3.599v-140.89l10.427-3.599c1.858-0.642 3.651-1.408 5.464-2.131 1.010-0.405 2.043-0.752 3.038-1.187 3.517-1.504 6.947-3.156 10.272-4.956 0.177-0.096 0.339-0.206 0.508-0.302 3.208-1.755 6.312-3.665 9.328-5.671 0.524-0.354 1.040-0.723 1.556-1.084 2.736-1.881 5.375-3.864 7.942-5.944 0.442-0.361 0.885-0.708 1.32-1.077 2.883-2.404 5.664-4.911 8.311-7.558 0.022-0.022 0.052-0.044 0.074-0.066 5.479-5.486 10.412-11.459 14.777-17.838 0.471-0.686 0.907-1.386 1.364-2.079 1.586-2.418 3.090-4.882 4.505-7.411 0.531-0.937 1.062-1.873 1.564-2.832 1.357-2.574 2.618-5.206 3.798-7.876 0.354-0.797 0.745-1.571 1.084-2.374 1.408-3.362 2.662-6.799 3.776-10.294 0.339-1.062 0.598-2.146 0.907-3.215 0.738-2.544 1.408-5.11 1.984-7.706 0.295-1.349 0.561-2.707 0.811-4.071 0.471-2.544 0.863-5.103 1.18-7.692 0.155-1.246 0.332-2.477 0.442-3.732 0.354-3.827 0.59-7.676 0.59-11.577 0-8.067-0.789-16.208-2.352-24.187l-2.116-10.84 122.307-70.614 8.333 7.315c22.889 20.080 52.26 31.14 82.693 31.14s59.804-11.061 82.693-31.14l8.333-7.315 122.307 70.614-2.116 10.84c-1.556 7.979-2.352 16.113-2.352 24.187 0 4.387 0.236 8.724 0.679 13.001 0.037 0.317 0.111 0.627 0.147 0.944 0.442 3.982 1.047 7.92 1.851 11.784 0.022 0.118 0.066 0.236 0.088 0.354 0.863 4.063 1.917 8.053 3.163 11.961 0.029 0.103 0.074 0.199 0.111 0.295 1.261 3.916 2.707 7.743 4.328 11.481 0.111 0.25 0.243 0.479 0.354 0.73 1.579 3.561 3.289 7.042 5.177 10.427 0.258 0.464 0.568 0.907 0.833 1.371 1.792 3.112 3.68 6.165 5.723 9.107 0.457 0.657 0.973 1.275 1.445 1.932 1.939 2.677 3.938 5.302 6.076 7.817 0.671 0.789 1.393 1.519 2.079 2.286 2.050 2.293 4.144 4.542 6.356 6.681 0.236 0.228 0.435 0.479 0.671 0.708h0.103c22.521 21.4 52.873 34.629 86.314 34.629s63.793-13.229 86.314-34.629h0.155c0.354-0.339 0.664-0.723 1.010-1.062 1.645-1.601 3.186-3.296 4.742-4.985 1.239-1.342 2.499-2.655 3.68-4.048 1.489-1.763 2.854-3.614 4.247-5.457 1.077-1.43 2.205-2.825 3.222-4.306 1.379-1.998 2.618-4.093 3.879-6.179 0.863-1.423 1.785-2.802 2.596-4.262 1.275-2.308 2.396-4.72 3.532-7.116 0.627-1.327 1.334-2.618 1.917-3.967 1.15-2.677 2.124-5.442 3.090-8.207 0.405-1.165 0.9-2.286 1.268-3.458 0.959-3.016 1.711-6.121 2.44-9.232 0.236-0.996 0.554-1.962 0.767-2.972 0.693-3.318 1.165-6.711 1.586-10.125 0.103-0.848 0.295-1.667 0.383-2.521 0.442-4.269 0.671-8.59 0.671-12.971 0-69.199-56.294-125.493-125.5-125.493-30.544 0-59.989 11.128-82.914 31.333l-8.34 7.344-122.218-70.511 2.153-10.862c1.593-8.053 2.396-16.289 2.396-24.475 0-69.199-56.294-125.5-125.5-125.5s-125.5 56.294-125.5 125.5c0 8.185 0.811 16.422 2.396 24.475l2.153 10.862-122.167 70.533-8.34-7.344c-22.926-20.205-52.371-31.333-82.914-31.333-69.199-0.007-125.493 56.294-125.493 125.493 0 3.923 0.236 7.802 0.59 11.651 0.111 1.194 0.28 2.367 0.427 3.554 0.332 2.707 0.73 5.398 1.231 8.060 0.228 1.224 0.464 2.44 0.73 3.651 0.635 2.906 1.379 5.767 2.212 8.59 0.228 0.767 0.413 1.556 0.657 2.315 2.352 7.462 5.42 14.623 9.078 21.451 0.221 0.413 0.457 0.819 0.686 1.231 1.733 3.156 3.606 6.224 5.604 9.21 0.147 0.221 0.287 0.442 0.435 0.657 6.681 9.852 14.74 18.737 23.988 26.363 0.066 0.059 0.133 0.111 0.199 0.162 2.854 2.345 5.826 4.557 8.893 6.651 0.398 0.273 0.797 0.546 1.202 0.819 2.854 1.895 5.789 3.687 8.812 5.361 0.457 0.25 0.892 0.531 1.349 0.775 3.37 1.807 6.829 3.502 10.39 5.014 0.612 0.258 1.253 0.457 1.873 0.708 2.411 0.973 4.83 1.939 7.322 2.78l10.567 3.532v140.292l-10.567 3.532c-51.243 17.138-85.68 64.965-85.68 119.011 0 69.199 56.294 125.5 125.5 125.5 30.536 0 59.981-11.128 82.907-31.333l8.34-7.352 122.167 70.533-1.991 10.051c0 0.022-0.007 0.037-0.007 0.052l-0.147 0.76c-0.39 1.976-0.59 3.997-0.885 5.995s-0.686 3.967-0.885 6.003c-0.413 4.152-0.635 8.325-0.635 12.484 0 69.199 56.294 125.5 125.5 125.5s125.5-56.294 125.5-125.5c0-4.159-0.221-8.325-0.635-12.484-0.199-2.028-0.59-3.997-0.885-6.003-0.295-1.998-0.494-4.012-0.885-5.995l-0.147-0.76c-0.007-0.015-0.007-0.037-0.007-0.052l-1.991-10.051 122.167-70.533 8.34 7.352c22.926 20.205 52.371 31.333 82.907 31.333 69.199 0 125.5-56.294 125.5-125.5 0-21.282-5.405-41.561-15.014-59.421h-200.274z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "q"
+ ],
+ "defaultCode": 59781,
+ "grid": 0
+ },
+ {
+ "id": 148,
+ "paths": [
+ "M757.054 660.205v-28.236c-22.381 22.94-35.706 54.156-35.706 87.656 0 8.053 0.789 16.186 2.359 24.187l2.116 10.84-122.314 70.614-8.333-7.315c-0.576-0.508-1.202-0.937-1.785-1.43-1.128-0.959-2.3-1.858-3.465-2.773-1.903-1.496-3.82-2.964-5.796-4.343-1.298-0.907-2.633-1.763-3.967-2.626-1.917-1.231-3.85-2.418-5.826-3.546-1.504-0.856-3.023-1.667-4.564-2.463-1.888-0.973-3.798-1.888-5.73-2.766-1.689-0.767-3.392-1.504-5.118-2.197-1.881-0.752-3.783-1.43-5.701-2.087-1.814-0.627-3.629-1.246-5.479-1.792-1.976-0.583-3.982-1.062-5.981-1.542-1.822-0.435-3.621-0.9-5.471-1.253-2.33-0.449-4.683-0.76-7.035-1.077-1.571-0.214-3.112-0.486-4.698-0.642-3.989-0.383-8.008-0.612-12.057-0.612s-8.060 0.221-12.057 0.612c-1.586 0.155-3.127 0.427-4.698 0.642-2.352 0.317-4.712 0.627-7.035 1.077-1.851 0.354-3.651 0.819-5.471 1.253-2.006 0.479-4.004 0.966-5.981 1.542-1.851 0.546-3.665 1.165-5.479 1.792-1.917 0.657-3.82 1.342-5.701 2.087-1.733 0.693-3.429 1.43-5.118 2.197-1.932 0.87-3.842 1.792-5.73 2.766-1.542 0.797-3.060 1.608-4.564 2.463-1.976 1.121-3.908 2.315-5.826 3.546-1.334 0.863-2.67 1.718-3.967 2.626-1.976 1.379-3.894 2.839-5.796 4.343-1.165 0.914-2.337 1.822-3.465 2.773-0.583 0.494-1.209 0.922-1.785 1.43l-8.333 7.315-122.314-70.614 2.116-10.84c1.564-7.994 2.359-16.135 2.359-24.187 0-53.514-33.994-101.195-84.589-118.642l-10.427-3.599v-140.89l10.427-3.599c1.858-0.642 3.651-1.408 5.464-2.131 1.010-0.405 2.043-0.752 3.038-1.187 3.517-1.504 6.947-3.156 10.272-4.956 0.177-0.096 0.339-0.206 0.508-0.302 3.208-1.755 6.312-3.665 9.328-5.671 0.524-0.354 1.040-0.723 1.556-1.084 2.736-1.881 5.375-3.864 7.942-5.944 0.442-0.361 0.885-0.708 1.32-1.077 2.883-2.404 5.664-4.911 8.311-7.558 0.022-0.022 0.052-0.044 0.074-0.066 5.479-5.486 10.412-11.459 14.777-17.838 0.471-0.686 0.907-1.386 1.364-2.079 1.586-2.418 3.090-4.882 4.505-7.411 0.531-0.937 1.062-1.873 1.564-2.832 1.357-2.574 2.618-5.206 3.798-7.876 0.354-0.797 0.745-1.571 1.084-2.374 1.408-3.362 2.662-6.799 3.776-10.294 0.339-1.062 0.598-2.146 0.907-3.215 0.738-2.544 1.408-5.11 1.984-7.706 0.295-1.349 0.561-2.707 0.811-4.071 0.471-2.544 0.863-5.103 1.18-7.692 0.155-1.246 0.332-2.477 0.442-3.732 0.354-3.827 0.59-7.676 0.59-11.577 0-8.067-0.789-16.208-2.352-24.187l-2.116-10.84 122.307-70.614 8.333 7.315c22.889 20.080 52.26 31.14 82.693 31.14s59.804-11.061 82.693-31.14l8.333-7.315 122.307 70.614-2.116 10.84c-1.556 7.979-2.352 16.113-2.352 24.187 0 4.387 0.236 8.724 0.679 13.001 0.037 0.317 0.111 0.627 0.147 0.944 0.442 3.982 1.047 7.92 1.851 11.784 0.022 0.118 0.066 0.236 0.088 0.354 0.863 4.063 1.917 8.053 3.163 11.961 0.029 0.103 0.074 0.199 0.111 0.295 1.261 3.916 2.707 7.743 4.328 11.481 0.111 0.25 0.243 0.479 0.354 0.73 1.579 3.561 3.289 7.042 5.177 10.427 0.258 0.464 0.568 0.907 0.833 1.371 1.792 3.112 3.68 6.165 5.723 9.107 0.457 0.657 0.973 1.275 1.445 1.932 1.939 2.677 3.938 5.302 6.076 7.817 0.671 0.789 1.393 1.519 2.079 2.286 2.050 2.293 4.144 4.542 6.356 6.681 0.236 0.228 0.435 0.479 0.671 0.708h0.103c22.521 21.4 52.873 34.629 86.314 34.629s63.793-13.229 86.314-34.629h0.155c0.354-0.339 0.664-0.723 1.010-1.062 1.645-1.601 3.186-3.296 4.742-4.985 1.239-1.342 2.499-2.655 3.68-4.048 1.489-1.763 2.854-3.614 4.247-5.457 1.077-1.43 2.205-2.825 3.222-4.306 1.379-1.998 2.618-4.093 3.879-6.179 0.863-1.423 1.785-2.802 2.596-4.262 1.275-2.308 2.396-4.72 3.532-7.116 0.627-1.327 1.334-2.618 1.917-3.967 1.15-2.677 2.124-5.442 3.090-8.207 0.405-1.165 0.9-2.286 1.268-3.458 0.959-3.016 1.711-6.121 2.44-9.232 0.236-0.996 0.554-1.962 0.767-2.972 0.693-3.318 1.165-6.711 1.586-10.125 0.103-0.848 0.295-1.667 0.383-2.521 0.442-4.269 0.671-8.59 0.671-12.971 0-69.199-56.294-125.493-125.5-125.493-30.544 0-59.989 11.128-82.914 31.333l-8.34 7.344-122.218-70.511 2.153-10.862c1.593-8.053 2.396-16.289 2.396-24.475 0-69.199-56.294-125.5-125.5-125.5s-125.5 56.294-125.5 125.5c0 8.185 0.811 16.422 2.396 24.475l2.153 10.862-122.167 70.533-8.34-7.344c-22.926-20.205-52.371-31.333-82.914-31.333-69.199-0.007-125.493 56.294-125.493 125.493 0 3.923 0.236 7.802 0.59 11.651 0.111 1.194 0.28 2.367 0.427 3.554 0.332 2.707 0.73 5.398 1.231 8.060 0.228 1.224 0.464 2.44 0.73 3.651 0.635 2.906 1.379 5.767 2.212 8.59 0.228 0.767 0.413 1.556 0.657 2.315 2.352 7.462 5.42 14.623 9.078 21.451 0.221 0.413 0.457 0.819 0.686 1.231 1.733 3.156 3.606 6.224 5.604 9.21 0.147 0.221 0.287 0.442 0.435 0.657 6.681 9.852 14.74 18.737 23.988 26.363 0.066 0.059 0.133 0.111 0.199 0.162 2.854 2.345 5.826 4.557 8.893 6.651 0.398 0.273 0.797 0.546 1.202 0.819 2.854 1.895 5.789 3.687 8.812 5.361 0.457 0.25 0.892 0.531 1.349 0.775 3.37 1.807 6.829 3.502 10.39 5.014 0.612 0.258 1.253 0.457 1.873 0.708 2.411 0.973 4.83 1.939 7.322 2.78l10.567 3.532v140.292l-10.567 3.532c-51.243 17.138-85.68 64.965-85.68 119.011 0 69.199 56.294 125.5 125.5 125.5 30.536 0 59.981-11.128 82.907-31.333l8.34-7.352 122.167 70.533-1.991 10.051c0 0.022-0.007 0.037-0.007 0.052l-0.147 0.76c-0.39 1.976-0.59 3.997-0.885 5.995s-0.686 3.967-0.885 6.003c-0.413 4.152-0.635 8.325-0.635 12.484 0 69.199 56.294 125.5 125.5 125.5s125.5-56.294 125.5-125.5c0-4.159-0.221-8.325-0.635-12.484-0.199-2.028-0.59-3.997-0.885-6.003-0.295-1.998-0.494-4.012-0.885-5.995l-0.147-0.76c-0.007-0.015-0.007-0.037-0.007-0.052l-1.991-10.051 122.167-70.533 8.34 7.352c22.926 20.205 52.371 31.333 82.907 31.333 69.199 0 125.5-56.294 125.5-125.5 0-21.282-5.405-41.561-15.014-59.421h-200.274zM721.349 721.492c0 69.199 56.294 125.5 125.5 125.5s125.5-56.294 125.5-125.5c0-69.206-56.294-125.5-125.5-125.5-31.974 0-62.437 12.057-85.791 33.943l-8.524 7.994-119.726-71.794 2.33-10.833c1.881-8.731 2.832-17.646 2.832-26.503 0-69.199-56.294-125.5-125.5-125.5s-125.5 56.294-125.5 125.5c0 69.199 56.294 125.493 125.5 125.493 29.681 0 58.491-10.574 81.13-29.784l8.458-7.175 122.617 73.52-1.682 10.353c-1.091 6.748-1.645 13.568-1.645 20.286z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "qc"
+ ],
+ "defaultCode": 59782,
+ "grid": 0
+ },
+ {
+ "id": 149,
+ "paths": [
+ "M721.349 721.492c0 69.199 56.294 125.5 125.5 125.5s125.5-56.294 125.5-125.5c0-69.206-56.294-125.5-125.5-125.5-31.974 0-62.437 12.057-85.791 33.943l-8.524 7.994-119.726-71.794 2.33-10.833c1.881-8.731 2.832-17.646 2.832-26.503 0-69.199-56.294-125.5-125.5-125.5s-125.5 56.294-125.5 125.5c0 69.199 56.294 125.493 125.5 125.493 29.681 0 58.491-10.574 81.13-29.784l8.458-7.175 122.617 73.52-1.682 10.353c-1.091 6.748-1.645 13.568-1.645 20.286z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "c"
+ ],
+ "defaultCode": 59783,
+ "grid": 0
+ },
+ {
+ "id": 150,
+ "paths": [
+ "M512.5 14.443c282.9 0 512.5 229.6 512.5 512.5s-229.6 512.5-512.5 512.5c-282.9 0-512.5-229.6-512.5-512.5s229.6-512.5 512.5-512.5zM512.5 116.944c-226.523 0-409.999 183.473-409.999 409.999s183.473 409.999 409.999 409.999c226.523 0 409.999-183.473 409.999-409.999s-183.473-409.999-409.999-409.999zM512.5 450.069c42.538 0 76.875 34.338 76.875 76.875s-34.338 76.875-76.875 76.875c-42.538 0-76.875-34.338-76.875-76.875s34.338-76.875 76.875-76.875zM281.875 450.069c42.538 0 76.875 34.338 76.875 76.875s-34.338 76.875-76.875 76.875c-42.538 0-76.875-34.338-76.875-76.875s34.338-76.875 76.875-76.875zM743.126 450.069c42.538 0 76.875 34.338 76.875 76.875s-34.338 76.875-76.875 76.875c-42.538 0-76.875-34.338-76.875-76.875s34.338-76.875 76.875-76.875z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "more-circle"
+ ],
+ "defaultCode": 59784,
+ "grid": 0
+ },
+ {
+ "id": 151,
+ "paths": [
+ "M911.113 14.442h-797.223c-63.209 0-113.889 50.68-113.889 113.889v797.223c0 63.209 50.68 113.889 113.889 113.889h797.223c63.209 0 113.889-50.68 113.889-113.889v-797.223c0-63.209-50.68-113.889-113.889-113.889zM911.113 925.556h-797.223v-797.223h797.223v797.223zM341.667 868.611h-170.834v-113.889h170.834v113.889zM569.445 868.611h-170.834v-113.889h170.834v113.889zM341.667 697.777h-170.834v-113.889h170.834v113.889zM569.445 697.777h-170.834v-113.889h170.834v113.889zM341.667 526.944h-170.834v-113.889h170.834v113.889zM569.445 526.944h-170.834v-113.889h170.834v113.889z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fields"
+ ],
+ "defaultCode": 59785,
+ "grid": 0
+ },
+ {
+ "id": 152,
+ "paths": [
+ "M563.751 168.194c113.263 0 204.999 91.738 204.999 204.999 0 76.874-40.999 141.963-102.5 177.324v-62.524c31.263-28.189 51.25-69.188 51.25-114.8 0-85.075-68.674-153.751-153.751-153.751s-153.751 68.674-153.751 153.751c0 45.613 19.989 86.612 51.25 114.8v62.524c-61.499-35.364-102.5-100.45-102.5-177.324 0-113.263 91.738-204.999 204.999-204.999zM922.499 962.568c-1.537 42.025-34.85 75.338-76.874 76.874h-281.875c-19.474 0-37.926-7.687-51.25-22.037l-204.999-215.25 37.926-39.463c9.738-10.763 23.576-16.401 38.951-16.401h10.251l117.876 88.15v-461.25c0-28.189 23.062-51.25 51.25-51.25s51.25 23.062 51.25 51.25v229.089l62.013 6.664 201.925 112.238c27.164 12.299 43.562 39.463 43.562 69.188v172.2zM922.499 14.443h-820c-56.375 0-102.5 46.126-102.5 102.5v409.998c0 56.889 46.126 102.5 102.5 102.5h204.999v-102.5h-204.999v-409.998h820v409.998h-102.5v102.5h102.5v-2.051l2.051 2.051c55.864 0 100.45-46.638 100.45-102.5v-409.998c0-56.375-45.613-102.5-102.5-102.5z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "trigger"
+ ],
+ "defaultCode": 59786,
+ "grid": 0
+ },
+ {
+ "id": 153,
+ "paths": [
+ "M153.748 14.442c-42.434 0-80.975 17.272-108.701 45.048s-45.048 66.267-45.048 108.701v717.502c0 42.434 17.272 80.975 45.048 108.701s66.267 45.048 108.701 45.048h717.502c42.434 0 80.975-17.272 108.701-45.048s45.048-66.267 45.048-108.701v-717.502c0-42.434-17.272-80.975-45.048-108.701s-66.267-45.048-108.701-45.048zM922.502 321.942h-820.003v-153.751c0-14.145 5.689-26.906 15.016-36.233s22.088-15.016 36.233-15.016h717.502c14.145 0 26.906 5.689 36.233 15.016s15.016 22.088 15.016 36.233zM307.499 424.443v512.501h-153.751c-14.145 0-26.906-5.689-36.233-15.016s-15.016-22.088-15.016-36.233v-461.251zM410 936.945v-512.501h512.501v461.251c0 14.145-5.689 26.906-15.016 36.233s-22.088 15.016-36.233 15.016z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "layout"
+ ],
+ "defaultCode": 59787,
+ "grid": 0
+ },
+ {
+ "id": 154,
+ "paths": [
+ "M653.507 466.872c125.675 0 226.214 100.539 226.214 226.214 0 44.238-12.568 85.961-34.686 120.647l154.831 155.836-69.875 69.875-156.842-154.329c-34.686 21.617-75.908 34.182-119.643 34.182-125.675 0-226.214-100.539-226.214-226.214s100.539-226.214 226.214-226.214zM653.507 567.41c-69.372 0-125.675 56.303-125.675 125.675s56.303 125.675 125.675 125.675c69.372 0 125.675-56.303 125.675-125.675s-56.303-125.675-125.675-125.675zM125.675 14.443h703.777c55.799 0 100.539 44.741 100.539 100.539v403.666c-25.135-40.215-59.821-74.902-100.539-102.048v-301.619h-703.777v703.777h226.214c15.584 37.702 38.205 71.384 65.853 100.539h-292.067c-55.799 0-100.539-44.741-100.539-100.539v-703.777c0-55.799 44.741-100.539 100.539-100.539zM226.214 215.522h502.699v100.539h-502.699v-100.539zM226.214 416.602h252.857c-40.215 25.135-74.902 59.821-102.048 100.539h-150.81v-100.539zM226.214 617.681h109.086c-5.529 25.135-8.545 50.27-8.545 75.405v25.135h-100.539v-100.539z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "audit"
+ ],
+ "defaultCode": 59788,
+ "grid": 0
+ },
+ {
+ "id": 155,
+ "paths": [
+ "M839.677 231.798c21.164 21.164 38.895 63.491 38.895 93.806v658.929c0 30.316-24.595 54.911-54.911 54.911h-768.751c-30.316 0-54.911-24.595-54.911-54.911v-915.18c0-30.316 24.595-54.911 54.911-54.911h512.5c30.316 0 72.642 17.731 93.806 38.895zM585.715 92.233v215.067h215.067c-3.432-9.723-8.579-19.448-12.583-23.452l-179.032-179.032c-4.004-4.004-13.727-9.152-23.452-12.583zM805.357 966.23v-585.715h-237.946c-30.316 0-54.911-24.595-54.911-54.911v-237.946h-439.286v878.572h732.144z"
+ ],
+ "width": 879,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file",
+ "file-empty"
+ ],
+ "defaultCode": 61462,
+ "grid": 0
+ },
+ {
+ "id": 156,
+ "paths": [
+ "M949.691 308.648c13.542 19.501 17.335 44.962 9.751 69.878l-148.967 490.779c-13.542 46.044-61.212 81.796-107.798 81.796h-499.989c-55.253 0-114.298-43.878-134.341-100.214-8.666-24.376-8.666-48.212-1.084-68.795 1.084-10.834 3.251-21.668 3.793-34.669 0.542-8.666-4.333-15.709-3.251-22.21 2.167-13.001 13.542-22.21 22.21-36.835 16.251-27.084 34.669-70.962 40.627-99.13 2.709-10.291-2.709-22.21 0-31.419 2.709-10.291 13.001-17.876 18.419-27.627 14.626-24.918 33.587-73.129 36.294-98.589 1.084-11.375-4.333-23.834-1.084-32.503 3.793-12.459 15.709-17.876 23.834-28.71 13.001-17.876 34.669-69.337 37.918-98.048 1.084-9.208-4.333-18.419-2.709-28.168 2.167-10.291 15.168-21.127 23.834-33.587 22.75-33.587 27.084-107.798 95.881-88.297l-0.542 1.625c9.208-2.167 18.419-4.876 27.627-4.876h412.234c25.459 0 48.212 11.375 61.754 30.336 14.084 19.501 17.335 44.962 9.751 70.421l-148.426 490.779c-25.459 83.421-39.544 101.839-108.341 101.839h-470.737c-7.042 0-15.709 1.625-20.585 8.125-4.333 6.501-4.876 11.375-0.542 23.292 10.834 31.419 48.212 37.918 78.006 37.918h499.989c20.044 0 43.335-11.375 49.295-30.876l162.511-534.657c3.251-10.291 3.251-21.127 2.709-30.876 12.459 4.876 23.834 12.459 31.96 23.292zM373.324 309.732c-3.251 9.751 2.167 17.335 11.917 17.335h329.354c9.208 0 19.501-7.583 22.75-17.335l11.375-34.669c3.251-9.751-2.167-17.335-11.917-17.335h-329.354c-9.208 0-19.501 7.583-22.75 17.335zM328.364 448.407c-3.251 9.751 2.167 17.335 11.917 17.335h329.354c9.208 0 19.501-7.583 22.75-17.335l11.375-34.669c3.251-9.751-2.167-17.335-11.917-17.335h-329.354c-9.208 0-19.501 7.583-22.75 17.335z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "book"
+ ],
+ "defaultCode": 61485,
+ "grid": 0
+ },
+ {
+ "id": 157,
+ "paths": [
+ "M961.224 406.871c0 8.514-3.505 16.527-9.514 22.536l-256.413 256.413c-6.009 6.009-14.022 9.514-22.536 9.514-17.529 0-32.051-14.523-32.051-32.051v-128.207h-112.182c-215.849 0-357.576 41.568-357.576 280.452 0 20.533 1.002 41.065 2.503 61.6 0.5 8.013 2.503 17.028 2.503 25.039 0 9.514-6.009 17.529-16.026 17.529-7.011 0-10.516-3.505-14.022-8.514-7.512-10.516-13.022-26.544-18.529-38.062-28.545-64.104-63.602-155.75-63.602-225.864 0-56.091 5.509-113.683 26.544-166.769 69.613-172.778 273.941-201.825 438.206-201.825h112.182v-128.207c0-17.529 14.523-32.051 32.051-32.051 8.514 0 16.527 3.505 22.536 9.514l256.413 256.413c6.009 6.009 9.514 14.022 9.514 22.536z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "share"
+ ],
+ "defaultCode": 61540,
+ "grid": 0
+ },
+ {
+ "id": 158,
+ "paths": [
+ "M873.095 534.949l81.845 80.066c11.268 10.675 15.42 26.688 11.862 41.516-4.152 14.827-16.014 26.688-30.84 30.248l-111.5 28.469 31.434 110.314c4.152 14.827 0 30.84-11.268 41.516-10.675 11.268-26.688 15.42-41.516 11.268l-110.314-31.434-28.469 111.5c-3.559 14.827-15.42 26.688-30.248 30.84-3.559 0.593-7.71 1.186-11.268 1.186-11.268 0-22.536-4.745-30.248-13.047l-80.066-81.845-80.066 81.845c-10.675 11.268-26.688 15.42-41.516 11.862-15.42-4.152-26.688-16.014-30.248-30.84l-28.469-111.5-110.314 31.434c-14.827 4.152-30.84 0-41.516-11.268-11.268-10.675-15.42-26.688-11.268-41.516l31.434-110.314-111.5-28.469c-14.827-3.559-26.688-15.42-30.84-30.248-3.559-14.827 0.593-30.84 11.862-41.516l81.845-80.066-81.845-80.066c-11.268-10.675-15.42-26.688-11.862-41.516 4.152-14.827 16.014-26.688 30.84-30.248l111.5-28.469-31.434-110.314c-4.152-14.827 0-30.84 11.268-41.516 10.675-11.268 26.688-15.42 41.516-11.268l110.314 31.434 28.469-111.5c3.559-14.827 15.42-26.688 30.248-30.248 14.827-4.152 30.84 0 41.516 11.268l80.066 82.439 80.066-82.439c10.675-11.268 26.095-15.42 41.516-11.268 14.827 3.559 26.688 15.42 30.248 30.248l28.469 111.5 110.314-31.434c14.827-4.152 30.84 0 41.516 11.268 11.268 10.675 15.42 26.688 11.268 41.516l-31.434 110.314 111.5 28.469c14.827 3.559 26.688 15.42 30.84 30.248 3.559 14.827-0.593 30.84-11.862 41.516z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "certificate"
+ ],
+ "defaultCode": 61603,
+ "grid": 0
+ },
+ {
+ "id": 159,
+ "paths": [
+ "M512.5 87.657c242.524 0 439.287 196.764 439.287 439.287s-196.764 439.287-439.287 439.287-439.287-196.764-439.287-439.287 196.764-439.287 439.287-439.287zM669.226 385.663c-4.575 3.432-7.436 9.723-13.156 10.868 2.86-0.572 5.72-10.868 7.436-13.156 3.432-4.004 8.008-6.292 12.583-8.579 9.723-4.004 19.448-5.148 29.743-6.864 9.723-2.288 21.735-2.288 29.171 6.292-1.716-1.716 12.012-13.727 13.727-14.3 5.148-2.86 13.727-1.716 17.16-6.864 1.144-1.716 1.144-12.583 1.144-12.583-9.723 1.144-13.156-8.008-13.727-16.016 0 0.572-1.144 2.288-3.432 4.575 0.572-8.579-10.296-2.288-14.3-3.432-13.156-3.432-11.44-12.583-15.444-22.308-2.288-5.148-8.579-6.864-10.868-12.012-2.288-3.432-3.432-10.868-8.579-11.44-3.432-0.572-9.723 12.012-10.868 11.44-5.148-2.86-7.436 1.144-11.44 3.432-3.432 2.288-6.292 1.144-9.723 2.86 10.296-3.432-4.575-9.152-9.723-8.008 8.008-2.288 4.004-10.868-0.572-14.872h2.86c-1.144-5.148-17.16-9.723-22.308-13.156s-32.603-9.152-38.323-5.72c-6.864 4.004 1.716 15.444 1.716 21.164 0.572 6.864-6.864 8.579-6.864 14.3 0 9.723 18.304 8.008 13.727 21.164-2.86 8.008-13.727 9.723-18.304 16.016-4.575 5.72 0.572 16.016 5.148 20.020 4.575 3.432-8.008 9.152-9.723 10.296-9.723 4.575-17.16-9.723-19.448-18.304-1.716-6.292-2.288-13.727-9.152-17.16-3.432-1.144-14.3-2.86-16.587 0.572-3.432-8.579-15.444-12.012-23.452-14.872-11.44-4.004-21.164-4.004-33.175-2.288 4.004-0.572-1.144-18.304-10.868-15.444 2.86-5.72 1.716-12.012 2.86-17.731 1.144-4.575 3.432-9.152 6.864-13.156 1.144-2.288 13.727-15.444 9.723-16.016 9.723 1.144 20.591 1.716 28.599-6.292 5.148-5.148 7.436-13.727 12.583-19.448 7.436-8.579 16.587 2.288 24.595 2.86 11.44 0.572 10.868-12.012 4.575-17.731 7.436 0.572 1.144-13.156-2.86-14.872-5.148-1.716-24.595 3.432-14.3 7.436-2.288-1.144-16.016 27.456-24.023 13.156-2.288-2.86-3.432-14.872-8.579-15.444-4.575 0-7.436 5.148-9.152 8.579 2.86-7.436-16.016-12.583-20.020-13.156 8.579-5.72 1.716-12.012-4.575-15.444-4.575-2.86-18.875-5.148-22.879-0.572-10.868 13.156 11.44 14.872 17.16 18.304 1.716 1.144 8.579 5.148 4.575 8.008-3.432 1.716-13.727 4.575-14.872 6.864-3.432 5.148 4.004 10.868-1.144 16.016-5.148-5.148-5.148-13.727-9.152-19.448 5.148 6.292-20.591 2.86-20.020 2.86-8.579 0-22.308 5.72-28.599-2.86-1.144-2.288-1.144-15.444 2.288-12.583-5.148-4.004-8.579-8.008-12.012-10.296-18.875 6.292-36.607 14.3-53.767 23.452 2.288 0.572 4.004 0.572 6.864-0.572 4.575-1.716 8.579-4.575 13.156-6.864 5.72-2.288 17.731-9.152 24.023-4.004 0.572-1.144 2.288-2.288 2.86-2.86 4.004 4.575 8.008 9.152 11.44 14.3-4.575-2.288-12.012-1.144-17.16-0.572-4.004 1.144-10.868 2.288-12.583 6.864 1.716 2.86 4.004 7.436 2.86 10.296-7.436-5.148-13.156-13.727-23.452-14.872-4.575 0-9.152 0-12.583 0.572-54.911 30.316-101.242 74.359-134.417 126.981 2.288 2.288 4.575 4.004 6.864 4.575 5.72 1.716 0 18.304 10.868 9.723 3.432 2.86 4.004 6.864 1.716 10.868 0.572-0.572 23.452 14.3 25.168 15.444 4.004 3.432 10.296 7.436 12.012 12.012 1.144 4.004-2.288 8.579-5.72 10.296-0.572-1.144-9.152-9.723-10.296-7.436-1.716 2.86 0 18.304 6.292 17.731-9.152 0.572-5.148 36.035-7.436 42.899 0 0.572 1.144 0.572 1.144 0.572-1.716 6.864 4.004 33.747 15.444 30.887-7.436 1.716 13.156 28.027 16.016 29.743 7.436 5.148 16.016 8.579 21.164 16.016 5.72 8.008 5.72 20.020 13.727 26.312-2.288 6.864 12.012 14.872 11.44 24.595-1.144 0.572-1.716 0.572-2.86 1.144 2.86 8.008 13.727 8.008 17.731 15.444 2.288 4.575 0 15.444 7.436 13.156 1.144-12.583-7.436-25.168-13.727-35.464-3.432-5.72-6.864-10.868-9.723-16.587-2.86-5.148-3.432-11.44-5.72-17.16 2.288 0.572 14.872 5.148 13.727 6.864-4.575 11.44 18.304 31.46 24.595 38.895 1.716 1.716 14.872 18.875 8.008 18.875 7.436 0 17.731 11.44 21.164 17.16 5.148 8.579 4.004 19.448 7.436 28.599 3.432 11.44 19.448 16.587 28.599 21.735 8.008 4.004 14.872 9.723 22.879 12.583 12.012 4.575 14.872 0.572 25.168-1.144 14.872-2.288 16.587 14.3 28.599 20.591 7.436 4.004 23.452 9.723 31.46 6.292-3.432 1.144 12.012 24.595 13.156 26.312 5.148 6.864 14.872 10.296 20.591 17.16 1.716-1.144 3.432-2.86 4.004-5.148-2.288 6.292 8.579 18.304 14.3 17.16 6.292-1.144 8.008-13.727 8.008-18.304-11.44 5.72-21.735 1.144-28.027-10.296-1.144-2.86-10.296-18.875-2.288-18.875 10.868 0 3.432-8.579 2.288-16.587s-9.152-13.156-13.156-20.020c-3.432 6.864-14.872 5.148-18.304-0.572 0 1.716-1.716 4.575-1.716 6.864-2.86 0-5.72 0.572-8.579-0.572 1.144-6.864 1.716-15.444 3.432-22.879 2.86-10.296 21.735-30.316-2.86-29.171-8.579 0.572-12.012 4.004-14.872 11.44-2.86 6.864-1.716 13.156-9.723 16.587-5.148 2.288-22.308 1.144-27.456-1.716-10.868-6.292-18.304-26.312-18.304-37.751-0.572-15.444 7.436-29.171 0-43.471 3.432-2.86 6.864-8.579 10.868-11.44 3.432-2.288 7.436 1.716 9.152-5.148-1.716-1.144-4.004-3.432-4.575-3.432 8.579 4.004 24.595-5.72 32.031 0 4.575 3.432 9.723 4.575 12.583-1.144 0.572-1.716-4.004-8.579-1.716-13.156 1.716 9.723 8.008 11.44 16.587 5.148 3.432 3.432 12.583 2.288 18.875 5.72 6.292 4.004 7.436 10.296 14.872 1.716 4.575 6.864 5.148 6.864 6.864 13.727 1.716 6.292 5.148 22.308 10.868 25.168 12.012 7.436 9.152-12.583 8.008-19.448-0.572-0.572-0.572-19.448-1.144-19.448-18.304-4.004-11.44-18.304-1.144-28.027 1.716-1.144 14.872-5.72 20.591-10.296 5.148-4.575 11.44-12.583 8.579-20.020 2.86 0 5.148-2.288 6.292-5.148-1.716-0.572-8.579-6.292-9.723-5.72 4.004-2.288 3.432-5.72 1.144-9.152 5.72-3.432 2.86-9.723 8.579-12.012 6.292 8.579 18.875-1.144 12.583-8.008 5.72-8.008 18.875-4.004 22.308-11.44 8.579 2.288 2.288-8.579 6.864-14.872 4.004-5.148 10.868-5.148 16.016-8.008 0 0.572 14.3-8.008 9.723-8.579 9.723 1.144 29.171-9.152 14.3-17.731 2.288-5.148-5.148-7.436-10.296-8.579 4.004-1.144 9.152 1.144 12.583-1.144 7.436-5.148 2.288-7.436-4.004-9.152-8.008-2.288-18.304 2.86-24.595 6.864zM575.991 887.297c78.363-13.727 148.145-52.622 200.768-108.106-3.432-3.432-9.723-2.288-14.3-4.575-4.575-1.716-8.008-3.432-13.727-4.575 1.144-11.44-11.44-15.444-19.448-21.164-7.436-5.72-12.012-12.012-22.879-9.723-1.144 0.572-12.583 4.575-10.296 6.864-7.436-6.292-10.868-9.723-20.591-12.583-9.152-2.86-15.444-14.3-24.595-4.004-4.575 4.575-2.288 11.44-4.575 16.016-7.436-6.292 6.864-13.727 1.144-20.591-6.864-8.008-18.875 5.148-24.595 8.579-3.432 2.86-7.436 4.004-9.723 7.436-2.86 4.004-4.004 9.152-6.292 13.156-1.716-4.575-11.44-3.432-12.012-6.864 2.288 13.727 2.288 28.027 5.148 41.755 1.716 8.008 0 21.164-6.864 27.456s-15.444 13.156-16.587 22.879c-1.144 6.864 0.572 13.156 6.864 14.872 0.572 8.579-9.152 14.872-8.579 24.023 0 0.572 0.572 6.292 1.144 9.152z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "globe"
+ ],
+ "defaultCode": 61612,
+ "grid": 0
+ },
+ {
+ "id": 160,
+ "paths": [
+ "M822.531 399.44c0 10.294-4.239 19.984-11.505 27.25l-271.278 271.278c-7.267 7.267-16.956 11.505-27.25 11.505s-19.984-4.239-27.25-11.505l-271.278-271.278c-7.267-7.267-11.505-16.956-11.505-27.25 0-21.193 17.56-38.753 38.753-38.753h542.555c21.193 0 38.753 17.56 38.753 38.753z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "caret-down"
+ ],
+ "defaultCode": 61655,
+ "grid": 0
+ },
+ {
+ "id": 161,
+ "paths": [
+ "M822.531 670.717c0 21.193-17.56 38.753-38.753 38.753h-542.556c-21.193 0-38.753-17.56-38.753-38.753 0-10.293 4.239-19.984 11.505-27.25l271.278-271.278c7.267-7.267 16.956-11.505 27.25-11.505s19.984 4.239 27.25 11.505l271.278 271.278c7.267 7.267 11.505 16.956 11.505 27.25z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "caret-up"
+ ],
+ "defaultCode": 61656,
+ "grid": 0
+ },
+ {
+ "id": 162,
+ "paths": [
+ "M704.688 236.12v597.917c0 23.357-19.352 42.708-42.708 42.708-11.345 0-22.024-4.671-30.029-12.678l-298.959-298.959c-8.006-8.006-12.678-18.684-12.678-30.029s4.671-22.024 12.678-30.029l298.959-298.959c8.006-8.006 18.684-12.678 30.029-12.678 23.357 0 42.708 19.352 42.708 42.708z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "caret-left"
+ ],
+ "defaultCode": 61657,
+ "grid": 0
+ },
+ {
+ "id": 163,
+ "paths": [
+ "M704.688 535.079c0 11.345-4.671 22.024-12.678 30.029l-298.959 298.959c-8.006 8.006-18.684 12.678-30.029 12.678-23.357 0-42.708-19.352-42.708-42.708v-597.917c0-23.357 19.352-42.708 42.708-42.708 11.345 0 22.024 4.671 30.029 12.678l298.959 298.959c8.006 8.006 12.678 18.684 12.678 30.029z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "caret-right"
+ ],
+ "defaultCode": 61658,
+ "grid": 0
+ },
+ {
+ "id": 164,
+ "paths": [
+ "M141.342 853.699h302.69v-573.517h-318.62v557.587c0 8.462 7.467 15.932 15.932 15.932zM826.376 837.768v-557.587h-318.62v573.517h302.69c8.462 0 15.932-7.467 15.932-15.932zM890.1 232.389v605.379c0 43.811-35.844 79.656-79.656 79.656h-669.103c-43.811 0-79.656-35.844-79.656-79.656v-605.379c0-43.811 35.844-79.656 79.656-79.656h669.103c43.811 0 79.656 35.844 79.656 79.656z"
+ ],
+ "width": 952,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "columns"
+ ],
+ "defaultCode": 61659,
+ "grid": 0
+ },
+ {
+ "id": 165,
+ "paths": [
+ "M823.108 651.555c0 10.311-4.244 20.023-11.524 27.302l-271.784 271.784c-7.277 7.277-16.99 11.524-27.302 11.524s-20.023-4.244-27.302-11.524l-271.784-271.784c-7.277-7.277-11.524-16.99-11.524-27.302 0-21.235 17.59-38.823 38.823-38.823h543.567c21.235 0 38.823 17.59 38.823 38.823zM823.108 418.602c0 21.235-17.59 38.823-38.823 38.823h-543.567c-21.235 0-38.823-17.59-38.823-38.823 0-10.311 4.244-20.023 11.524-27.302l271.784-271.784c7.277-7.277 16.99-11.524 27.302-11.524s20.023 4.244 27.302 11.524l271.784 271.784c7.277 7.277 11.524 16.99 11.524 27.302z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sort"
+ ],
+ "defaultCode": 61660,
+ "grid": 0
+ },
+ {
+ "id": 166,
+ "paths": [
+ "M822.527 652.133c0 10.291-4.239 19.984-11.504 27.249l-271.278 271.278c-7.265 7.265-16.956 11.504-27.249 11.504s-19.984-4.239-27.249-11.504l-271.278-271.278c-7.265-7.265-11.504-16.956-11.504-27.249 0-21.192 17.562-38.751 38.751-38.751h542.551c21.192 0 38.751 17.562 38.751 38.751z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sort-down"
+ ],
+ "defaultCode": 61661,
+ "grid": 0
+ },
+ {
+ "id": 167,
+ "paths": [
+ "M822.531 414.473c0 21.194-17.56 38.753-38.753 38.753h-542.556c-21.194 0-38.753-17.56-38.753-38.753 0-10.294 4.241-19.986 11.503-27.248l271.278-271.278c7.27-7.27 16.954-11.503 27.248-11.503s19.986 4.241 27.248 11.503l271.278 271.278c7.27 7.27 11.503 16.954 11.503 27.248z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sort-up"
+ ],
+ "defaultCode": 61662,
+ "grid": 0
+ },
+ {
+ "id": 168,
+ "paths": [
+ "M839.677 231.798c21.164 21.164 38.895 63.491 38.895 93.806v658.929c0 30.316-24.595 54.911-54.911 54.911h-768.751c-30.316 0-54.911-24.595-54.911-54.911v-915.18c0-30.316 24.595-54.911 54.911-54.911h512.5c30.316 0 72.642 17.731 93.806 38.895zM585.715 92.233v215.067h215.067c-3.432-9.723-8.579-19.448-12.583-23.452l-179.032-179.032c-4.004-4.004-13.727-9.152-23.452-12.583zM805.357 966.23v-585.715h-237.946c-30.316 0-54.911-24.595-54.911-54.911v-237.946h-439.286v878.572h732.144zM219.643 472.033c0-10.296 8.008-18.304 18.304-18.304h402.679c10.296 0 18.304 8.008 18.304 18.304v36.607c0 10.296-8.008 18.304-18.304 18.304h-402.679c-10.296 0-18.304-8.008-18.304-18.304v-36.607zM640.626 600.158c10.296 0 18.304 8.008 18.304 18.304v36.607c0 10.296-8.008 18.304-18.304 18.304h-402.679c-10.296 0-18.304-8.008-18.304-18.304v-36.607c0-10.296 8.008-18.304 18.304-18.304h402.679zM640.626 746.587c10.296 0 18.304 8.008 18.304 18.304v36.607c0 10.296-8.008 18.304-18.304 18.304h-402.679c-10.296 0-18.304-8.008-18.304-18.304v-36.607c0-10.296 8.008-18.304 18.304-18.304h402.679z"
+ ],
+ "width": 879,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file-text"
+ ],
+ "defaultCode": 61686,
+ "grid": 0
+ },
+ {
+ "id": 169,
+ "paths": [
+ "M568.991 535.077c0 4.564-2.283 9.699-5.706 13.125l-265.898 265.898c-3.424 3.424-8.558 5.706-13.125 5.706s-9.699-2.283-13.125-5.706l-28.53-28.53c-3.424-3.424-5.706-8.558-5.706-13.125s2.283-9.699 5.706-13.125l224.242-224.242-224.242-224.242c-3.424-3.424-5.706-8.558-5.706-13.125s2.283-9.699 5.706-13.125l28.53-28.53c3.424-3.424 8.558-5.706 13.125-5.706s9.699 2.283 13.125 5.706l265.898 265.898c3.424 3.424 5.706 8.558 5.706 13.125zM788.099 535.077c0 4.564-2.283 9.699-5.706 13.125l-265.898 265.898c-3.424 3.424-8.558 5.706-13.125 5.706s-9.699-2.283-13.125-5.706l-28.53-28.53c-3.424-3.424-5.706-8.558-5.706-13.125s2.283-9.699 5.706-13.125l224.242-224.242-224.242-224.242c-3.424-3.424-5.706-8.558-5.706-13.125s2.283-9.699 5.706-13.125l28.53-28.53c3.424-3.424 8.558-5.706 13.125-5.706s9.699 2.283 13.125 5.706l265.898 265.898c3.424 3.424 5.706 8.558 5.706 13.125z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "angle-double-right"
+ ],
+ "defaultCode": 61697,
+ "grid": 0
+ },
+ {
+ "id": 170,
+ "paths": [
+ "M585.715 307.3v-269.978c8.008 5.148 14.872 10.296 20.591 16.016l233.371 233.371c5.72 5.72 10.868 12.583 16.016 20.591h-269.978zM512.5 325.604c0 30.316 24.595 54.911 54.911 54.911h311.161v604.019c0 30.316-24.595 54.911-54.911 54.911h-768.751c-30.316 0-54.911-24.595-54.911-54.911v-915.18c0-30.316 24.595-54.911 54.911-54.911h457.59v311.161z"
+ ],
+ "width": 879,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file-alt"
+ ],
+ "defaultCode": 61787,
+ "grid": 0
+ },
+ {
+ "id": 171,
+ "paths": [
+ "M839.677 286.709c5.72 5.72 10.868 12.583 16.016 20.591h-269.978v-269.978c8.008 5.148 14.872 10.296 20.591 16.016zM567.411 380.515h311.161v604.019c0 30.316-24.595 54.911-54.911 54.911h-768.751c-30.316 0-54.911-24.595-54.911-54.911v-915.18c0-30.316 24.595-54.911 54.911-54.911h457.59v311.161c0 30.316 24.595 54.911 54.911 54.911zM658.929 801.498v-36.607c0-10.296-8.008-18.304-18.304-18.304h-402.679c-10.296 0-18.304 8.008-18.304 18.304v36.607c0 10.296 8.008 18.304 18.304 18.304h402.679c10.296 0 18.304-8.008 18.304-18.304zM658.929 655.069v-36.607c0-10.296-8.008-18.304-18.304-18.304h-402.679c-10.296 0-18.304 8.008-18.304 18.304v36.607c0 10.296 8.008 18.304 18.304 18.304h402.679c10.296 0 18.304-8.008 18.304-18.304zM658.929 508.64v-36.607c0-10.296-8.008-18.304-18.304-18.304h-402.679c-10.296 0-18.304 8.008-18.304 18.304v36.607c0 10.296 8.008 18.304 18.304 18.304h402.679c10.296 0 18.304-8.008 18.304-18.304z"
+ ],
+ "width": 879,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file-text-alt"
+ ],
+ "defaultCode": 61788,
+ "grid": 0
+ },
+ {
+ "id": 172,
+ "paths": [
+ "M839.677 231.798c21.164 21.164 38.895 63.491 38.895 93.806v658.929c0 30.316-24.595 54.911-54.911 54.911h-768.751c-30.316 0-54.911-24.595-54.911-54.911v-915.18c0-30.316 24.595-54.911 54.911-54.911h512.5c30.316 0 72.642 17.731 93.806 38.895zM585.715 92.233v215.067h215.067c-3.432-9.723-8.579-19.448-12.583-23.452l-179.032-179.032c-4.004-4.004-13.727-9.152-23.452-12.583zM805.357 966.23v-585.715h-237.946c-30.316 0-54.911-24.595-54.911-54.911v-237.946h-439.286v878.572h732.144zM511.356 627.041c14.3 11.44 30.316 21.735 48.047 32.031 24.023-2.86 46.331-4.004 66.922-4.004 38.323 0 86.942 4.575 101.242 28.027 4.004 5.72 7.436 16.016 1.144 29.743-0.572 0.572-1.144 1.716-1.716 2.288v0.572c-1.716 10.296-10.296 21.735-40.611 21.735-36.607 0-92.090-16.587-140.137-41.755-79.507 8.579-163.016 26.312-224.219 47.475-58.915 100.669-104.102 149.86-138.421 149.86-5.72 0-10.868-1.144-16.016-4.004l-13.727-6.864c-1.716-0.572-2.288-1.716-3.432-2.86-2.86-2.86-5.148-9.152-3.432-20.591 5.72-26.312 36.607-70.355 107.534-107.534 4.575-2.86 10.296-1.144 13.156 3.432 0.572 0.572 1.144 1.716 1.144 2.288 17.731-29.171 38.323-66.351 61.203-112.681 25.739-51.479 45.759-101.813 59.487-149.86-18.304-62.347-24.023-126.409-13.727-164.16 4.004-14.3 12.583-22.879 24.023-22.879h12.583c8.579 0 15.444 2.86 20.020 8.579 6.864 8.008 8.579 20.591 5.148 38.895-0.572 1.716-1.144 3.432-2.288 4.575 0.572 1.716 0.572 2.86 0.572 4.575v17.16c-0.572 36.035-1.144 70.355-8.008 109.821 20.020 60.059 49.763 108.677 83.511 136.133zM181.892 862.128c17.16-8.008 41.755-32.603 78.363-90.374-42.899 33.175-69.782 70.926-78.363 90.374zM409.543 335.9c-5.72 16.016-5.72 43.471-1.144 75.503 1.716-9.152 2.86-17.731 4.004-25.168 1.144-9.723 2.86-17.731 4.004-24.595 0.572-1.716 1.144-2.86 2.288-4.575-0.572-0.572-0.572-1.716-1.144-2.86-0.572-10.296-4.004-16.587-7.436-20.591 0 1.144-0.572 1.716-0.572 2.288zM338.617 713.983c50.335-20.020 106.39-36.035 162.445-46.331-5.72-4.575-11.44-8.579-16.587-13.156-28.027-24.595-53.195-58.915-72.642-100.669-10.868 34.891-26.883 72.070-47.475 112.681-8.579 16.016-17.16 32.031-25.739 47.475zM708.121 704.831c-2.86-2.86-17.731-13.727-80.078-13.727 28.027 10.296 53.767 16.016 70.926 16.016 5.148 0 8.008 0 10.296-0.572 0-0.572-0.572-1.144-1.144-1.716z"
+ ],
+ "width": 879,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file-pdf"
+ ],
+ "defaultCode": 61889,
+ "grid": 0
+ },
+ {
+ "id": 173,
+ "paths": [
+ "M839.677 231.798c21.164 21.164 38.895 63.491 38.895 93.806v658.929c0 30.316-24.595 54.911-54.911 54.911h-768.751c-30.316 0-54.911-24.595-54.911-54.911v-915.18c0-30.316 24.595-54.911 54.911-54.911h512.5c30.316 0 72.642 17.731 93.806 38.895zM585.715 92.233v215.067h215.067c-3.432-9.723-8.579-19.448-12.583-23.452l-179.032-179.032c-4.004-4.004-13.727-9.152-23.452-12.583zM805.357 966.23v-585.715h-237.946c-30.316 0-54.911-24.595-54.911-54.911v-237.946h-439.286v878.572h732.144zM133.273 453.729v61.203h40.039l93.806 378.083h90.946l73.214-277.414c2.86-8.579 4.575-17.16 5.72-26.312 0.572-4.575 1.144-9.152 1.144-13.727h2.288l1.716 13.727c1.716 8.008 2.288 17.16 5.148 26.312l73.214 277.414h90.946l93.806-378.083h40.039v-61.203h-171.597v61.203h51.479l-56.626 250.531c-2.288 9.152-3.432 18.875-4.004 26.312l-1.144 12.012h-2.288c0-3.432-1.144-8.008-1.716-12.012-1.716-7.436-2.86-17.16-5.148-26.312l-82.366-311.733h-65.207l-82.366 311.733c-2.288 9.152-2.86 18.875-4.575 26.312l-2.288 12.012h-2.288l-1.144-12.012c-0.572-7.436-1.716-17.16-4.004-26.312l-56.626-250.531h51.479v-61.203h-171.597z"
+ ],
+ "width": 879,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file-word"
+ ],
+ "defaultCode": 61890,
+ "grid": 0
+ },
+ {
+ "id": 174,
+ "paths": [
+ "M839.677 231.798c21.164 21.164 38.895 63.491 38.895 93.806v658.929c0 30.316-24.595 54.911-54.911 54.911h-768.751c-30.316 0-54.911-24.595-54.911-54.911v-915.18c0-30.316 24.595-54.911 54.911-54.911h512.5c30.316 0 72.642 17.731 93.806 38.895zM585.715 92.233v215.067h215.067c-3.432-9.723-8.579-19.448-12.583-23.452l-179.032-179.032c-4.004-4.004-13.727-9.152-23.452-12.583zM805.357 966.23v-585.715h-237.946c-30.316 0-54.911-24.595-54.911-54.911v-237.946h-439.286v878.572h732.144zM245.383 832.385v60.63h160.728v-60.63h-42.899l58.915-92.090c6.864-10.868 10.296-19.448 12.012-19.448h1.144c0.572 2.288 1.716 4.004 2.86 5.72 2.288 4.575 5.72 8.008 9.723 13.727l61.203 92.090h-43.471v60.63h166.449v-60.63h-38.895l-109.821-156.152 111.538-161.301h38.323v-61.203h-159.585v61.203h42.327l-58.915 90.946c-6.864 10.868-12.012 19.448-12.012 18.875h-1.144c-0.572-2.288-1.716-4.004-2.86-5.72-2.288-4.004-5.148-8.008-9.723-13.156l-60.63-90.946h43.471v-61.203h-165.876v61.203h38.895l108.106 155.581-110.965 161.872h-38.895z"
+ ],
+ "width": 879,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file-excel"
+ ],
+ "defaultCode": 61891,
+ "grid": 0
+ },
+ {
+ "id": 175,
+ "paths": [
+ "M839.677 231.798c21.164 21.164 38.895 63.491 38.895 93.806v658.929c0 30.316-24.595 54.911-54.911 54.911h-768.751c-30.316 0-54.911-24.595-54.911-54.911v-915.18c0-30.316 24.595-54.911 54.911-54.911h512.5c30.316 0 72.642 17.731 93.806 38.895zM585.715 92.233v215.067h215.067c-3.432-9.723-8.579-19.448-12.583-23.452l-179.032-179.032c-4.004-4.004-13.727-9.152-23.452-12.583zM805.357 966.23v-585.715h-237.946c-30.316 0-54.911-24.595-54.911-54.911v-237.946h-439.286v878.572h732.144zM237.946 832.385v60.63h187.040v-60.63h-53.195v-95.522h78.363c24.595 0 46.903-1.144 67.495-8.579 51.479-17.731 83.511-70.926 83.511-133.273s-30.887-110.394-78.363-130.413c-21.735-8.579-48.047-10.868-74.359-10.868h-210.492v61.203h52.622v317.453h-52.622zM439.859 672.228h-68.066v-153.293h68.638c20.020 0 35.464 3.432 47.475 10.296 20.591 12.012 32.031 35.464 32.031 65.778 0 32.031-11.44 56.626-35.464 68.638-12.012 5.72-26.883 8.579-44.615 8.579z"
+ ],
+ "width": 879,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file-powerpoint"
+ ],
+ "defaultCode": 61892,
+ "grid": 0
+ },
+ {
+ "id": 176,
+ "paths": [
+ "M839.677 231.798c21.164 21.164 38.895 63.491 38.895 93.806v658.929c0 30.316-24.595 54.911-54.911 54.911h-768.751c-30.316 0-54.911-24.595-54.911-54.911v-915.18c0-30.316 24.595-54.911 54.911-54.911h512.5c30.316 0 72.642 17.731 93.806 38.895zM585.715 92.233v215.067h215.067c-3.432-9.723-8.579-19.448-12.583-23.452l-179.032-179.032c-4.004-4.004-13.727-9.152-23.452-12.583zM805.357 966.23v-585.715h-237.946c-30.316 0-54.911-24.595-54.911-54.911v-237.946h-439.286v878.572h732.144zM732.144 709.979v183.036h-585.715v-109.821l109.821-109.821 73.214 73.214 219.643-219.643zM256.25 600.158c-60.63 0-109.821-49.191-109.821-109.821s49.191-109.821 109.821-109.821 109.821 49.191 109.821 109.821-49.191 109.821-109.821 109.821z"
+ ],
+ "width": 879,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file-image"
+ ],
+ "defaultCode": 61893,
+ "grid": 0
+ },
+ {
+ "id": 177,
+ "paths": [
+ "M366.071 234.087v-73.214h-73.214v73.214h73.214zM439.286 307.3v-73.214h-73.214v73.214h73.214zM366.071 380.515v-73.214h-73.214v73.214h73.214zM439.286 453.729v-73.214h-73.214v73.214h73.214zM839.677 231.798c21.164 21.164 38.895 63.491 38.895 93.806v658.929c0 30.316-24.595 54.911-54.911 54.911h-768.751c-30.316 0-54.911-24.595-54.911-54.911v-915.18c0-30.316 24.595-54.911 54.911-54.911h512.5c30.316 0 72.642 17.731 93.806 38.895zM585.715 92.233v215.067h215.067c-3.432-9.723-8.579-19.448-12.583-23.452l-179.032-179.032c-4.004-4.004-13.727-9.152-23.452-12.583zM805.357 966.23v-585.715h-237.946c-30.316 0-54.911-24.595-54.911-54.911v-237.946h-73.214v73.214h-73.214v-73.214h-292.857v878.572h732.144zM446.722 553.827c48.618 164.16 61.203 199.624 61.203 199.624 2.86 9.723 4.575 19.448 4.575 29.743 0 63.491-61.774 109.821-146.429 109.821s-146.429-46.331-146.429-109.821c0-10.296 1.716-20.020 4.575-29.743 0 0 12.012-35.464 68.638-226.507v-73.214h73.214v73.214h45.187c16.587 0 30.887 10.868 35.464 26.883zM366.071 819.801c40.611 0 73.214-16.587 73.214-36.607s-32.603-36.607-73.214-36.607-73.214 16.587-73.214 36.607 32.603 36.607 73.214 36.607z"
+ ],
+ "width": 879,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file-archive"
+ ],
+ "defaultCode": 61894,
+ "grid": 0
+ },
+ {
+ "id": 178,
+ "paths": [
+ "M839.677 231.798c21.164 21.164 38.895 63.491 38.895 93.806v658.929c0 30.316-24.595 54.911-54.911 54.911h-768.751c-30.316 0-54.911-24.595-54.911-54.911v-915.18c0-30.316 24.595-54.911 54.911-54.911h512.5c30.316 0 72.642 17.731 93.806 38.895zM585.715 92.233v215.067h215.067c-3.432-9.723-8.579-19.448-12.583-23.452l-179.032-179.032c-4.004-4.004-13.727-9.152-23.452-12.583zM805.357 966.23v-585.715h-237.946c-30.316 0-54.911-24.595-54.911-54.911v-237.946h-439.286v878.572h732.144zM354.632 500.632c6.864 2.86 11.44 9.723 11.44 17.16v311.161c0 7.436-4.575 14.3-11.44 17.16-2.288 0.572-4.575 1.144-6.864 1.144-4.575 0-9.152-1.716-13.156-5.148l-94.95-95.522h-74.93c-10.296 0-18.304-8.008-18.304-18.304v-109.821c0-10.296 8.008-18.304 18.304-18.304h74.93l94.95-95.522c5.72-5.148 13.156-6.864 20.020-4.004zM593.15 894.732c10.868 0 21.164-4.575 28.599-13.727 47.475-58.343 73.786-132.129 73.786-207.632s-26.312-149.289-73.786-207.632c-12.583-16.016-36.035-18.304-51.479-5.72-16.016 13.156-18.304 36.035-5.148 52.051 37.179 45.759 57.199 101.813 57.199 161.301s-20.020 115.542-57.199 161.301c-13.156 16.016-10.868 38.895 5.148 51.479 6.864 5.72 14.872 8.579 22.879 8.579zM472.461 810.077c9.723 0 19.448-4.004 26.883-11.44 32.031-34.32 49.763-78.363 49.763-125.265s-17.731-90.946-49.763-125.265c-13.727-14.872-37.179-15.444-52.051-1.716-14.3 13.727-15.444 37.179-1.144 52.051 18.875 20.591 29.743 46.903 29.743 74.93s-10.868 54.339-29.743 74.93c-14.3 14.872-13.156 38.323 1.144 52.051 7.436 6.292 16.587 9.723 25.168 9.723z"
+ ],
+ "width": 879,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file-audio"
+ ],
+ "defaultCode": 61895,
+ "grid": 0
+ },
+ {
+ "id": 179,
+ "paths": [
+ "M839.677 231.798c21.164 21.164 38.895 63.491 38.895 93.806v658.929c0 30.316-24.595 54.911-54.911 54.911h-768.751c-30.316 0-54.911-24.595-54.911-54.911v-915.18c0-30.316 24.595-54.911 54.911-54.911h512.5c30.316 0 72.642 17.731 93.806 38.895zM585.715 92.233v215.067h215.067c-3.432-9.723-8.579-19.448-12.583-23.452l-179.032-179.032c-4.004-4.004-13.727-9.152-23.452-12.583zM805.357 966.23v-585.715h-237.946c-30.316 0-54.911-24.595-54.911-54.911v-237.946h-439.286v878.572h732.144zM439.286 453.729c40.039 0 73.214 33.175 73.214 73.214v219.643c0 40.039-33.175 73.214-73.214 73.214h-219.643c-40.039 0-73.214-33.175-73.214-73.214v-219.643c0-40.039 33.175-73.214 73.214-73.214h219.643zM720.704 454.873c6.864 2.86 11.44 9.723 11.44 17.16v329.465c0 7.436-4.575 14.3-11.44 17.16-2.288 0.572-4.575 1.144-6.864 1.144-4.575 0-9.723-1.716-13.156-5.148l-151.577-152.149v-51.479l151.577-152.149c3.432-3.432 8.579-5.148 13.156-5.148 2.288 0 4.575 0.572 6.864 1.144z"
+ ],
+ "width": 879,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file-video"
+ ],
+ "defaultCode": 61896,
+ "grid": 0
+ },
+ {
+ "id": 180,
+ "paths": [
+ "M839.677 231.798c21.164 21.164 38.895 63.491 38.895 93.806v658.929c0 30.316-24.595 54.911-54.911 54.911h-768.751c-30.316 0-54.911-24.595-54.911-54.911v-915.18c0-30.316 24.595-54.911 54.911-54.911h512.5c30.316 0 72.642 17.731 93.806 38.895zM585.715 92.233v215.067h215.067c-3.432-9.723-8.579-19.448-12.583-23.452l-179.032-179.032c-4.004-4.004-13.727-9.152-23.452-12.583zM805.357 966.23v-585.715h-237.946c-30.316 0-54.911-24.595-54.911-54.911v-237.946h-439.286v878.572h732.144zM274.554 453.729c6.292-8.008 17.731-9.723 25.739-3.432l29.171 21.735c8.008 6.292 9.723 17.731 3.432 25.739l-104.102 138.993 104.102 138.993c6.292 8.008 4.575 19.448-3.432 25.739l-29.171 21.735c-8.008 6.292-19.448 4.575-25.739-3.432l-129.269-172.168c-4.575-6.292-4.575-15.444 0-21.735zM733.287 625.897c4.575 6.292 4.575 15.444 0 21.735l-129.269 172.168c-6.292 8.008-17.731 9.723-25.739 3.432l-29.171-21.735c-8.008-6.292-9.723-17.731-3.432-25.739l104.102-138.993-104.102-138.993c-6.292-8.008-4.575-19.448 3.432-25.739l29.171-21.735c8.008-6.292 19.448-4.575 25.739 3.432zM378.656 889.584c-10.296-1.716-16.587-11.44-14.872-21.164l78.934-475.321c1.716-10.296 11.44-16.587 21.164-14.872l36.035 5.72c10.296 1.716 16.587 11.44 14.872 21.164l-78.934 475.321c-1.716 10.296-11.44 16.587-21.164 14.872z"
+ ],
+ "width": 879,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file-code"
+ ],
+ "defaultCode": 61897,
+ "grid": 0
+ }
+ ],
+ "invisible": true,
+ "colorThemes": [],
+ "colorThemeIdx": 0
+ },
+ {
+ "selection": [
+ {
+ "order": 0,
+ "ligatures": "error",
+ "id": 0
+ },
+ {
+ "order": 0,
+ "ligatures": "error_outline",
+ "id": 1
+ },
+ {
+ "order": 0,
+ "ligatures": "warning, report_problem",
+ "id": 2
+ },
+ {
+ "order": 0,
+ "ligatures": "add_alert",
+ "id": 3
+ },
+ {
+ "order": 0,
+ "ligatures": "notification_important",
+ "id": 4
+ },
+ {
+ "order": 0,
+ "ligatures": "album",
+ "id": 5
+ },
+ {
+ "order": 0,
+ "ligatures": "av_timer",
+ "id": 6
+ },
+ {
+ "order": 0,
+ "ligatures": "closed_caption",
+ "id": 7
+ },
+ {
+ "order": 0,
+ "ligatures": "equalizer",
+ "id": 8
+ },
+ {
+ "order": 0,
+ "ligatures": "explicit",
+ "id": 9
+ },
+ {
+ "order": 0,
+ "ligatures": "fast_forward",
+ "id": 10
+ },
+ {
+ "order": 0,
+ "ligatures": "fast_rewind",
+ "id": 11
+ },
+ {
+ "order": 0,
+ "ligatures": "games, gamepad",
+ "id": 12
+ },
+ {
+ "order": 0,
+ "ligatures": "hearing",
+ "id": 13
+ },
+ {
+ "order": 0,
+ "ligatures": "high_quality",
+ "id": 14
+ },
+ {
+ "order": 0,
+ "ligatures": "loop, sync",
+ "id": 15
+ },
+ {
+ "order": 0,
+ "ligatures": "mic",
+ "id": 16
+ },
+ {
+ "order": 0,
+ "ligatures": "mic_none",
+ "id": 17
+ },
+ {
+ "order": 0,
+ "ligatures": "mic_off",
+ "id": 18
+ },
+ {
+ "order": 0,
+ "ligatures": "movie, movie_creation",
+ "id": 19
+ },
+ {
+ "order": 0,
+ "ligatures": "library_add, queue, add_to_photos",
+ "id": 20
+ },
+ {
+ "order": 0,
+ "ligatures": "library_books",
+ "id": 21
+ },
+ {
+ "order": 0,
+ "ligatures": "library_music",
+ "id": 22
+ },
+ {
+ "order": 0,
+ "ligatures": "new_releases",
+ "id": 23
+ },
+ {
+ "order": 0,
+ "ligatures": "not_interested, do_not_disturb",
+ "id": 24
+ },
+ {
+ "order": 0,
+ "ligatures": "pause",
+ "id": 25
+ },
+ {
+ "order": 0,
+ "ligatures": "pause_circle_filled",
+ "id": 26
+ },
+ {
+ "order": 0,
+ "ligatures": "pause_circle_outline",
+ "id": 27
+ },
+ {
+ "order": 0,
+ "ligatures": "play_arrow",
+ "id": 28
+ },
+ {
+ "order": 0,
+ "ligatures": "play_circle_filled",
+ "id": 29
+ },
+ {
+ "order": 0,
+ "ligatures": "play_circle_outline",
+ "id": 30
+ },
+ {
+ "order": 0,
+ "ligatures": "playlist_add",
+ "id": 31
+ },
+ {
+ "order": 0,
+ "ligatures": "queue_music",
+ "id": 32
+ },
+ {
+ "order": 0,
+ "ligatures": "radio",
+ "id": 33
+ },
+ {
+ "order": 0,
+ "ligatures": "recent_actors",
+ "id": 34
+ },
+ {
+ "order": 0,
+ "ligatures": "repeat",
+ "id": 35
+ },
+ {
+ "order": 0,
+ "ligatures": "repeat_one",
+ "id": 36
+ },
+ {
+ "order": 0,
+ "ligatures": "replay",
+ "id": 37
+ },
+ {
+ "order": 0,
+ "ligatures": "shuffle",
+ "id": 38
+ },
+ {
+ "order": 0,
+ "ligatures": "skip_next",
+ "id": 39
+ },
+ {
+ "order": 0,
+ "ligatures": "skip_previous",
+ "id": 40
+ },
+ {
+ "order": 0,
+ "ligatures": "snooze",
+ "id": 41
+ },
+ {
+ "order": 0,
+ "ligatures": "stop",
+ "id": 42
+ },
+ {
+ "order": 0,
+ "ligatures": "subtitles",
+ "id": 43
+ },
+ {
+ "order": 0,
+ "ligatures": "surround_sound",
+ "id": 44
+ },
+ {
+ "order": 0,
+ "ligatures": "video_collection",
+ "id": 45
+ },
+ {
+ "order": 0,
+ "ligatures": "videocam",
+ "id": 46
+ },
+ {
+ "order": 0,
+ "ligatures": "videocam_off",
+ "id": 47
+ },
+ {
+ "order": 0,
+ "ligatures": "volume_down",
+ "id": 48
+ },
+ {
+ "order": 0,
+ "ligatures": "volume_mute",
+ "id": 49
+ },
+ {
+ "order": 0,
+ "ligatures": "volume_off",
+ "id": 50
+ },
+ {
+ "order": 0,
+ "ligatures": "volume_up",
+ "id": 51
+ },
+ {
+ "order": 0,
+ "ligatures": "web",
+ "id": 52
+ },
+ {
+ "order": 0,
+ "ligatures": "hd",
+ "id": 53
+ },
+ {
+ "order": 0,
+ "ligatures": "sort_by_alpha",
+ "id": 54
+ },
+ {
+ "order": 0,
+ "ligatures": "airplay",
+ "id": 55
+ },
+ {
+ "order": 0,
+ "ligatures": "forward_10",
+ "id": 56
+ },
+ {
+ "order": 0,
+ "ligatures": "forward_30",
+ "id": 57
+ },
+ {
+ "order": 0,
+ "ligatures": "forward_5",
+ "id": 58
+ },
+ {
+ "order": 0,
+ "ligatures": "replay_10",
+ "id": 59
+ },
+ {
+ "order": 0,
+ "ligatures": "replay_30",
+ "id": 60
+ },
+ {
+ "order": 0,
+ "ligatures": "replay_5",
+ "id": 61
+ },
+ {
+ "order": 0,
+ "ligatures": "add_to_queue",
+ "id": 62
+ },
+ {
+ "order": 0,
+ "ligatures": "fiber_dvr",
+ "id": 63
+ },
+ {
+ "order": 0,
+ "ligatures": "fiber_new",
+ "id": 64
+ },
+ {
+ "order": 0,
+ "ligatures": "playlist_play",
+ "id": 65
+ },
+ {
+ "order": 0,
+ "ligatures": "art_track",
+ "id": 66
+ },
+ {
+ "order": 0,
+ "ligatures": "fiber_manual_record",
+ "id": 67
+ },
+ {
+ "order": 0,
+ "ligatures": "fiber_smart_record",
+ "id": 68
+ },
+ {
+ "order": 0,
+ "ligatures": "music_video",
+ "id": 69
+ },
+ {
+ "order": 0,
+ "ligatures": "subscriptions",
+ "id": 70
+ },
+ {
+ "order": 0,
+ "ligatures": "playlist_add_check",
+ "id": 71
+ },
+ {
+ "order": 0,
+ "ligatures": "queue_play_next",
+ "id": 72
+ },
+ {
+ "order": 0,
+ "ligatures": "remove_from_queue",
+ "id": 73
+ },
+ {
+ "order": 0,
+ "ligatures": "slow_motion_video",
+ "id": 74
+ },
+ {
+ "order": 0,
+ "ligatures": "web_asset",
+ "id": 75
+ },
+ {
+ "order": 0,
+ "ligatures": "fiber_pin",
+ "id": 76
+ },
+ {
+ "order": 0,
+ "ligatures": "branding_watermark",
+ "id": 77
+ },
+ {
+ "order": 0,
+ "ligatures": "call_to_action",
+ "id": 78
+ },
+ {
+ "order": 0,
+ "ligatures": "featured_play_list",
+ "id": 79
+ },
+ {
+ "order": 0,
+ "ligatures": "featured_video",
+ "id": 80
+ },
+ {
+ "order": 0,
+ "ligatures": "note",
+ "id": 81
+ },
+ {
+ "order": 0,
+ "ligatures": "video_call",
+ "id": 82
+ },
+ {
+ "order": 0,
+ "ligatures": "video_label",
+ "id": 83
+ },
+ {
+ "order": 0,
+ "ligatures": "4k",
+ "id": 84
+ },
+ {
+ "order": 0,
+ "ligatures": "missed_video_call",
+ "id": 85
+ },
+ {
+ "order": 0,
+ "ligatures": "control_camera",
+ "id": 86
+ },
+ {
+ "order": 0,
+ "ligatures": "business, domain",
+ "id": 87
+ },
+ {
+ "order": 0,
+ "ligatures": "call",
+ "id": 88
+ },
+ {
+ "order": 0,
+ "ligatures": "call_end",
+ "id": 89
+ },
+ {
+ "order": 0,
+ "ligatures": "call_made",
+ "id": 90
+ },
+ {
+ "order": 0,
+ "ligatures": "call_merge, merge_type",
+ "id": 91
+ },
+ {
+ "order": 0,
+ "ligatures": "call_missed",
+ "id": 92
+ },
+ {
+ "order": 0,
+ "ligatures": "call_received",
+ "id": 93
+ },
+ {
+ "order": 0,
+ "ligatures": "call_split",
+ "id": 94
+ },
+ {
+ "order": 0,
+ "ligatures": "chat",
+ "id": 95
+ },
+ {
+ "order": 0,
+ "ligatures": "clear_all",
+ "id": 96
+ },
+ {
+ "order": 0,
+ "ligatures": "comment",
+ "id": 97
+ },
+ {
+ "order": 0,
+ "ligatures": "contacts",
+ "id": 98
+ },
+ {
+ "order": 0,
+ "ligatures": "dialer_sip",
+ "id": 99
+ },
+ {
+ "order": 0,
+ "ligatures": "dialpad",
+ "id": 100
+ },
+ {
+ "order": 0,
+ "ligatures": "email, mail, markunread, local_post_office",
+ "id": 101
+ },
+ {
+ "order": 0,
+ "ligatures": "forum, question_answer",
+ "id": 102
+ },
+ {
+ "order": 0,
+ "ligatures": "import_export",
+ "id": 103
+ },
+ {
+ "order": 0,
+ "ligatures": "invert_colors_off",
+ "id": 104
+ },
+ {
+ "order": 0,
+ "ligatures": "live_help",
+ "id": 105
+ },
+ {
+ "order": 0,
+ "ligatures": "location_off",
+ "id": 106
+ },
+ {
+ "order": 0,
+ "ligatures": "location_on, place, room",
+ "id": 107
+ },
+ {
+ "order": 0,
+ "ligatures": "message",
+ "id": 108
+ },
+ {
+ "order": 0,
+ "ligatures": "chat_bubble",
+ "id": 109
+ },
+ {
+ "order": 0,
+ "ligatures": "chat_bubble_outline",
+ "id": 110
+ },
+ {
+ "order": 0,
+ "ligatures": "no_sim, signal_cellular_no_sim",
+ "id": 111
+ },
+ {
+ "order": 0,
+ "ligatures": "phone, local_phone",
+ "id": 112
+ },
+ {
+ "order": 0,
+ "ligatures": "portable_wifi_off",
+ "id": 113
+ },
+ {
+ "order": 0,
+ "ligatures": "contact_phone",
+ "id": 114
+ },
+ {
+ "order": 0,
+ "ligatures": "contact_mail",
+ "id": 115
+ },
+ {
+ "order": 0,
+ "ligatures": "ring_volume",
+ "id": 116
+ },
+ {
+ "order": 0,
+ "ligatures": "speaker_phone",
+ "id": 117
+ },
+ {
+ "order": 0,
+ "ligatures": "stay_current_landscape, stay_primary_landscape",
+ "id": 118
+ },
+ {
+ "order": 0,
+ "ligatures": "stay_current_portrait, stay_primary_portrait, smartphone",
+ "id": 119
+ },
+ {
+ "order": 0,
+ "ligatures": "swap_calls",
+ "id": 120
+ },
+ {
+ "order": 0,
+ "ligatures": "textsms, sms",
+ "id": 121
+ },
+ {
+ "order": 0,
+ "ligatures": "voicemail",
+ "id": 122
+ },
+ {
+ "order": 0,
+ "ligatures": "vpn_key",
+ "id": 123
+ },
+ {
+ "order": 0,
+ "ligatures": "phonelink_erase",
+ "id": 124
+ },
+ {
+ "order": 0,
+ "ligatures": "phonelink_lock",
+ "id": 125
+ },
+ {
+ "order": 0,
+ "ligatures": "phonelink_ring",
+ "id": 126
+ },
+ {
+ "order": 0,
+ "ligatures": "phonelink_setup",
+ "id": 127
+ },
+ {
+ "order": 0,
+ "ligatures": "present_to_all",
+ "id": 128
+ },
+ {
+ "order": 0,
+ "ligatures": "import_contacts",
+ "id": 129
+ },
+ {
+ "order": 0,
+ "ligatures": "mail_outline",
+ "id": 130
+ },
+ {
+ "order": 0,
+ "ligatures": "screen_share",
+ "id": 131
+ },
+ {
+ "order": 0,
+ "ligatures": "stop_screen_share",
+ "id": 132
+ },
+ {
+ "order": 0,
+ "ligatures": "call_missed_outgoing",
+ "id": 133
+ },
+ {
+ "order": 0,
+ "ligatures": "rss_feed",
+ "id": 134
+ },
+ {
+ "order": 0,
+ "ligatures": "alternate_email",
+ "id": 135
+ },
+ {
+ "order": 0,
+ "ligatures": "mobile_screen_share",
+ "id": 136
+ },
+ {
+ "order": 0,
+ "ligatures": "add_call",
+ "id": 137
+ },
+ {
+ "order": 0,
+ "ligatures": "cancel_presentation",
+ "id": 138
+ },
+ {
+ "order": 0,
+ "ligatures": "pause_presentation",
+ "id": 139
+ },
+ {
+ "order": 0,
+ "ligatures": "unsubscribe",
+ "id": 140
+ },
+ {
+ "order": 0,
+ "ligatures": "cell_wifi",
+ "id": 141
+ },
+ {
+ "order": 0,
+ "ligatures": "sentiment_satisfied_alt",
+ "id": 142
+ },
+ {
+ "order": 0,
+ "ligatures": "list_alt",
+ "id": 143
+ },
+ {
+ "order": 0,
+ "ligatures": "domain_disabled",
+ "id": 144
+ },
+ {
+ "order": 0,
+ "ligatures": "lightbulb",
+ "id": 145
+ },
+ {
+ "order": 0,
+ "ligatures": "add",
+ "id": 146
+ },
+ {
+ "order": 0,
+ "ligatures": "add_box",
+ "id": 147
+ },
+ {
+ "order": 0,
+ "ligatures": "add_circle",
+ "id": 148
+ },
+ {
+ "order": 0,
+ "ligatures": "add_circle_outline, control_point",
+ "id": 149
+ },
+ {
+ "order": 0,
+ "ligatures": "archive",
+ "id": 150
+ },
+ {
+ "order": 0,
+ "ligatures": "backspace",
+ "id": 151
+ },
+ {
+ "order": 0,
+ "ligatures": "block",
+ "id": 152
+ },
+ {
+ "order": 0,
+ "ligatures": "clear, close",
+ "id": 153
+ },
+ {
+ "order": 0,
+ "ligatures": "content_copy",
+ "id": 154
+ },
+ {
+ "order": 0,
+ "ligatures": "content_cut",
+ "id": 155
+ },
+ {
+ "order": 0,
+ "ligatures": "content_paste",
+ "id": 156
+ },
+ {
+ "order": 0,
+ "ligatures": "create, mode_edit, edit",
+ "id": 157
+ },
+ {
+ "order": 0,
+ "ligatures": "drafts",
+ "id": 158
+ },
+ {
+ "order": 0,
+ "ligatures": "filter_list",
+ "id": 159
+ },
+ {
+ "order": 0,
+ "ligatures": "flag, assistant_photo",
+ "id": 160
+ },
+ {
+ "order": 0,
+ "ligatures": "forward",
+ "id": 161
+ },
+ {
+ "order": 0,
+ "ligatures": "gesture",
+ "id": 162
+ },
+ {
+ "order": 0,
+ "ligatures": "inbox",
+ "id": 163
+ },
+ {
+ "order": 0,
+ "ligatures": "link, insert_link",
+ "id": 164
+ },
+ {
+ "order": 0,
+ "ligatures": "redo",
+ "id": 165
+ },
+ {
+ "order": 0,
+ "ligatures": "remove",
+ "id": 166
+ },
+ {
+ "order": 0,
+ "ligatures": "remove_circle, do_not_disturb_on",
+ "id": 167
+ },
+ {
+ "order": 0,
+ "ligatures": "remove_circle_outline",
+ "id": 168
+ },
+ {
+ "order": 0,
+ "ligatures": "reply",
+ "id": 169
+ },
+ {
+ "order": 0,
+ "ligatures": "reply_all",
+ "id": 170
+ },
+ {
+ "order": 0,
+ "ligatures": "report",
+ "id": 171
+ },
+ {
+ "order": 0,
+ "ligatures": "save",
+ "id": 172
+ },
+ {
+ "order": 0,
+ "ligatures": "select_all",
+ "id": 173
+ },
+ {
+ "order": 0,
+ "ligatures": "send",
+ "id": 174
+ },
+ {
+ "order": 0,
+ "ligatures": "sort",
+ "id": 175
+ },
+ {
+ "order": 0,
+ "ligatures": "text_format",
+ "id": 176
+ },
+ {
+ "order": 0,
+ "ligatures": "undo",
+ "id": 177
+ },
+ {
+ "order": 0,
+ "ligatures": "font_download",
+ "id": 178
+ },
+ {
+ "order": 0,
+ "ligatures": "move_to_inbox",
+ "id": 179
+ },
+ {
+ "order": 0,
+ "ligatures": "unarchive",
+ "id": 180
+ },
+ {
+ "order": 0,
+ "ligatures": "next_week",
+ "id": 181
+ },
+ {
+ "order": 0,
+ "ligatures": "weekend",
+ "id": 182
+ },
+ {
+ "order": 0,
+ "ligatures": "delete_sweep",
+ "id": 183
+ },
+ {
+ "order": 0,
+ "ligatures": "low_priority",
+ "id": 184
+ },
+ {
+ "order": 0,
+ "ligatures": "outlined_flag",
+ "id": 185
+ },
+ {
+ "order": 0,
+ "ligatures": "link_off",
+ "id": 186
+ },
+ {
+ "order": 0,
+ "ligatures": "report_off",
+ "id": 187
+ },
+ {
+ "order": 0,
+ "ligatures": "save_alt",
+ "id": 188
+ },
+ {
+ "order": 0,
+ "ligatures": "ballot",
+ "id": 189
+ },
+ {
+ "order": 0,
+ "ligatures": "file_copy",
+ "id": 190
+ },
+ {
+ "order": 0,
+ "ligatures": "how_to_reg",
+ "id": 191
+ },
+ {
+ "order": 0,
+ "ligatures": "how_to_vote",
+ "id": 192
+ },
+ {
+ "order": 0,
+ "ligatures": "waves",
+ "id": 193
+ },
+ {
+ "order": 0,
+ "ligatures": "where_to_vote",
+ "id": 194
+ },
+ {
+ "order": 0,
+ "ligatures": "add_link",
+ "id": 195
+ },
+ {
+ "order": 0,
+ "ligatures": "inventory",
+ "id": 196
+ },
+ {
+ "order": 0,
+ "ligatures": "access_alarm, alarm",
+ "id": 197
+ },
+ {
+ "order": 0,
+ "ligatures": "access_alarms",
+ "id": 198
+ },
+ {
+ "order": 0,
+ "ligatures": "access_time, query_builder, schedule",
+ "id": 199
+ },
+ {
+ "order": 0,
+ "ligatures": "add_alarm, alarm_add",
+ "id": 200
+ },
+ {
+ "order": 0,
+ "ligatures": "airplanemode_inactive",
+ "id": 201
+ },
+ {
+ "order": 0,
+ "ligatures": "airplanemode_active, flight, local_airport",
+ "id": 202
+ },
+ {
+ "order": 0,
+ "ligatures": "battery_alert",
+ "id": 203
+ },
+ {
+ "order": 0,
+ "ligatures": "battery_charging_full",
+ "id": 204
+ },
+ {
+ "order": 0,
+ "ligatures": "battery_full, battery_std",
+ "id": 205
+ },
+ {
+ "order": 0,
+ "ligatures": "battery_unknown",
+ "id": 206
+ },
+ {
+ "order": 0,
+ "ligatures": "bluetooth",
+ "id": 207
+ },
+ {
+ "order": 0,
+ "ligatures": "bluetooth_connected",
+ "id": 208
+ },
+ {
+ "order": 0,
+ "ligatures": "bluetooth_disabled",
+ "id": 209
+ },
+ {
+ "order": 0,
+ "ligatures": "bluetooth_searching, bluetooth_audio",
+ "id": 210
+ },
+ {
+ "order": 0,
+ "ligatures": "brightness_auto",
+ "id": 211
+ },
+ {
+ "order": 0,
+ "ligatures": "brightness_high, brightness_7",
+ "id": 212
+ },
+ {
+ "order": 0,
+ "ligatures": "brightness_low, brightness_5",
+ "id": 213
+ },
+ {
+ "order": 0,
+ "ligatures": "brightness_medium, brightness_6",
+ "id": 214
+ },
+ {
+ "order": 0,
+ "ligatures": "data_usage",
+ "id": 215
+ },
+ {
+ "order": 0,
+ "ligatures": "developer_mode",
+ "id": 216
+ },
+ {
+ "order": 0,
+ "ligatures": "devices, phonelink",
+ "id": 217
+ },
+ {
+ "order": 0,
+ "ligatures": "dvr",
+ "id": 218
+ },
+ {
+ "order": 0,
+ "ligatures": "gps_fixed, my_location",
+ "id": 219
+ },
+ {
+ "order": 0,
+ "ligatures": "gps_not_fixed, location_searching",
+ "id": 220
+ },
+ {
+ "order": 0,
+ "ligatures": "gps_off, location_disabled",
+ "id": 221
+ },
+ {
+ "order": 0,
+ "ligatures": "graphic_eq",
+ "id": 222
+ },
+ {
+ "order": 0,
+ "ligatures": "network_cell",
+ "id": 223
+ },
+ {
+ "order": 0,
+ "ligatures": "network_wifi",
+ "id": 224
+ },
+ {
+ "order": 0,
+ "ligatures": "nfc",
+ "id": 225
+ },
+ {
+ "order": 0,
+ "ligatures": "now_wallpaper",
+ "id": 226
+ },
+ {
+ "order": 0,
+ "ligatures": "now_widgets",
+ "id": 227
+ },
+ {
+ "order": 0,
+ "ligatures": "screen_lock_landscape",
+ "id": 228
+ },
+ {
+ "order": 0,
+ "ligatures": "screen_lock_portrait",
+ "id": 229
+ },
+ {
+ "order": 0,
+ "ligatures": "screen_lock_rotation",
+ "id": 230
+ },
+ {
+ "order": 0,
+ "ligatures": "screen_rotation",
+ "id": 231
+ },
+ {
+ "order": 0,
+ "ligatures": "sd_storage, sd_card",
+ "id": 232
+ },
+ {
+ "order": 0,
+ "ligatures": "settings_system_daydream",
+ "id": 233
+ },
+ {
+ "order": 0,
+ "ligatures": "signal_cellular_4_bar",
+ "id": 234
+ },
+ {
+ "order": 0,
+ "ligatures": "signal_cellular_connected_no_internet_4_bar",
+ "id": 235
+ },
+ {
+ "order": 0,
+ "ligatures": "signal_cellular_null",
+ "id": 236
+ },
+ {
+ "order": 0,
+ "ligatures": "signal_cellular_off",
+ "id": 237
+ },
+ {
+ "order": 0,
+ "ligatures": "signal_wifi_4_bar",
+ "id": 238
+ },
+ {
+ "order": 0,
+ "ligatures": "signal_wifi_4_bar_lock",
+ "id": 239
+ },
+ {
+ "order": 0,
+ "ligatures": "signal_wifi_off",
+ "id": 240
+ },
+ {
+ "order": 0,
+ "ligatures": "storage",
+ "id": 241
+ },
+ {
+ "order": 0,
+ "ligatures": "usb",
+ "id": 242
+ },
+ {
+ "order": 0,
+ "ligatures": "wifi_lock",
+ "id": 243
+ },
+ {
+ "order": 0,
+ "ligatures": "wifi_tethering",
+ "id": 244
+ },
+ {
+ "order": 0,
+ "ligatures": "add_to_home_screen",
+ "id": 245
+ },
+ {
+ "order": 0,
+ "ligatures": "device_thermostat",
+ "id": 246
+ },
+ {
+ "order": 0,
+ "ligatures": "mobile_friendly",
+ "id": 247
+ },
+ {
+ "order": 0,
+ "ligatures": "mobile_off",
+ "id": 248
+ },
+ {
+ "order": 0,
+ "ligatures": "signal_cellular_alt",
+ "id": 249
+ },
+ {
+ "order": 0,
+ "ligatures": "attach_file",
+ "id": 250
+ },
+ {
+ "order": 0,
+ "ligatures": "attach_money",
+ "id": 251
+ },
+ {
+ "order": 0,
+ "ligatures": "border_all",
+ "id": 252
+ },
+ {
+ "order": 0,
+ "ligatures": "border_bottom",
+ "id": 253
+ },
+ {
+ "order": 0,
+ "ligatures": "border_clear",
+ "id": 254
+ },
+ {
+ "order": 0,
+ "ligatures": "border_color",
+ "id": 255
+ },
+ {
+ "order": 0,
+ "ligatures": "border_horizontal",
+ "id": 256
+ },
+ {
+ "order": 0,
+ "ligatures": "border_inner",
+ "id": 257
+ },
+ {
+ "order": 0,
+ "ligatures": "border_left",
+ "id": 258
+ },
+ {
+ "order": 0,
+ "ligatures": "border_outer",
+ "id": 259
+ },
+ {
+ "order": 0,
+ "ligatures": "border_right",
+ "id": 260
+ },
+ {
+ "order": 0,
+ "ligatures": "border_style",
+ "id": 261
+ },
+ {
+ "order": 0,
+ "ligatures": "border_top",
+ "id": 262
+ },
+ {
+ "order": 0,
+ "ligatures": "border_vertical",
+ "id": 263
+ },
+ {
+ "order": 0,
+ "ligatures": "format_align_center",
+ "id": 264
+ },
+ {
+ "order": 0,
+ "ligatures": "format_align_justify",
+ "id": 265
+ },
+ {
+ "order": 0,
+ "ligatures": "format_align_left",
+ "id": 266
+ },
+ {
+ "order": 0,
+ "ligatures": "format_align_right",
+ "id": 267
+ },
+ {
+ "order": 0,
+ "ligatures": "format_bold",
+ "id": 268
+ },
+ {
+ "order": 0,
+ "ligatures": "format_clear",
+ "id": 269
+ },
+ {
+ "order": 0,
+ "ligatures": "format_color_fill",
+ "id": 270
+ },
+ {
+ "order": 0,
+ "ligatures": "format_color_reset",
+ "id": 271
+ },
+ {
+ "order": 0,
+ "ligatures": "format_color_text",
+ "id": 272
+ },
+ {
+ "order": 0,
+ "ligatures": "format_indent_decrease",
+ "id": 273
+ },
+ {
+ "order": 0,
+ "ligatures": "format_indent_increase",
+ "id": 274
+ },
+ {
+ "order": 0,
+ "ligatures": "format_italic",
+ "id": 275
+ },
+ {
+ "order": 0,
+ "ligatures": "format_line_spacing",
+ "id": 276
+ },
+ {
+ "order": 0,
+ "ligatures": "format_list_bulleted",
+ "id": 277
+ },
+ {
+ "order": 0,
+ "ligatures": "format_list_numbered",
+ "id": 278
+ },
+ {
+ "order": 0,
+ "ligatures": "format_paint",
+ "id": 279
+ },
+ {
+ "order": 0,
+ "ligatures": "format_quote",
+ "id": 280
+ },
+ {
+ "order": 0,
+ "ligatures": "format_size",
+ "id": 281
+ },
+ {
+ "order": 0,
+ "ligatures": "format_strikethrough",
+ "id": 282
+ },
+ {
+ "order": 0,
+ "ligatures": "format_textdirection_l_to_r",
+ "id": 283
+ },
+ {
+ "order": 0,
+ "ligatures": "format_textdirection_r_to_l",
+ "id": 284
+ },
+ {
+ "order": 0,
+ "ligatures": "format_underlined",
+ "id": 285
+ },
+ {
+ "order": 0,
+ "ligatures": "functions",
+ "id": 286
+ },
+ {
+ "order": 0,
+ "ligatures": "insert_chart, poll, assessment",
+ "id": 287
+ },
+ {
+ "order": 0,
+ "ligatures": "insert_comment",
+ "id": 288
+ },
+ {
+ "order": 0,
+ "ligatures": "insert_drive_file",
+ "id": 289
+ },
+ {
+ "order": 0,
+ "ligatures": "insert_emoticon, tag_faces, mood",
+ "id": 290
+ },
+ {
+ "order": 0,
+ "ligatures": "insert_invitation, event",
+ "id": 291
+ },
+ {
+ "order": 0,
+ "ligatures": "insert_photo, image, photo",
+ "id": 292
+ },
+ {
+ "order": 0,
+ "ligatures": "mode_comment",
+ "id": 293
+ },
+ {
+ "order": 0,
+ "ligatures": "publish",
+ "id": 294
+ },
+ {
+ "order": 0,
+ "ligatures": "space_bar",
+ "id": 295
+ },
+ {
+ "order": 0,
+ "ligatures": "strikethrough_s",
+ "id": 296
+ },
+ {
+ "order": 0,
+ "ligatures": "vertical_align_bottom",
+ "id": 297
+ },
+ {
+ "order": 0,
+ "ligatures": "vertical_align_center",
+ "id": 298
+ },
+ {
+ "order": 0,
+ "ligatures": "vertical_align_top",
+ "id": 299
+ },
+ {
+ "order": 0,
+ "ligatures": "wrap_text",
+ "id": 300
+ },
+ {
+ "order": 0,
+ "ligatures": "money_off",
+ "id": 301
+ },
+ {
+ "order": 0,
+ "ligatures": "drag_handle",
+ "id": 302
+ },
+ {
+ "order": 0,
+ "ligatures": "format_shapes",
+ "id": 303
+ },
+ {
+ "order": 0,
+ "ligatures": "highlight",
+ "id": 304
+ },
+ {
+ "order": 0,
+ "ligatures": "linear_scale",
+ "id": 305
+ },
+ {
+ "order": 0,
+ "ligatures": "short_text",
+ "id": 306
+ },
+ {
+ "order": 0,
+ "ligatures": "text_fields",
+ "id": 307
+ },
+ {
+ "order": 0,
+ "ligatures": "monetization_on",
+ "id": 308
+ },
+ {
+ "order": 0,
+ "ligatures": "title",
+ "id": 309
+ },
+ {
+ "order": 0,
+ "ligatures": "table_chart",
+ "id": 310
+ },
+ {
+ "order": 0,
+ "ligatures": "add_comment",
+ "id": 311
+ },
+ {
+ "order": 0,
+ "ligatures": "format_list_numbered_rtl",
+ "id": 312
+ },
+ {
+ "order": 0,
+ "ligatures": "scatter_plot",
+ "id": 313
+ },
+ {
+ "order": 0,
+ "ligatures": "score",
+ "id": 314
+ },
+ {
+ "order": 0,
+ "ligatures": "insert_chart_outlined",
+ "id": 315
+ },
+ {
+ "order": 0,
+ "ligatures": "bar_chart",
+ "id": 316
+ },
+ {
+ "order": 0,
+ "ligatures": "notes",
+ "id": 317
+ },
+ {
+ "order": 0,
+ "ligatures": "attachment",
+ "id": 318
+ },
+ {
+ "order": 0,
+ "ligatures": "cloud",
+ "id": 319
+ },
+ {
+ "order": 0,
+ "ligatures": "cloud_circle",
+ "id": 320
+ },
+ {
+ "order": 0,
+ "ligatures": "cloud_done",
+ "id": 321
+ },
+ {
+ "order": 0,
+ "ligatures": "cloud_download",
+ "id": 322
+ },
+ {
+ "order": 0,
+ "ligatures": "cloud_off",
+ "id": 323
+ },
+ {
+ "order": 0,
+ "ligatures": "cloud_queue",
+ "id": 324
+ },
+ {
+ "order": 0,
+ "ligatures": "cloud_upload, backup",
+ "id": 325
+ },
+ {
+ "order": 0,
+ "ligatures": "file_download, get_app",
+ "id": 326
+ },
+ {
+ "order": 0,
+ "ligatures": "file_upload",
+ "id": 327
+ },
+ {
+ "order": 0,
+ "ligatures": "folder",
+ "id": 328
+ },
+ {
+ "order": 0,
+ "ligatures": "folder_open",
+ "id": 329
+ },
+ {
+ "order": 0,
+ "ligatures": "folder_shared",
+ "id": 330
+ },
+ {
+ "order": 0,
+ "ligatures": "create_new_folder",
+ "id": 331
+ },
+ {
+ "order": 0,
+ "ligatures": "cast",
+ "id": 332
+ },
+ {
+ "order": 0,
+ "ligatures": "cast_connected",
+ "id": 333
+ },
+ {
+ "order": 0,
+ "ligatures": "computer, laptop",
+ "id": 334
+ },
+ {
+ "order": 0,
+ "ligatures": "desktop_mac",
+ "id": 335
+ },
+ {
+ "order": 0,
+ "ligatures": "desktop_windows",
+ "id": 336
+ },
+ {
+ "order": 0,
+ "ligatures": "developer_board",
+ "id": 337
+ },
+ {
+ "order": 0,
+ "ligatures": "dock",
+ "id": 338
+ },
+ {
+ "order": 0,
+ "ligatures": "headset",
+ "id": 339
+ },
+ {
+ "order": 0,
+ "ligatures": "headset_mic",
+ "id": 340
+ },
+ {
+ "order": 0,
+ "ligatures": "keyboard",
+ "id": 341
+ },
+ {
+ "order": 0,
+ "ligatures": "keyboard_arrow_down",
+ "id": 342
+ },
+ {
+ "order": 0,
+ "ligatures": "keyboard_arrow_left",
+ "id": 343
+ },
+ {
+ "order": 0,
+ "ligatures": "keyboard_arrow_right",
+ "id": 344
+ },
+ {
+ "order": 0,
+ "ligatures": "keyboard_arrow_up",
+ "id": 345
+ },
+ {
+ "order": 0,
+ "ligatures": "keyboard_backspace",
+ "id": 346
+ },
+ {
+ "order": 0,
+ "ligatures": "keyboard_capslock",
+ "id": 347
+ },
+ {
+ "order": 0,
+ "ligatures": "keyboard_hide",
+ "id": 348
+ },
+ {
+ "order": 0,
+ "ligatures": "keyboard_return",
+ "id": 349
+ },
+ {
+ "order": 0,
+ "ligatures": "keyboard_tab",
+ "id": 350
+ },
+ {
+ "order": 0,
+ "ligatures": "keyboard_voice",
+ "id": 351
+ },
+ {
+ "order": 0,
+ "ligatures": "laptop_chromebook",
+ "id": 352
+ },
+ {
+ "order": 0,
+ "ligatures": "laptop_mac",
+ "id": 353
+ },
+ {
+ "order": 0,
+ "ligatures": "laptop_windows",
+ "id": 354
+ },
+ {
+ "order": 0,
+ "ligatures": "memory",
+ "id": 355
+ },
+ {
+ "order": 0,
+ "ligatures": "mouse",
+ "id": 356
+ },
+ {
+ "order": 0,
+ "ligatures": "phone_android",
+ "id": 357
+ },
+ {
+ "order": 0,
+ "ligatures": "phone_iphone",
+ "id": 358
+ },
+ {
+ "order": 0,
+ "ligatures": "phonelink_off",
+ "id": 359
+ },
+ {
+ "order": 0,
+ "ligatures": "router",
+ "id": 360
+ },
+ {
+ "order": 0,
+ "ligatures": "scanner",
+ "id": 361
+ },
+ {
+ "order": 0,
+ "ligatures": "security",
+ "id": 362
+ },
+ {
+ "order": 0,
+ "ligatures": "sim_card",
+ "id": 363
+ },
+ {
+ "order": 0,
+ "ligatures": "speaker",
+ "id": 364
+ },
+ {
+ "order": 0,
+ "ligatures": "speaker_group",
+ "id": 365
+ },
+ {
+ "order": 0,
+ "ligatures": "tablet",
+ "id": 366
+ },
+ {
+ "order": 0,
+ "ligatures": "tablet_android",
+ "id": 367
+ },
+ {
+ "order": 0,
+ "ligatures": "tablet_mac",
+ "id": 368
+ },
+ {
+ "order": 0,
+ "ligatures": "toys",
+ "id": 369
+ },
+ {
+ "order": 0,
+ "ligatures": "tv",
+ "id": 370
+ },
+ {
+ "order": 0,
+ "ligatures": "watch",
+ "id": 371
+ },
+ {
+ "order": 0,
+ "ligatures": "device_hub",
+ "id": 372
+ },
+ {
+ "order": 0,
+ "ligatures": "power_input",
+ "id": 373
+ },
+ {
+ "order": 0,
+ "ligatures": "devices_other",
+ "id": 374
+ },
+ {
+ "order": 0,
+ "ligatures": "videogame_asset",
+ "id": 375
+ },
+ {
+ "order": 0,
+ "ligatures": "device_unknown",
+ "id": 376
+ },
+ {
+ "order": 0,
+ "ligatures": "headset_off",
+ "id": 377
+ },
+ {
+ "order": 0,
+ "ligatures": "adjust",
+ "id": 378
+ },
+ {
+ "order": 0,
+ "ligatures": "assistant",
+ "id": 379
+ },
+ {
+ "order": 0,
+ "ligatures": "audiotrack",
+ "id": 380
+ },
+ {
+ "order": 0,
+ "ligatures": "blur_circular",
+ "id": 381
+ },
+ {
+ "order": 0,
+ "ligatures": "blur_linear",
+ "id": 382
+ },
+ {
+ "order": 0,
+ "ligatures": "blur_off",
+ "id": 383
+ },
+ {
+ "order": 0,
+ "ligatures": "blur_on",
+ "id": 384
+ },
+ {
+ "order": 0,
+ "ligatures": "brightness_1",
+ "id": 385
+ },
+ {
+ "order": 0,
+ "ligatures": "brightness_2",
+ "id": 386
+ },
+ {
+ "order": 0,
+ "ligatures": "brightness_3",
+ "id": 387
+ },
+ {
+ "order": 0,
+ "ligatures": "brightness_4",
+ "id": 388
+ },
+ {
+ "order": 0,
+ "ligatures": "broken_image",
+ "id": 389
+ },
+ {
+ "order": 0,
+ "ligatures": "brush",
+ "id": 390
+ },
+ {
+ "order": 0,
+ "ligatures": "camera",
+ "id": 391
+ },
+ {
+ "order": 0,
+ "ligatures": "camera_alt, photo_camera, local_see",
+ "id": 392
+ },
+ {
+ "order": 0,
+ "ligatures": "camera_front",
+ "id": 393
+ },
+ {
+ "order": 0,
+ "ligatures": "camera_rear",
+ "id": 394
+ },
+ {
+ "order": 0,
+ "ligatures": "camera_roll",
+ "id": 395
+ },
+ {
+ "order": 0,
+ "ligatures": "center_focus_strong",
+ "id": 396
+ },
+ {
+ "order": 0,
+ "ligatures": "center_focus_weak",
+ "id": 397
+ },
+ {
+ "order": 0,
+ "ligatures": "collections, photo_library",
+ "id": 398
+ },
+ {
+ "order": 0,
+ "ligatures": "color_lens, palette",
+ "id": 399
+ },
+ {
+ "order": 0,
+ "ligatures": "colorize",
+ "id": 400
+ },
+ {
+ "order": 0,
+ "ligatures": "compare",
+ "id": 401
+ },
+ {
+ "order": 0,
+ "ligatures": "control_point_duplicate",
+ "id": 402
+ },
+ {
+ "order": 0,
+ "ligatures": "crop_16_9",
+ "id": 403
+ },
+ {
+ "order": 0,
+ "ligatures": "crop_3_2",
+ "id": 404
+ },
+ {
+ "order": 0,
+ "ligatures": "crop",
+ "id": 405
+ },
+ {
+ "order": 0,
+ "ligatures": "crop_5_4, crop_landscape",
+ "id": 406
+ },
+ {
+ "order": 0,
+ "ligatures": "crop_7_5",
+ "id": 407
+ },
+ {
+ "order": 0,
+ "ligatures": "crop_din",
+ "id": 408
+ },
+ {
+ "order": 0,
+ "ligatures": "crop_free",
+ "id": 409
+ },
+ {
+ "order": 0,
+ "ligatures": "crop_original",
+ "id": 410
+ },
+ {
+ "order": 0,
+ "ligatures": "crop_portrait",
+ "id": 411
+ },
+ {
+ "order": 0,
+ "ligatures": "crop_square",
+ "id": 412
+ },
+ {
+ "order": 0,
+ "ligatures": "dehaze",
+ "id": 413
+ },
+ {
+ "order": 0,
+ "ligatures": "details",
+ "id": 414
+ },
+ {
+ "order": 0,
+ "ligatures": "exposure",
+ "id": 415
+ },
+ {
+ "order": 0,
+ "ligatures": "exposure_minus_1",
+ "id": 416
+ },
+ {
+ "order": 0,
+ "ligatures": "exposure_minus_2",
+ "id": 417
+ },
+ {
+ "order": 0,
+ "ligatures": "exposure_plus_1",
+ "id": 418
+ },
+ {
+ "order": 0,
+ "ligatures": "exposure_plus_2",
+ "id": 419
+ },
+ {
+ "order": 0,
+ "ligatures": "exposure_zero",
+ "id": 420
+ },
+ {
+ "order": 0,
+ "ligatures": "filter_1",
+ "id": 421
+ },
+ {
+ "order": 0,
+ "ligatures": "filter_2",
+ "id": 422
+ },
+ {
+ "order": 0,
+ "ligatures": "filter_3",
+ "id": 423
+ },
+ {
+ "order": 0,
+ "ligatures": "filter",
+ "id": 424
+ },
+ {
+ "order": 0,
+ "ligatures": "filter_4",
+ "id": 425
+ },
+ {
+ "order": 0,
+ "ligatures": "filter_5",
+ "id": 426
+ },
+ {
+ "order": 0,
+ "ligatures": "filter_6",
+ "id": 427
+ },
+ {
+ "order": 0,
+ "ligatures": "filter_7",
+ "id": 428
+ },
+ {
+ "order": 0,
+ "ligatures": "filter_8",
+ "id": 429
+ },
+ {
+ "order": 0,
+ "ligatures": "filter_9",
+ "id": 430
+ },
+ {
+ "order": 0,
+ "ligatures": "filter_9_plus",
+ "id": 431
+ },
+ {
+ "order": 0,
+ "ligatures": "filter_b_and_w",
+ "id": 432
+ },
+ {
+ "order": 0,
+ "ligatures": "filter_center_focus",
+ "id": 433
+ },
+ {
+ "order": 0,
+ "ligatures": "filter_drama",
+ "id": 434
+ },
+ {
+ "order": 0,
+ "ligatures": "filter_frames",
+ "id": 435
+ },
+ {
+ "order": 0,
+ "ligatures": "filter_hdr, landscape, terrain",
+ "id": 436
+ },
+ {
+ "order": 0,
+ "ligatures": "filter_none",
+ "id": 437
+ },
+ {
+ "order": 0,
+ "ligatures": "filter_tilt_shift",
+ "id": 438
+ },
+ {
+ "order": 0,
+ "ligatures": "filter_vintage",
+ "id": 439
+ },
+ {
+ "order": 0,
+ "ligatures": "flare",
+ "id": 440
+ },
+ {
+ "order": 0,
+ "ligatures": "flash_auto",
+ "id": 441
+ },
+ {
+ "order": 0,
+ "ligatures": "flash_off",
+ "id": 442
+ },
+ {
+ "order": 0,
+ "ligatures": "flash_on",
+ "id": 443
+ },
+ {
+ "order": 0,
+ "ligatures": "flip",
+ "id": 444
+ },
+ {
+ "order": 0,
+ "ligatures": "gradient",
+ "id": 445
+ },
+ {
+ "order": 0,
+ "ligatures": "grain",
+ "id": 446
+ },
+ {
+ "order": 0,
+ "ligatures": "grid_off",
+ "id": 447
+ },
+ {
+ "order": 0,
+ "ligatures": "grid_on",
+ "id": 448
+ },
+ {
+ "order": 0,
+ "ligatures": "hdr_off",
+ "id": 449
+ },
+ {
+ "order": 0,
+ "ligatures": "hdr_on",
+ "id": 450
+ },
+ {
+ "order": 0,
+ "ligatures": "hdr_strong",
+ "id": 451
+ },
+ {
+ "order": 0,
+ "ligatures": "hdr_weak",
+ "id": 452
+ },
+ {
+ "order": 0,
+ "ligatures": "healing",
+ "id": 453
+ },
+ {
+ "order": 0,
+ "ligatures": "image_aspect_ratio",
+ "id": 454
+ },
+ {
+ "order": 0,
+ "ligatures": "iso",
+ "id": 455
+ },
+ {
+ "order": 0,
+ "ligatures": "leak_add",
+ "id": 456
+ },
+ {
+ "order": 0,
+ "ligatures": "leak_remove",
+ "id": 457
+ },
+ {
+ "order": 0,
+ "ligatures": "lens",
+ "id": 458
+ },
+ {
+ "order": 0,
+ "ligatures": "looks_3",
+ "id": 459
+ },
+ {
+ "order": 0,
+ "ligatures": "looks",
+ "id": 460
+ },
+ {
+ "order": 0,
+ "ligatures": "looks_4",
+ "id": 461
+ },
+ {
+ "order": 0,
+ "ligatures": "looks_5",
+ "id": 462
+ },
+ {
+ "order": 0,
+ "ligatures": "looks_6",
+ "id": 463
+ },
+ {
+ "order": 0,
+ "ligatures": "looks_one",
+ "id": 464
+ },
+ {
+ "order": 0,
+ "ligatures": "looks_two",
+ "id": 465
+ },
+ {
+ "order": 0,
+ "ligatures": "loupe",
+ "id": 466
+ },
+ {
+ "order": 0,
+ "ligatures": "monochrome_photos",
+ "id": 467
+ },
+ {
+ "order": 0,
+ "ligatures": "music_note",
+ "id": 468
+ },
+ {
+ "order": 0,
+ "ligatures": "nature",
+ "id": 469
+ },
+ {
+ "order": 0,
+ "ligatures": "nature_people",
+ "id": 470
+ },
+ {
+ "order": 0,
+ "ligatures": "navigate_before, chevron_left",
+ "id": 471
+ },
+ {
+ "order": 0,
+ "ligatures": "navigate_next, chevron_right",
+ "id": 472
+ },
+ {
+ "order": 0,
+ "ligatures": "panorama",
+ "id": 473
+ },
+ {
+ "order": 0,
+ "ligatures": "panorama_fish_eye, radio_button_unchecked",
+ "id": 474
+ },
+ {
+ "order": 0,
+ "ligatures": "panorama_horizontal",
+ "id": 475
+ },
+ {
+ "order": 0,
+ "ligatures": "panorama_vertical",
+ "id": 476
+ },
+ {
+ "order": 0,
+ "ligatures": "panorama_wide_angle",
+ "id": 477
+ },
+ {
+ "order": 0,
+ "ligatures": "photo_album",
+ "id": 478
+ },
+ {
+ "order": 0,
+ "ligatures": "picture_as_pdf",
+ "id": 479
+ },
+ {
+ "order": 0,
+ "ligatures": "portrait",
+ "id": 480
+ },
+ {
+ "order": 0,
+ "ligatures": "remove_red_eye, visibility",
+ "id": 481
+ },
+ {
+ "order": 0,
+ "ligatures": "rotate_90_degrees_ccw",
+ "id": 482
+ },
+ {
+ "order": 0,
+ "ligatures": "rotate_left",
+ "id": 483
+ },
+ {
+ "order": 0,
+ "ligatures": "rotate_right",
+ "id": 484
+ },
+ {
+ "order": 0,
+ "ligatures": "slideshow",
+ "id": 485
+ },
+ {
+ "order": 0,
+ "ligatures": "straighten",
+ "id": 486
+ },
+ {
+ "order": 0,
+ "ligatures": "style",
+ "id": 487
+ },
+ {
+ "order": 0,
+ "ligatures": "switch_camera",
+ "id": 488
+ },
+ {
+ "order": 0,
+ "ligatures": "switch_video",
+ "id": 489
+ },
+ {
+ "order": 0,
+ "ligatures": "texture",
+ "id": 490
+ },
+ {
+ "order": 0,
+ "ligatures": "timelapse",
+ "id": 491
+ },
+ {
+ "order": 0,
+ "ligatures": "timer_10",
+ "id": 492
+ },
+ {
+ "order": 0,
+ "ligatures": "timer_3",
+ "id": 493
+ },
+ {
+ "order": 0,
+ "ligatures": "timer",
+ "id": 494
+ },
+ {
+ "order": 0,
+ "ligatures": "timer_off",
+ "id": 495
+ },
+ {
+ "order": 0,
+ "ligatures": "tonality",
+ "id": 496
+ },
+ {
+ "order": 0,
+ "ligatures": "transform",
+ "id": 497
+ },
+ {
+ "order": 0,
+ "ligatures": "tune",
+ "id": 498
+ },
+ {
+ "order": 0,
+ "ligatures": "view_comfortable",
+ "id": 499
+ },
+ {
+ "order": 0,
+ "ligatures": "view_compact",
+ "id": 500
+ },
+ {
+ "order": 0,
+ "ligatures": "wb_auto",
+ "id": 501
+ },
+ {
+ "order": 0,
+ "ligatures": "wb_cloudy",
+ "id": 502
+ },
+ {
+ "order": 0,
+ "ligatures": "wb_incandescent",
+ "id": 503
+ },
+ {
+ "order": 0,
+ "ligatures": "wb_sunny",
+ "id": 504
+ },
+ {
+ "order": 0,
+ "ligatures": "collections_bookmark",
+ "id": 505
+ },
+ {
+ "order": 0,
+ "ligatures": "photo_size_select_actual",
+ "id": 506
+ },
+ {
+ "order": 0,
+ "ligatures": "photo_size_select_large",
+ "id": 507
+ },
+ {
+ "order": 0,
+ "ligatures": "photo_size_select_small",
+ "id": 508
+ },
+ {
+ "order": 0,
+ "ligatures": "vignette",
+ "id": 509
+ },
+ {
+ "order": 0,
+ "ligatures": "wb_iridescent",
+ "id": 510
+ },
+ {
+ "order": 0,
+ "ligatures": "crop_rotate",
+ "id": 511
+ },
+ {
+ "order": 0,
+ "ligatures": "linked_camera",
+ "id": 512
+ },
+ {
+ "order": 0,
+ "ligatures": "add_a_photo",
+ "id": 513
+ },
+ {
+ "order": 0,
+ "ligatures": "movie_filter",
+ "id": 514
+ },
+ {
+ "order": 0,
+ "ligatures": "photo_filter",
+ "id": 515
+ },
+ {
+ "order": 0,
+ "ligatures": "burst_mode",
+ "id": 516
+ },
+ {
+ "order": 0,
+ "ligatures": "shutter_speed",
+ "id": 517
+ },
+ {
+ "order": 0,
+ "ligatures": "add_photo_alternate",
+ "id": 518
+ },
+ {
+ "order": 0,
+ "ligatures": "image_search",
+ "id": 519
+ },
+ {
+ "order": 0,
+ "ligatures": "music_off",
+ "id": 520
+ },
+ {
+ "order": 0,
+ "ligatures": "beenhere",
+ "id": 521
+ },
+ {
+ "order": 0,
+ "ligatures": "directions",
+ "id": 522
+ },
+ {
+ "order": 0,
+ "ligatures": "directions_bike",
+ "id": 523
+ },
+ {
+ "order": 0,
+ "ligatures": "directions_bus",
+ "id": 524
+ },
+ {
+ "order": 0,
+ "ligatures": "directions_car",
+ "id": 525
+ },
+ {
+ "order": 0,
+ "ligatures": "directions_ferry",
+ "id": 526
+ },
+ {
+ "order": 0,
+ "ligatures": "directions_subway, directions_transit",
+ "id": 527
+ },
+ {
+ "order": 0,
+ "ligatures": "directions_railway",
+ "id": 528
+ },
+ {
+ "order": 0,
+ "ligatures": "directions_walk",
+ "id": 529
+ },
+ {
+ "order": 0,
+ "ligatures": "hotel, local_hotel",
+ "id": 530
+ },
+ {
+ "order": 0,
+ "ligatures": "layers",
+ "id": 531
+ },
+ {
+ "order": 0,
+ "ligatures": "layers_clear",
+ "id": 532
+ },
+ {
+ "order": 0,
+ "ligatures": "local_atm",
+ "id": 533
+ },
+ {
+ "order": 0,
+ "ligatures": "local_attraction, local_play",
+ "id": 534
+ },
+ {
+ "order": 0,
+ "ligatures": "local_bar",
+ "id": 535
+ },
+ {
+ "order": 0,
+ "ligatures": "local_cafe, free_breakfast",
+ "id": 536
+ },
+ {
+ "order": 0,
+ "ligatures": "local_car_wash",
+ "id": 537
+ },
+ {
+ "order": 0,
+ "ligatures": "local_convenience_store",
+ "id": 538
+ },
+ {
+ "order": 0,
+ "ligatures": "local_drink",
+ "id": 539
+ },
+ {
+ "order": 0,
+ "ligatures": "local_florist",
+ "id": 540
+ },
+ {
+ "order": 0,
+ "ligatures": "local_gas_station",
+ "id": 541
+ },
+ {
+ "order": 0,
+ "ligatures": "local_grocery_store, shopping_cart",
+ "id": 542
+ },
+ {
+ "order": 0,
+ "ligatures": "local_hospital",
+ "id": 543
+ },
+ {
+ "order": 0,
+ "ligatures": "local_laundry_service",
+ "id": 544
+ },
+ {
+ "order": 0,
+ "ligatures": "local_library",
+ "id": 545
+ },
+ {
+ "order": 0,
+ "ligatures": "local_mall",
+ "id": 546
+ },
+ {
+ "order": 0,
+ "ligatures": "local_movies, theaters",
+ "id": 547
+ },
+ {
+ "order": 0,
+ "ligatures": "local_offer",
+ "id": 548
+ },
+ {
+ "order": 0,
+ "ligatures": "local_parking",
+ "id": 549
+ },
+ {
+ "order": 0,
+ "ligatures": "local_pharmacy",
+ "id": 550
+ },
+ {
+ "order": 0,
+ "ligatures": "local_pizza",
+ "id": 551
+ },
+ {
+ "order": 0,
+ "ligatures": "local_print_shop, print",
+ "id": 552
+ },
+ {
+ "order": 0,
+ "ligatures": "local_restaurant, restaurant_menu",
+ "id": 553
+ },
+ {
+ "order": 0,
+ "ligatures": "local_shipping",
+ "id": 554
+ },
+ {
+ "order": 0,
+ "ligatures": "local_taxi",
+ "id": 555
+ },
+ {
+ "order": 0,
+ "ligatures": "location_history",
+ "id": 556
+ },
+ {
+ "order": 0,
+ "ligatures": "map",
+ "id": 557
+ },
+ {
+ "order": 0,
+ "ligatures": "navigation",
+ "id": 558
+ },
+ {
+ "order": 0,
+ "ligatures": "pin_drop",
+ "id": 559
+ },
+ {
+ "order": 0,
+ "ligatures": "rate_review",
+ "id": 560
+ },
+ {
+ "order": 0,
+ "ligatures": "satellite",
+ "id": 561
+ },
+ {
+ "order": 0,
+ "ligatures": "store_mall_directory, store",
+ "id": 562
+ },
+ {
+ "order": 0,
+ "ligatures": "traffic",
+ "id": 563
+ },
+ {
+ "order": 0,
+ "ligatures": "directions_run",
+ "id": 564
+ },
+ {
+ "order": 0,
+ "ligatures": "add_location",
+ "id": 565
+ },
+ {
+ "order": 0,
+ "ligatures": "edit_location",
+ "id": 566
+ },
+ {
+ "order": 0,
+ "ligatures": "near_me",
+ "id": 567
+ },
+ {
+ "order": 0,
+ "ligatures": "person_pin_circle",
+ "id": 568
+ },
+ {
+ "order": 0,
+ "ligatures": "zoom_out_map",
+ "id": 569
+ },
+ {
+ "order": 0,
+ "ligatures": "restaurant",
+ "id": 570
+ },
+ {
+ "order": 0,
+ "ligatures": "ev_station",
+ "id": 571
+ },
+ {
+ "order": 0,
+ "ligatures": "streetview",
+ "id": 572
+ },
+ {
+ "order": 0,
+ "ligatures": "subway",
+ "id": 573
+ },
+ {
+ "order": 0,
+ "ligatures": "train",
+ "id": 574
+ },
+ {
+ "order": 0,
+ "ligatures": "tram",
+ "id": 575
+ },
+ {
+ "order": 0,
+ "ligatures": "transfer_within_a_station",
+ "id": 576
+ },
+ {
+ "order": 0,
+ "ligatures": "atm",
+ "id": 577
+ },
+ {
+ "order": 0,
+ "ligatures": "category",
+ "id": 578
+ },
+ {
+ "order": 0,
+ "ligatures": "not_listed_location",
+ "id": 579
+ },
+ {
+ "order": 0,
+ "ligatures": "departure_board",
+ "id": 580
+ },
+ {
+ "order": 0,
+ "ligatures": "360",
+ "id": 581
+ },
+ {
+ "order": 0,
+ "ligatures": "edit_attributes",
+ "id": 582
+ },
+ {
+ "order": 0,
+ "ligatures": "transit_enterexit",
+ "id": 583
+ },
+ {
+ "order": 0,
+ "ligatures": "fastfood",
+ "id": 584
+ },
+ {
+ "order": 0,
+ "ligatures": "trip_origin",
+ "id": 585
+ },
+ {
+ "order": 0,
+ "ligatures": "compass_calibration",
+ "id": 586
+ },
+ {
+ "order": 0,
+ "ligatures": "money",
+ "id": 587
+ },
+ {
+ "order": 0,
+ "ligatures": "apps",
+ "id": 588
+ },
+ {
+ "order": 0,
+ "ligatures": "arrow_back",
+ "id": 589
+ },
+ {
+ "order": 0,
+ "ligatures": "arrow_drop_down",
+ "id": 590
+ },
+ {
+ "order": 0,
+ "ligatures": "arrow_drop_down_circle",
+ "id": 591
+ },
+ {
+ "order": 0,
+ "ligatures": "arrow_drop_up",
+ "id": 592
+ },
+ {
+ "order": 0,
+ "ligatures": "arrow_forward",
+ "id": 593
+ },
+ {
+ "order": 0,
+ "ligatures": "cancel",
+ "id": 594
+ },
+ {
+ "order": 0,
+ "ligatures": "check",
+ "id": 595
+ },
+ {
+ "order": 0,
+ "ligatures": "expand_less",
+ "id": 596
+ },
+ {
+ "order": 0,
+ "ligatures": "expand_more",
+ "id": 597
+ },
+ {
+ "order": 0,
+ "ligatures": "fullscreen",
+ "id": 598
+ },
+ {
+ "order": 0,
+ "ligatures": "fullscreen_exit",
+ "id": 599
+ },
+ {
+ "order": 0,
+ "ligatures": "menu",
+ "id": 600
+ },
+ {
+ "order": 0,
+ "ligatures": "keyboard_control",
+ "id": 601
+ },
+ {
+ "order": 0,
+ "ligatures": "more_vert",
+ "id": 602
+ },
+ {
+ "order": 0,
+ "ligatures": "refresh",
+ "id": 603
+ },
+ {
+ "order": 0,
+ "ligatures": "unfold_less",
+ "id": 604
+ },
+ {
+ "order": 0,
+ "ligatures": "unfold_more",
+ "id": 605
+ },
+ {
+ "order": 0,
+ "ligatures": "arrow_upward",
+ "id": 606
+ },
+ {
+ "order": 0,
+ "ligatures": "subdirectory_arrow_left",
+ "id": 607
+ },
+ {
+ "order": 0,
+ "ligatures": "subdirectory_arrow_right",
+ "id": 608
+ },
+ {
+ "order": 0,
+ "ligatures": "arrow_downward",
+ "id": 609
+ },
+ {
+ "order": 0,
+ "ligatures": "first_page",
+ "id": 610
+ },
+ {
+ "order": 0,
+ "ligatures": "last_page",
+ "id": 611
+ },
+ {
+ "order": 0,
+ "ligatures": "arrow_left",
+ "id": 612
+ },
+ {
+ "order": 0,
+ "ligatures": "arrow_right",
+ "id": 613
+ },
+ {
+ "order": 0,
+ "ligatures": "arrow_back_ios",
+ "id": 614
+ },
+ {
+ "order": 0,
+ "ligatures": "arrow_forward_ios",
+ "id": 615
+ },
+ {
+ "order": 0,
+ "ligatures": "adb",
+ "id": 616
+ },
+ {
+ "order": 0,
+ "ligatures": "disc_full",
+ "id": 617
+ },
+ {
+ "order": 0,
+ "ligatures": "do_not_disturb_alt",
+ "id": 618
+ },
+ {
+ "order": 0,
+ "ligatures": "drive_eta, time_to_leave",
+ "id": 619
+ },
+ {
+ "order": 0,
+ "ligatures": "event_available",
+ "id": 620
+ },
+ {
+ "order": 0,
+ "ligatures": "event_busy",
+ "id": 621
+ },
+ {
+ "order": 0,
+ "ligatures": "event_note",
+ "id": 622
+ },
+ {
+ "order": 0,
+ "ligatures": "folder_special",
+ "id": 623
+ },
+ {
+ "order": 0,
+ "ligatures": "mms",
+ "id": 624
+ },
+ {
+ "order": 0,
+ "ligatures": "more",
+ "id": 625
+ },
+ {
+ "order": 0,
+ "ligatures": "network_locked",
+ "id": 626
+ },
+ {
+ "order": 0,
+ "ligatures": "phone_bluetooth_speaker",
+ "id": 627
+ },
+ {
+ "order": 0,
+ "ligatures": "phone_forwarded",
+ "id": 628
+ },
+ {
+ "order": 0,
+ "ligatures": "phone_in_talk",
+ "id": 629
+ },
+ {
+ "order": 0,
+ "ligatures": "phone_locked",
+ "id": 630
+ },
+ {
+ "order": 0,
+ "ligatures": "phone_missed",
+ "id": 631
+ },
+ {
+ "order": 0,
+ "ligatures": "phone_paused",
+ "id": 632
+ },
+ {
+ "order": 0,
+ "ligatures": "sim_card_alert",
+ "id": 633
+ },
+ {
+ "order": 0,
+ "ligatures": "sms_failed, feedback",
+ "id": 634
+ },
+ {
+ "order": 0,
+ "ligatures": "sync_disabled",
+ "id": 635
+ },
+ {
+ "order": 0,
+ "ligatures": "sync_problem",
+ "id": 636
+ },
+ {
+ "order": 0,
+ "ligatures": "system_update",
+ "id": 637
+ },
+ {
+ "order": 0,
+ "ligatures": "tap_and_play",
+ "id": 638
+ },
+ {
+ "order": 0,
+ "ligatures": "vibration",
+ "id": 639
+ },
+ {
+ "order": 0,
+ "ligatures": "voice_chat",
+ "id": 640
+ },
+ {
+ "order": 0,
+ "ligatures": "vpn_lock",
+ "id": 641
+ },
+ {
+ "order": 0,
+ "ligatures": "airline_seat_flat",
+ "id": 642
+ },
+ {
+ "order": 0,
+ "ligatures": "airline_seat_flat_angled",
+ "id": 643
+ },
+ {
+ "order": 0,
+ "ligatures": "airline_seat_individual_suite",
+ "id": 644
+ },
+ {
+ "order": 0,
+ "ligatures": "airline_seat_legroom_extra",
+ "id": 645
+ },
+ {
+ "order": 0,
+ "ligatures": "airline_seat_legroom_normal",
+ "id": 646
+ },
+ {
+ "order": 0,
+ "ligatures": "airline_seat_legroom_reduced",
+ "id": 647
+ },
+ {
+ "order": 0,
+ "ligatures": "airline_seat_recline_extra",
+ "id": 648
+ },
+ {
+ "order": 0,
+ "ligatures": "airline_seat_recline_normal",
+ "id": 649
+ },
+ {
+ "order": 0,
+ "ligatures": "confirmation_number",
+ "id": 650
+ },
+ {
+ "order": 0,
+ "ligatures": "live_tv",
+ "id": 651
+ },
+ {
+ "order": 0,
+ "ligatures": "ondemand_video",
+ "id": 652
+ },
+ {
+ "order": 0,
+ "ligatures": "personal_video",
+ "id": 653
+ },
+ {
+ "order": 0,
+ "ligatures": "power",
+ "id": 654
+ },
+ {
+ "order": 0,
+ "ligatures": "wc",
+ "id": 655
+ },
+ {
+ "order": 0,
+ "ligatures": "wifi",
+ "id": 656
+ },
+ {
+ "order": 0,
+ "ligatures": "enhanced_encryption",
+ "id": 657
+ },
+ {
+ "order": 0,
+ "ligatures": "network_check",
+ "id": 658
+ },
+ {
+ "order": 0,
+ "ligatures": "no_encryption",
+ "id": 659
+ },
+ {
+ "order": 0,
+ "ligatures": "rv_hookup",
+ "id": 660
+ },
+ {
+ "order": 0,
+ "ligatures": "do_not_disturb_off",
+ "id": 661
+ },
+ {
+ "order": 0,
+ "ligatures": "priority_high",
+ "id": 662
+ },
+ {
+ "order": 0,
+ "ligatures": "power_off",
+ "id": 663
+ },
+ {
+ "order": 0,
+ "ligatures": "tv_off",
+ "id": 664
+ },
+ {
+ "order": 0,
+ "ligatures": "wifi_off",
+ "id": 665
+ },
+ {
+ "order": 0,
+ "ligatures": "phone_callback",
+ "id": 666
+ },
+ {
+ "order": 0,
+ "ligatures": "pie_chart",
+ "id": 667
+ },
+ {
+ "order": 0,
+ "ligatures": "pie_chart_outlined",
+ "id": 668
+ },
+ {
+ "order": 0,
+ "ligatures": "bubble_chart",
+ "id": 669
+ },
+ {
+ "order": 0,
+ "ligatures": "multiline_chart",
+ "id": 670
+ },
+ {
+ "order": 0,
+ "ligatures": "show_chart",
+ "id": 671
+ },
+ {
+ "order": 0,
+ "ligatures": "cake",
+ "id": 672
+ },
+ {
+ "order": 0,
+ "ligatures": "group, people",
+ "id": 673
+ },
+ {
+ "order": 0,
+ "ligatures": "group_add",
+ "id": 674
+ },
+ {
+ "order": 0,
+ "ligatures": "location_city",
+ "id": 675
+ },
+ {
+ "order": 0,
+ "ligatures": "mood_bad",
+ "id": 676
+ },
+ {
+ "order": 0,
+ "ligatures": "notifications",
+ "id": 677
+ },
+ {
+ "order": 0,
+ "ligatures": "notifications_none",
+ "id": 678
+ },
+ {
+ "order": 0,
+ "ligatures": "notifications_off",
+ "id": 679
+ },
+ {
+ "order": 0,
+ "ligatures": "notifications_active",
+ "id": 680
+ },
+ {
+ "order": 0,
+ "ligatures": "notifications_paused",
+ "id": 681
+ },
+ {
+ "order": 0,
+ "ligatures": "pages",
+ "id": 682
+ },
+ {
+ "order": 0,
+ "ligatures": "party_mode",
+ "id": 683
+ },
+ {
+ "order": 0,
+ "ligatures": "people_outline",
+ "id": 684
+ },
+ {
+ "order": 0,
+ "ligatures": "person",
+ "id": 685
+ },
+ {
+ "order": 0,
+ "ligatures": "person_add",
+ "id": 686
+ },
+ {
+ "order": 0,
+ "ligatures": "person_outline, perm_identity",
+ "id": 687
+ },
+ {
+ "order": 0,
+ "ligatures": "plus_one",
+ "id": 688
+ },
+ {
+ "order": 0,
+ "ligatures": "public",
+ "id": 689
+ },
+ {
+ "order": 0,
+ "ligatures": "school",
+ "id": 690
+ },
+ {
+ "order": 0,
+ "ligatures": "share",
+ "id": 691
+ },
+ {
+ "order": 0,
+ "ligatures": "whatshot",
+ "id": 692
+ },
+ {
+ "order": 0,
+ "ligatures": "sentiment_dissatisfied",
+ "id": 693
+ },
+ {
+ "order": 0,
+ "ligatures": "sentiment_neutral",
+ "id": 694
+ },
+ {
+ "order": 0,
+ "ligatures": "sentiment_satisfied",
+ "id": 695
+ },
+ {
+ "order": 0,
+ "ligatures": "sentiment_very_dissatisfied",
+ "id": 696
+ },
+ {
+ "order": 0,
+ "ligatures": "sentiment_very_satisfied",
+ "id": 697
+ },
+ {
+ "order": 0,
+ "ligatures": "thumb_down_alt",
+ "id": 698
+ },
+ {
+ "order": 0,
+ "ligatures": "thumb_up_alt",
+ "id": 699
+ },
+ {
+ "order": 0,
+ "ligatures": "check_box",
+ "id": 700
+ },
+ {
+ "order": 0,
+ "ligatures": "check_box_outline_blank",
+ "id": 701
+ },
+ {
+ "order": 0,
+ "ligatures": "radio_button_checked",
+ "id": 702
+ },
+ {
+ "order": 0,
+ "ligatures": "star, grade",
+ "id": 703
+ },
+ {
+ "order": 0,
+ "ligatures": "star_half",
+ "id": 704
+ },
+ {
+ "order": 0,
+ "ligatures": "star_outline",
+ "id": 705
+ },
+ {
+ "order": 0,
+ "ligatures": "3d_rotation",
+ "id": 706
+ },
+ {
+ "order": 0,
+ "ligatures": "accessibility",
+ "id": 707
+ },
+ {
+ "order": 0,
+ "ligatures": "account_balance",
+ "id": 708
+ },
+ {
+ "order": 0,
+ "ligatures": "account_balance_wallet",
+ "id": 709
+ },
+ {
+ "order": 0,
+ "ligatures": "account_box",
+ "id": 710
+ },
+ {
+ "order": 0,
+ "ligatures": "account_circle",
+ "id": 711
+ },
+ {
+ "order": 0,
+ "ligatures": "add_shopping_cart",
+ "id": 712
+ },
+ {
+ "order": 0,
+ "ligatures": "alarm_off",
+ "id": 713
+ },
+ {
+ "order": 0,
+ "ligatures": "alarm_on",
+ "id": 714
+ },
+ {
+ "order": 0,
+ "ligatures": "android",
+ "id": 715
+ },
+ {
+ "order": 0,
+ "ligatures": "announcement",
+ "id": 716
+ },
+ {
+ "order": 0,
+ "ligatures": "aspect_ratio",
+ "id": 717
+ },
+ {
+ "order": 0,
+ "ligatures": "assignment",
+ "id": 718
+ },
+ {
+ "order": 0,
+ "ligatures": "assignment_ind",
+ "id": 719
+ },
+ {
+ "order": 0,
+ "ligatures": "assignment_late",
+ "id": 720
+ },
+ {
+ "order": 0,
+ "ligatures": "assignment_return",
+ "id": 721
+ },
+ {
+ "order": 0,
+ "ligatures": "assignment_returned",
+ "id": 722
+ },
+ {
+ "order": 0,
+ "ligatures": "assignment_turned_in",
+ "id": 723
+ },
+ {
+ "order": 0,
+ "ligatures": "autorenew",
+ "id": 724
+ },
+ {
+ "order": 0,
+ "ligatures": "book, class",
+ "id": 725
+ },
+ {
+ "order": 0,
+ "ligatures": "bookmark, turned_in",
+ "id": 726
+ },
+ {
+ "order": 0,
+ "ligatures": "bookmark_outline, turned_in_not",
+ "id": 727
+ },
+ {
+ "order": 0,
+ "ligatures": "bug_report",
+ "id": 728
+ },
+ {
+ "order": 0,
+ "ligatures": "build",
+ "id": 729
+ },
+ {
+ "order": 0,
+ "ligatures": "cached",
+ "id": 730
+ },
+ {
+ "order": 0,
+ "ligatures": "change_history",
+ "id": 731
+ },
+ {
+ "order": 0,
+ "ligatures": "check_circle",
+ "id": 732
+ },
+ {
+ "order": 0,
+ "ligatures": "chrome_reader_mode",
+ "id": 733
+ },
+ {
+ "order": 0,
+ "ligatures": "code",
+ "id": 734
+ },
+ {
+ "order": 0,
+ "ligatures": "credit_card, payment",
+ "id": 735
+ },
+ {
+ "order": 0,
+ "ligatures": "dashboard",
+ "id": 736
+ },
+ {
+ "order": 0,
+ "ligatures": "delete",
+ "id": 737
+ },
+ {
+ "order": 0,
+ "ligatures": "description",
+ "id": 738
+ },
+ {
+ "order": 0,
+ "ligatures": "dns",
+ "id": 739
+ },
+ {
+ "order": 0,
+ "ligatures": "done",
+ "id": 740
+ },
+ {
+ "order": 0,
+ "ligatures": "done_all",
+ "id": 741
+ },
+ {
+ "order": 0,
+ "ligatures": "exit_to_app",
+ "id": 742
+ },
+ {
+ "order": 0,
+ "ligatures": "explore",
+ "id": 743
+ },
+ {
+ "order": 0,
+ "ligatures": "extension",
+ "id": 744
+ },
+ {
+ "order": 0,
+ "ligatures": "face",
+ "id": 745
+ },
+ {
+ "order": 0,
+ "ligatures": "favorite",
+ "id": 746
+ },
+ {
+ "order": 0,
+ "ligatures": "favorite_outline",
+ "id": 747
+ },
+ {
+ "order": 0,
+ "ligatures": "find_in_page",
+ "id": 748
+ },
+ {
+ "order": 0,
+ "ligatures": "find_replace",
+ "id": 749
+ },
+ {
+ "order": 0,
+ "ligatures": "flip_to_back",
+ "id": 750
+ },
+ {
+ "order": 0,
+ "ligatures": "flip_to_front",
+ "id": 751
+ },
+ {
+ "order": 0,
+ "ligatures": "group_work",
+ "id": 752
+ },
+ {
+ "order": 0,
+ "ligatures": "help",
+ "id": 753
+ },
+ {
+ "order": 0,
+ "ligatures": "highlight_remove",
+ "id": 754
+ },
+ {
+ "order": 0,
+ "ligatures": "history, restore",
+ "id": 755
+ },
+ {
+ "order": 0,
+ "ligatures": "home",
+ "id": 756
+ },
+ {
+ "order": 0,
+ "ligatures": "hourglass_empty",
+ "id": 757
+ },
+ {
+ "order": 0,
+ "ligatures": "hourglass_full",
+ "id": 758
+ },
+ {
+ "order": 0,
+ "ligatures": "https, lock",
+ "id": 759
+ },
+ {
+ "order": 0,
+ "ligatures": "info",
+ "id": 760
+ },
+ {
+ "order": 0,
+ "ligatures": "info_outline",
+ "id": 761
+ },
+ {
+ "order": 0,
+ "ligatures": "input",
+ "id": 762
+ },
+ {
+ "order": 0,
+ "ligatures": "invert_colors_on",
+ "id": 763
+ },
+ {
+ "order": 0,
+ "ligatures": "label",
+ "id": 764
+ },
+ {
+ "order": 0,
+ "ligatures": "label_outline",
+ "id": 765
+ },
+ {
+ "order": 0,
+ "ligatures": "language",
+ "id": 766
+ },
+ {
+ "order": 0,
+ "ligatures": "launch, open_in_new",
+ "id": 767
+ },
+ {
+ "order": 0,
+ "ligatures": "list",
+ "id": 768
+ },
+ {
+ "order": 0,
+ "ligatures": "lock_open",
+ "id": 769
+ },
+ {
+ "order": 0,
+ "ligatures": "lock_outline",
+ "id": 770
+ },
+ {
+ "order": 0,
+ "ligatures": "loyalty",
+ "id": 771
+ },
+ {
+ "order": 0,
+ "ligatures": "markunread_mailbox",
+ "id": 772
+ },
+ {
+ "order": 0,
+ "ligatures": "note_add",
+ "id": 773
+ },
+ {
+ "order": 0,
+ "ligatures": "open_in_browser",
+ "id": 774
+ },
+ {
+ "order": 0,
+ "ligatures": "open_with",
+ "id": 775
+ },
+ {
+ "order": 0,
+ "ligatures": "pageview",
+ "id": 776
+ },
+ {
+ "order": 0,
+ "ligatures": "perm_camera_mic",
+ "id": 777
+ },
+ {
+ "order": 0,
+ "ligatures": "perm_contact_calendar",
+ "id": 778
+ },
+ {
+ "order": 0,
+ "ligatures": "perm_data_setting",
+ "id": 779
+ },
+ {
+ "order": 0,
+ "ligatures": "perm_device_information",
+ "id": 780
+ },
+ {
+ "order": 0,
+ "ligatures": "perm_media",
+ "id": 781
+ },
+ {
+ "order": 0,
+ "ligatures": "perm_phone_msg",
+ "id": 782
+ },
+ {
+ "order": 0,
+ "ligatures": "perm_scan_wifi",
+ "id": 783
+ },
+ {
+ "order": 0,
+ "ligatures": "picture_in_picture",
+ "id": 784
+ },
+ {
+ "order": 0,
+ "ligatures": "polymer",
+ "id": 785
+ },
+ {
+ "order": 0,
+ "ligatures": "power_settings_new",
+ "id": 786
+ },
+ {
+ "order": 0,
+ "ligatures": "receipt",
+ "id": 787
+ },
+ {
+ "order": 0,
+ "ligatures": "redeem, card_giftcard",
+ "id": 788
+ },
+ {
+ "order": 0,
+ "ligatures": "search",
+ "id": 789
+ },
+ {
+ "order": 0,
+ "ligatures": "settings",
+ "id": 790
+ },
+ {
+ "order": 0,
+ "ligatures": "settings_applications",
+ "id": 791
+ },
+ {
+ "order": 0,
+ "ligatures": "settings_backup_restore",
+ "id": 792
+ },
+ {
+ "order": 0,
+ "ligatures": "settings_bluetooth",
+ "id": 793
+ },
+ {
+ "order": 0,
+ "ligatures": "settings_cell",
+ "id": 794
+ },
+ {
+ "order": 0,
+ "ligatures": "settings_brightness",
+ "id": 795
+ },
+ {
+ "order": 0,
+ "ligatures": "settings_ethernet",
+ "id": 796
+ },
+ {
+ "order": 0,
+ "ligatures": "settings_input_antenna",
+ "id": 797
+ },
+ {
+ "order": 0,
+ "ligatures": "settings_input_component, settings_input_composite",
+ "id": 798
+ },
+ {
+ "order": 0,
+ "ligatures": "settings_input_hdmi",
+ "id": 799
+ },
+ {
+ "order": 0,
+ "ligatures": "settings_input_svideo",
+ "id": 800
+ },
+ {
+ "order": 0,
+ "ligatures": "settings_overscan",
+ "id": 801
+ },
+ {
+ "order": 0,
+ "ligatures": "settings_phone",
+ "id": 802
+ },
+ {
+ "order": 0,
+ "ligatures": "settings_power",
+ "id": 803
+ },
+ {
+ "order": 0,
+ "ligatures": "settings_remote",
+ "id": 804
+ },
+ {
+ "order": 0,
+ "ligatures": "settings_voice",
+ "id": 805
+ },
+ {
+ "order": 0,
+ "ligatures": "shop",
+ "id": 806
+ },
+ {
+ "order": 0,
+ "ligatures": "shop_two",
+ "id": 807
+ },
+ {
+ "order": 0,
+ "ligatures": "shopping_basket",
+ "id": 808
+ },
+ {
+ "order": 0,
+ "ligatures": "speaker_notes",
+ "id": 809
+ },
+ {
+ "order": 0,
+ "ligatures": "spellcheck",
+ "id": 810
+ },
+ {
+ "order": 0,
+ "ligatures": "stars",
+ "id": 811
+ },
+ {
+ "order": 0,
+ "ligatures": "subject",
+ "id": 812
+ },
+ {
+ "order": 0,
+ "ligatures": "supervisor_account",
+ "id": 813
+ },
+ {
+ "order": 0,
+ "ligatures": "swap_horiz",
+ "id": 814
+ },
+ {
+ "order": 0,
+ "ligatures": "swap_vert",
+ "id": 815
+ },
+ {
+ "order": 0,
+ "ligatures": "swap_vertical_circle",
+ "id": 816
+ },
+ {
+ "order": 0,
+ "ligatures": "system_update_alt",
+ "id": 817
+ },
+ {
+ "order": 0,
+ "ligatures": "tab",
+ "id": 818
+ },
+ {
+ "order": 0,
+ "ligatures": "tab_unselected",
+ "id": 819
+ },
+ {
+ "order": 0,
+ "ligatures": "thumb_down",
+ "id": 820
+ },
+ {
+ "order": 0,
+ "ligatures": "thumb_up",
+ "id": 821
+ },
+ {
+ "order": 0,
+ "ligatures": "thumbs_up_down",
+ "id": 822
+ },
+ {
+ "order": 0,
+ "ligatures": "toc",
+ "id": 823
+ },
+ {
+ "order": 0,
+ "ligatures": "today",
+ "id": 824
+ },
+ {
+ "order": 0,
+ "ligatures": "toll",
+ "id": 825
+ },
+ {
+ "order": 0,
+ "ligatures": "track_changes",
+ "id": 826
+ },
+ {
+ "order": 0,
+ "ligatures": "translate",
+ "id": 827
+ },
+ {
+ "order": 0,
+ "ligatures": "trending_down",
+ "id": 828
+ },
+ {
+ "order": 0,
+ "ligatures": "trending_neutral",
+ "id": 829
+ },
+ {
+ "order": 0,
+ "ligatures": "trending_up",
+ "id": 830
+ },
+ {
+ "order": 0,
+ "ligatures": "verified_user",
+ "id": 831
+ },
+ {
+ "order": 0,
+ "ligatures": "view_agenda",
+ "id": 832
+ },
+ {
+ "order": 0,
+ "ligatures": "view_array",
+ "id": 833
+ },
+ {
+ "order": 0,
+ "ligatures": "view_carousel",
+ "id": 834
+ },
+ {
+ "order": 0,
+ "ligatures": "view_column",
+ "id": 835
+ },
+ {
+ "order": 0,
+ "ligatures": "view_day",
+ "id": 836
+ },
+ {
+ "order": 0,
+ "ligatures": "view_headline",
+ "id": 837
+ },
+ {
+ "order": 0,
+ "ligatures": "view_list",
+ "id": 838
+ },
+ {
+ "order": 0,
+ "ligatures": "view_module",
+ "id": 839
+ },
+ {
+ "order": 0,
+ "ligatures": "view_quilt",
+ "id": 840
+ },
+ {
+ "order": 0,
+ "ligatures": "view_stream",
+ "id": 841
+ },
+ {
+ "order": 0,
+ "ligatures": "view_week",
+ "id": 842
+ },
+ {
+ "order": 0,
+ "ligatures": "visibility_off",
+ "id": 843
+ },
+ {
+ "order": 0,
+ "ligatures": "card_membership",
+ "id": 844
+ },
+ {
+ "order": 0,
+ "ligatures": "card_travel",
+ "id": 845
+ },
+ {
+ "order": 0,
+ "ligatures": "work",
+ "id": 846
+ },
+ {
+ "order": 0,
+ "ligatures": "youtube_searched_for",
+ "id": 847
+ },
+ {
+ "order": 0,
+ "ligatures": "eject",
+ "id": 848
+ },
+ {
+ "order": 0,
+ "ligatures": "camera_enhance",
+ "id": 849
+ },
+ {
+ "order": 0,
+ "ligatures": "help_outline",
+ "id": 850
+ },
+ {
+ "order": 0,
+ "ligatures": "reorder",
+ "id": 851
+ },
+ {
+ "order": 0,
+ "ligatures": "zoom_in",
+ "id": 852
+ },
+ {
+ "order": 0,
+ "ligatures": "zoom_out",
+ "id": 853
+ },
+ {
+ "order": 0,
+ "ligatures": "http",
+ "id": 854
+ },
+ {
+ "order": 0,
+ "ligatures": "event_seat",
+ "id": 855
+ },
+ {
+ "order": 0,
+ "ligatures": "flight_land",
+ "id": 856
+ },
+ {
+ "order": 0,
+ "ligatures": "flight_takeoff",
+ "id": 857
+ },
+ {
+ "order": 0,
+ "ligatures": "play_for_work",
+ "id": 858
+ },
+ {
+ "order": 0,
+ "ligatures": "gif",
+ "id": 859
+ },
+ {
+ "order": 0,
+ "ligatures": "indeterminate_check_box",
+ "id": 860
+ },
+ {
+ "order": 0,
+ "ligatures": "offline_pin",
+ "id": 861
+ },
+ {
+ "order": 0,
+ "ligatures": "all_out",
+ "id": 862
+ },
+ {
+ "order": 0,
+ "ligatures": "copyright",
+ "id": 863
+ },
+ {
+ "order": 0,
+ "ligatures": "fingerprint",
+ "id": 864
+ },
+ {
+ "order": 0,
+ "ligatures": "gavel",
+ "id": 865
+ },
+ {
+ "order": 0,
+ "ligatures": "lightbulb_outline",
+ "id": 866
+ },
+ {
+ "order": 0,
+ "ligatures": "picture_in_picture_alt",
+ "id": 867
+ },
+ {
+ "order": 0,
+ "ligatures": "important_devices",
+ "id": 868
+ },
+ {
+ "order": 0,
+ "ligatures": "touch_app",
+ "id": 869
+ },
+ {
+ "order": 0,
+ "ligatures": "accessible",
+ "id": 870
+ },
+ {
+ "order": 0,
+ "ligatures": "compare_arrows",
+ "id": 871
+ },
+ {
+ "order": 0,
+ "ligatures": "date_range",
+ "id": 872
+ },
+ {
+ "order": 0,
+ "ligatures": "donut_large",
+ "id": 873
+ },
+ {
+ "order": 0,
+ "ligatures": "donut_small",
+ "id": 874
+ },
+ {
+ "order": 0,
+ "ligatures": "line_style",
+ "id": 875
+ },
+ {
+ "order": 0,
+ "ligatures": "line_weight",
+ "id": 876
+ },
+ {
+ "order": 0,
+ "ligatures": "motorcycle",
+ "id": 877
+ },
+ {
+ "order": 0,
+ "ligatures": "opacity",
+ "id": 878
+ },
+ {
+ "order": 0,
+ "ligatures": "pets",
+ "id": 879
+ },
+ {
+ "order": 0,
+ "ligatures": "pregnant_woman",
+ "id": 880
+ },
+ {
+ "order": 0,
+ "ligatures": "record_voice_over",
+ "id": 881
+ },
+ {
+ "order": 0,
+ "ligatures": "rounded_corner",
+ "id": 882
+ },
+ {
+ "order": 0,
+ "ligatures": "rowing",
+ "id": 883
+ },
+ {
+ "order": 0,
+ "ligatures": "timeline",
+ "id": 884
+ },
+ {
+ "order": 0,
+ "ligatures": "update",
+ "id": 885
+ },
+ {
+ "order": 0,
+ "ligatures": "watch_later",
+ "id": 886
+ },
+ {
+ "order": 0,
+ "ligatures": "pan_tool",
+ "id": 887
+ },
+ {
+ "order": 0,
+ "ligatures": "euro_symbol",
+ "id": 888
+ },
+ {
+ "order": 0,
+ "ligatures": "g_translate",
+ "id": 889
+ },
+ {
+ "order": 0,
+ "ligatures": "remove_shopping_cart",
+ "id": 890
+ },
+ {
+ "order": 0,
+ "ligatures": "restore_page",
+ "id": 891
+ },
+ {
+ "order": 0,
+ "ligatures": "speaker_notes_off",
+ "id": 892
+ },
+ {
+ "order": 0,
+ "ligatures": "delete_forever",
+ "id": 893
+ },
+ {
+ "order": 0,
+ "ligatures": "accessibility_new",
+ "id": 894
+ },
+ {
+ "order": 0,
+ "ligatures": "check_circle_outline",
+ "id": 895
+ },
+ {
+ "order": 0,
+ "ligatures": "delete_outline",
+ "id": 896
+ },
+ {
+ "order": 0,
+ "ligatures": "done_outline",
+ "id": 897
+ },
+ {
+ "order": 0,
+ "ligatures": "maximize",
+ "id": 898
+ },
+ {
+ "order": 0,
+ "ligatures": "minimize",
+ "id": 899
+ },
+ {
+ "order": 0,
+ "ligatures": "offline_bolt",
+ "id": 900
+ },
+ {
+ "order": 0,
+ "ligatures": "swap_horizontal_circle",
+ "id": 901
+ },
+ {
+ "order": 0,
+ "ligatures": "accessible_forward",
+ "id": 902
+ },
+ {
+ "order": 0,
+ "ligatures": "calendar_today",
+ "id": 903
+ },
+ {
+ "order": 0,
+ "ligatures": "calendar_view_day",
+ "id": 904
+ },
+ {
+ "order": 0,
+ "ligatures": "label_important",
+ "id": 905
+ },
+ {
+ "order": 0,
+ "ligatures": "restore_from_trash",
+ "id": 906
+ },
+ {
+ "order": 0,
+ "ligatures": "supervised_user_circle",
+ "id": 907
+ },
+ {
+ "order": 0,
+ "ligatures": "text_rotate_up",
+ "id": 908
+ },
+ {
+ "order": 0,
+ "ligatures": "text_rotate_vertical",
+ "id": 909
+ },
+ {
+ "order": 0,
+ "ligatures": "text_rotation_angledown",
+ "id": 910
+ },
+ {
+ "order": 0,
+ "ligatures": "text_rotation_angleup",
+ "id": 911
+ },
+ {
+ "order": 0,
+ "ligatures": "text_rotation_down",
+ "id": 912
+ },
+ {
+ "order": 0,
+ "ligatures": "text_rotation_none",
+ "id": 913
+ },
+ {
+ "order": 0,
+ "ligatures": "commute",
+ "id": 914
+ },
+ {
+ "order": 0,
+ "ligatures": "arrow_right_alt",
+ "id": 915
+ },
+ {
+ "order": 0,
+ "ligatures": "work_off",
+ "id": 916
+ },
+ {
+ "order": 0,
+ "ligatures": "work_outline",
+ "id": 917
+ },
+ {
+ "order": 0,
+ "ligatures": "drag_indicator",
+ "id": 918
+ },
+ {
+ "order": 0,
+ "ligatures": "horizontal_split",
+ "id": 919
+ },
+ {
+ "order": 0,
+ "ligatures": "label_important_outline",
+ "id": 920
+ },
+ {
+ "order": 0,
+ "ligatures": "vertical_split",
+ "id": 921
+ },
+ {
+ "order": 0,
+ "ligatures": "voice_over_off",
+ "id": 922
+ },
+ {
+ "order": 0,
+ "ligatures": "segment",
+ "id": 923
+ },
+ {
+ "order": 0,
+ "ligatures": "contact_support",
+ "id": 924
+ },
+ {
+ "order": 0,
+ "ligatures": "compress",
+ "id": 925
+ },
+ {
+ "order": 0,
+ "ligatures": "filter_list_alt",
+ "id": 926
+ },
+ {
+ "order": 0,
+ "ligatures": "expand",
+ "id": 927
+ },
+ {
+ "order": 0,
+ "ligatures": "edit_off",
+ "id": 928
+ },
+ {
+ "order": 0,
+ "ligatures": "10k",
+ "id": 929
+ },
+ {
+ "order": 0,
+ "ligatures": "10mp",
+ "id": 930
+ },
+ {
+ "order": 0,
+ "ligatures": "11mp",
+ "id": 931
+ },
+ {
+ "order": 0,
+ "ligatures": "12mp",
+ "id": 932
+ },
+ {
+ "order": 0,
+ "ligatures": "13mp",
+ "id": 933
+ },
+ {
+ "order": 0,
+ "ligatures": "14mp",
+ "id": 934
+ },
+ {
+ "order": 0,
+ "ligatures": "15mp",
+ "id": 935
+ },
+ {
+ "order": 0,
+ "ligatures": "16mp",
+ "id": 936
+ },
+ {
+ "order": 0,
+ "ligatures": "17mp",
+ "id": 937
+ },
+ {
+ "order": 0,
+ "ligatures": "18mp",
+ "id": 938
+ },
+ {
+ "order": 0,
+ "ligatures": "19mp",
+ "id": 939
+ },
+ {
+ "order": 0,
+ "ligatures": "1k",
+ "id": 940
+ },
+ {
+ "order": 0,
+ "ligatures": "1k_plus",
+ "id": 941
+ },
+ {
+ "order": 0,
+ "ligatures": "20mp",
+ "id": 942
+ },
+ {
+ "order": 0,
+ "ligatures": "21mp",
+ "id": 943
+ },
+ {
+ "order": 0,
+ "ligatures": "22mp",
+ "id": 944
+ },
+ {
+ "order": 0,
+ "ligatures": "23mp",
+ "id": 945
+ },
+ {
+ "order": 0,
+ "ligatures": "24mp",
+ "id": 946
+ },
+ {
+ "order": 0,
+ "ligatures": "2k",
+ "id": 947
+ },
+ {
+ "order": 0,
+ "ligatures": "2k_plus",
+ "id": 948
+ },
+ {
+ "order": 0,
+ "ligatures": "2mp",
+ "id": 949
+ },
+ {
+ "order": 0,
+ "ligatures": "3k",
+ "id": 950
+ },
+ {
+ "order": 0,
+ "ligatures": "3k_plus",
+ "id": 951
+ },
+ {
+ "order": 0,
+ "ligatures": "3mp",
+ "id": 952
+ },
+ {
+ "order": 0,
+ "ligatures": "4k_plus",
+ "id": 953
+ },
+ {
+ "order": 0,
+ "ligatures": "4mp",
+ "id": 954
+ },
+ {
+ "order": 0,
+ "ligatures": "5k",
+ "id": 955
+ },
+ {
+ "order": 0,
+ "ligatures": "5k_plus",
+ "id": 956
+ },
+ {
+ "order": 0,
+ "ligatures": "5mp",
+ "id": 957
+ },
+ {
+ "order": 0,
+ "ligatures": "6k",
+ "id": 958
+ },
+ {
+ "order": 0,
+ "ligatures": "6k_plus",
+ "id": 959
+ },
+ {
+ "order": 0,
+ "ligatures": "6mp",
+ "id": 960
+ },
+ {
+ "order": 0,
+ "ligatures": "7k",
+ "id": 961
+ },
+ {
+ "order": 0,
+ "ligatures": "7k_plus",
+ "id": 962
+ },
+ {
+ "order": 0,
+ "ligatures": "7mp",
+ "id": 963
+ },
+ {
+ "order": 0,
+ "ligatures": "8k",
+ "id": 964
+ },
+ {
+ "order": 0,
+ "ligatures": "8k_plus",
+ "id": 965
+ },
+ {
+ "order": 0,
+ "ligatures": "8mp",
+ "id": 966
+ },
+ {
+ "order": 0,
+ "ligatures": "9k",
+ "id": 967
+ },
+ {
+ "order": 0,
+ "ligatures": "9k_plus",
+ "id": 968
+ },
+ {
+ "order": 0,
+ "ligatures": "9mp",
+ "id": 969
+ },
+ {
+ "order": 0,
+ "ligatures": "account_tree",
+ "id": 970
+ },
+ {
+ "order": 0,
+ "ligatures": "add_chart",
+ "id": 971
+ },
+ {
+ "order": 0,
+ "ligatures": "add_ic_call",
+ "id": 972
+ },
+ {
+ "order": 0,
+ "ligatures": "add_moderator",
+ "id": 973
+ },
+ {
+ "order": 0,
+ "ligatures": "all_inbox",
+ "id": 974
+ },
+ {
+ "order": 0,
+ "ligatures": "approval",
+ "id": 975
+ },
+ {
+ "order": 0,
+ "ligatures": "assistant_direction",
+ "id": 976
+ },
+ {
+ "order": 0,
+ "ligatures": "assistant_navigation",
+ "id": 977
+ },
+ {
+ "order": 0,
+ "ligatures": "bookmarks",
+ "id": 978
+ },
+ {
+ "order": 0,
+ "ligatures": "bus_alert",
+ "id": 979
+ },
+ {
+ "order": 0,
+ "ligatures": "cases",
+ "id": 980
+ },
+ {
+ "order": 0,
+ "ligatures": "circle_notifications",
+ "id": 981
+ },
+ {
+ "order": 0,
+ "ligatures": "closed_caption_off",
+ "id": 982
+ },
+ {
+ "order": 0,
+ "ligatures": "connected_tv",
+ "id": 983
+ },
+ {
+ "order": 0,
+ "ligatures": "dangerous",
+ "id": 984
+ },
+ {
+ "order": 0,
+ "ligatures": "dashboard_customize",
+ "id": 985
+ },
+ {
+ "order": 0,
+ "ligatures": "desktop_access_disabled",
+ "id": 986
+ },
+ {
+ "order": 0,
+ "ligatures": "drive_file_move_outline",
+ "id": 987
+ },
+ {
+ "order": 0,
+ "ligatures": "drive_file_rename_outline",
+ "id": 988
+ },
+ {
+ "order": 0,
+ "ligatures": "drive_folder_upload",
+ "id": 989
+ },
+ {
+ "order": 0,
+ "ligatures": "duo",
+ "id": 990
+ },
+ {
+ "order": 0,
+ "ligatures": "explore_off",
+ "id": 991
+ },
+ {
+ "order": 0,
+ "ligatures": "file_download_done",
+ "id": 992
+ },
+ {
+ "order": 0,
+ "ligatures": "rtt",
+ "id": 993
+ },
+ {
+ "order": 0,
+ "ligatures": "grid_view",
+ "id": 994
+ },
+ {
+ "order": 0,
+ "ligatures": "hail",
+ "id": 995
+ },
+ {
+ "order": 0,
+ "ligatures": "home_filled",
+ "id": 996
+ },
+ {
+ "order": 0,
+ "ligatures": "imagesearch_roller",
+ "id": 997
+ },
+ {
+ "order": 0,
+ "ligatures": "label_off",
+ "id": 998
+ },
+ {
+ "order": 0,
+ "ligatures": "library_add_check",
+ "id": 999
+ },
+ {
+ "order": 0,
+ "ligatures": "logout",
+ "id": 1000
+ },
+ {
+ "order": 0,
+ "ligatures": "margin",
+ "id": 1001
+ },
+ {
+ "order": 0,
+ "ligatures": "mark_as_unread",
+ "id": 1002
+ },
+ {
+ "order": 0,
+ "ligatures": "menu_open",
+ "id": 1003
+ },
+ {
+ "order": 0,
+ "ligatures": "mp",
+ "id": 1004
+ },
+ {
+ "order": 0,
+ "ligatures": "offline_share",
+ "id": 1005
+ },
+ {
+ "order": 0,
+ "ligatures": "padding",
+ "id": 1006
+ },
+ {
+ "order": 0,
+ "ligatures": "panorama_photosphere",
+ "id": 1007
+ },
+ {
+ "order": 0,
+ "ligatures": "panorama_photosphere_select",
+ "id": 1008
+ },
+ {
+ "order": 0,
+ "ligatures": "person_add_disabled",
+ "id": 1009
+ },
+ {
+ "order": 0,
+ "ligatures": "phone_disabled",
+ "id": 1010
+ },
+ {
+ "order": 0,
+ "ligatures": "phone_enabled",
+ "id": 1011
+ },
+ {
+ "order": 0,
+ "ligatures": "pivot_table_chart",
+ "id": 1012
+ },
+ {
+ "order": 0,
+ "ligatures": "print_disabled",
+ "id": 1013
+ },
+ {
+ "order": 0,
+ "ligatures": "railway_alert",
+ "id": 1014
+ },
+ {
+ "order": 0,
+ "ligatures": "recommend",
+ "id": 1015
+ },
+ {
+ "order": 0,
+ "ligatures": "remove_done",
+ "id": 1016
+ },
+ {
+ "order": 0,
+ "ligatures": "remove_moderator",
+ "id": 1017
+ },
+ {
+ "order": 0,
+ "ligatures": "repeat_on",
+ "id": 1018
+ },
+ {
+ "order": 0,
+ "ligatures": "repeat_one_on",
+ "id": 1019
+ },
+ {
+ "order": 0,
+ "ligatures": "replay_circle_filled",
+ "id": 1020
+ },
+ {
+ "order": 0,
+ "ligatures": "reset_tv",
+ "id": 1021
+ },
+ {
+ "order": 0,
+ "ligatures": "sd",
+ "id": 1022
+ },
+ {
+ "order": 0,
+ "ligatures": "shield",
+ "id": 1023
+ },
+ {
+ "order": 0,
+ "ligatures": "shuffle_on",
+ "id": 1024
+ },
+ {
+ "order": 0,
+ "ligatures": "speed",
+ "id": 1025
+ },
+ {
+ "order": 0,
+ "ligatures": "stacked_bar_chart",
+ "id": 1026
+ },
+ {
+ "order": 0,
+ "ligatures": "stream",
+ "id": 1027
+ },
+ {
+ "order": 0,
+ "ligatures": "swipe",
+ "id": 1028
+ },
+ {
+ "order": 0,
+ "ligatures": "switch_account",
+ "id": 1029
+ },
+ {
+ "order": 0,
+ "ligatures": "tag",
+ "id": 1030
+ },
+ {
+ "order": 0,
+ "ligatures": "thumb_down_off_alt",
+ "id": 1031
+ },
+ {
+ "order": 0,
+ "ligatures": "thumb_up_off_alt",
+ "id": 1032
+ },
+ {
+ "order": 0,
+ "ligatures": "toggle_off",
+ "id": 1033
+ },
+ {
+ "order": 0,
+ "ligatures": "toggle_on",
+ "id": 1034
+ },
+ {
+ "order": 0,
+ "ligatures": "two_wheeler",
+ "id": 1035
+ },
+ {
+ "order": 0,
+ "ligatures": "upload_file",
+ "id": 1036
+ },
+ {
+ "order": 0,
+ "ligatures": "view_in_ar",
+ "id": 1037
+ },
+ {
+ "order": 0,
+ "ligatures": "waterfall_chart",
+ "id": 1038
+ },
+ {
+ "order": 0,
+ "ligatures": "wb_shade",
+ "id": 1039
+ },
+ {
+ "order": 0,
+ "ligatures": "wb_twighlight",
+ "id": 1040
+ },
+ {
+ "order": 0,
+ "ligatures": "home_work",
+ "id": 1041
+ },
+ {
+ "order": 0,
+ "ligatures": "schedule_send",
+ "id": 1042
+ },
+ {
+ "order": 0,
+ "ligatures": "bolt",
+ "id": 1043
+ },
+ {
+ "order": 0,
+ "ligatures": "send_and_archive",
+ "id": 1044
+ },
+ {
+ "order": 0,
+ "ligatures": "workspaces_filled",
+ "id": 1045
+ },
+ {
+ "order": 0,
+ "ligatures": "file_present",
+ "id": 1046
+ },
+ {
+ "order": 0,
+ "ligatures": "workspaces_outline",
+ "id": 1047
+ },
+ {
+ "order": 0,
+ "ligatures": "fit_screen",
+ "id": 1048
+ },
+ {
+ "order": 0,
+ "ligatures": "saved_search",
+ "id": 1049
+ },
+ {
+ "order": 0,
+ "ligatures": "storefront",
+ "id": 1050
+ },
+ {
+ "order": 0,
+ "ligatures": "amp_stories",
+ "id": 1051
+ },
+ {
+ "order": 0,
+ "ligatures": "dynamic_feed",
+ "id": 1052
+ },
+ {
+ "order": 0,
+ "ligatures": "euro",
+ "id": 1053
+ },
+ {
+ "order": 0,
+ "ligatures": "height",
+ "id": 1054
+ },
+ {
+ "order": 0,
+ "ligatures": "policy",
+ "id": 1055
+ },
+ {
+ "order": 0,
+ "ligatures": "sync_alt",
+ "id": 1056
+ },
+ {
+ "order": 0,
+ "ligatures": "menu_book",
+ "id": 1057
+ },
+ {
+ "order": 0,
+ "ligatures": "emoji_flags",
+ "id": 1058
+ },
+ {
+ "order": 0,
+ "ligatures": "emoji_food_beverage",
+ "id": 1059
+ },
+ {
+ "order": 0,
+ "ligatures": "emoji_nature",
+ "id": 1060
+ },
+ {
+ "order": 0,
+ "ligatures": "emoji_people",
+ "id": 1061
+ },
+ {
+ "order": 0,
+ "ligatures": "emoji_symbols",
+ "id": 1062
+ },
+ {
+ "order": 0,
+ "ligatures": "emoji_transportation",
+ "id": 1063
+ },
+ {
+ "order": 0,
+ "ligatures": "post_add",
+ "id": 1064
+ },
+ {
+ "order": 0,
+ "ligatures": "people_alt",
+ "id": 1065
+ },
+ {
+ "order": 0,
+ "ligatures": "emoji_emotions",
+ "id": 1066
+ },
+ {
+ "order": 0,
+ "ligatures": "emoji_events",
+ "id": 1067
+ },
+ {
+ "order": 0,
+ "ligatures": "emoji_objects",
+ "id": 1068
+ },
+ {
+ "order": 0,
+ "ligatures": "sports_basketball",
+ "id": 1069
+ },
+ {
+ "order": 0,
+ "ligatures": "sports_cricket",
+ "id": 1070
+ },
+ {
+ "order": 0,
+ "ligatures": "sports_esports",
+ "id": 1071
+ },
+ {
+ "order": 0,
+ "ligatures": "sports_football",
+ "id": 1072
+ },
+ {
+ "order": 0,
+ "ligatures": "sports_golf",
+ "id": 1073
+ },
+ {
+ "order": 0,
+ "ligatures": "sports_hockey",
+ "id": 1074
+ },
+ {
+ "order": 0,
+ "ligatures": "sports_mma",
+ "id": 1075
+ },
+ {
+ "order": 0,
+ "ligatures": "sports_motorsports",
+ "id": 1076
+ },
+ {
+ "order": 0,
+ "ligatures": "sports_rugby",
+ "id": 1077
+ },
+ {
+ "order": 0,
+ "ligatures": "sports_soccer",
+ "id": 1078
+ },
+ {
+ "order": 0,
+ "ligatures": "sports",
+ "id": 1079
+ },
+ {
+ "order": 0,
+ "ligatures": "sports_volleyball",
+ "id": 1080
+ },
+ {
+ "order": 0,
+ "ligatures": "sports_tennis",
+ "id": 1081
+ },
+ {
+ "order": 0,
+ "ligatures": "sports_handball",
+ "id": 1082
+ },
+ {
+ "order": 0,
+ "ligatures": "sports_kabaddi",
+ "id": 1083
+ },
+ {
+ "order": 0,
+ "ligatures": "eco",
+ "id": 1084
+ },
+ {
+ "order": 0,
+ "ligatures": "museum",
+ "id": 1085
+ },
+ {
+ "order": 0,
+ "ligatures": "flip_camera_android",
+ "id": 1086
+ },
+ {
+ "order": 0,
+ "ligatures": "flip_camera_ios",
+ "id": 1087
+ },
+ {
+ "order": 0,
+ "ligatures": "cancel_schedule_send",
+ "id": 1088
+ },
+ {
+ "order": 0,
+ "ligatures": "apartment",
+ "id": 1089
+ },
+ {
+ "order": 0,
+ "ligatures": "bathtub",
+ "id": 1090
+ },
+ {
+ "order": 0,
+ "ligatures": "deck",
+ "id": 1091
+ },
+ {
+ "order": 0,
+ "ligatures": "fireplace",
+ "id": 1092
+ },
+ {
+ "order": 0,
+ "ligatures": "house",
+ "id": 1093
+ },
+ {
+ "order": 0,
+ "ligatures": "king_bed",
+ "id": 1094
+ },
+ {
+ "order": 0,
+ "ligatures": "nights_stay",
+ "id": 1095
+ },
+ {
+ "order": 0,
+ "ligatures": "outdoor_grill",
+ "id": 1096
+ },
+ {
+ "order": 0,
+ "ligatures": "single_bed",
+ "id": 1097
+ },
+ {
+ "order": 0,
+ "ligatures": "square_foot",
+ "id": 1098
+ },
+ {
+ "order": 0,
+ "ligatures": "double_arrow",
+ "id": 1099
+ },
+ {
+ "order": 0,
+ "ligatures": "sports_baseball",
+ "id": 1100
+ },
+ {
+ "order": 0,
+ "ligatures": "attractions",
+ "id": 1101
+ },
+ {
+ "order": 0,
+ "ligatures": "bakery_dining",
+ "id": 1102
+ },
+ {
+ "order": 0,
+ "ligatures": "breakfast_dining",
+ "id": 1103
+ },
+ {
+ "order": 0,
+ "ligatures": "car_rental",
+ "id": 1104
+ },
+ {
+ "order": 0,
+ "ligatures": "car_repair",
+ "id": 1105
+ },
+ {
+ "order": 0,
+ "ligatures": "dinner_dining",
+ "id": 1106
+ },
+ {
+ "order": 0,
+ "ligatures": "dry_cleaning",
+ "id": 1107
+ },
+ {
+ "order": 0,
+ "ligatures": "hardware",
+ "id": 1108
+ },
+ {
+ "order": 0,
+ "ligatures": "liquor",
+ "id": 1109
+ },
+ {
+ "order": 0,
+ "ligatures": "lunch_dining",
+ "id": 1110
+ },
+ {
+ "order": 0,
+ "ligatures": "nightlife",
+ "id": 1111
+ },
+ {
+ "order": 0,
+ "ligatures": "park",
+ "id": 1112
+ },
+ {
+ "order": 0,
+ "ligatures": "ramen_dining",
+ "id": 1113
+ },
+ {
+ "order": 0,
+ "ligatures": "celebration",
+ "id": 1114
+ },
+ {
+ "order": 0,
+ "ligatures": "theater_comedy",
+ "id": 1115
+ },
+ {
+ "order": 0,
+ "ligatures": "badge",
+ "id": 1116
+ },
+ {
+ "order": 0,
+ "ligatures": "festival",
+ "id": 1117
+ },
+ {
+ "order": 0,
+ "ligatures": "icecream",
+ "id": 1118
+ },
+ {
+ "order": 0,
+ "ligatures": "volunteer_activism",
+ "id": 1119
+ },
+ {
+ "order": 0,
+ "ligatures": "contactless",
+ "id": 1120
+ },
+ {
+ "order": 0,
+ "ligatures": "delivery_dining",
+ "id": 1121
+ },
+ {
+ "order": 0,
+ "ligatures": "brunch_dining",
+ "id": 1122
+ },
+ {
+ "order": 0,
+ "ligatures": "takeout_dining",
+ "id": 1123
+ },
+ {
+ "order": 0,
+ "ligatures": "ac_unit",
+ "id": 1124
+ },
+ {
+ "order": 0,
+ "ligatures": "airport_shuttle",
+ "id": 1125
+ },
+ {
+ "order": 0,
+ "ligatures": "all_inclusive",
+ "id": 1126
+ },
+ {
+ "order": 0,
+ "ligatures": "beach_access",
+ "id": 1127
+ },
+ {
+ "order": 0,
+ "ligatures": "business_center",
+ "id": 1128
+ },
+ {
+ "order": 0,
+ "ligatures": "casino",
+ "id": 1129
+ },
+ {
+ "order": 0,
+ "ligatures": "child_care",
+ "id": 1130
+ },
+ {
+ "order": 0,
+ "ligatures": "child_friendly",
+ "id": 1131
+ },
+ {
+ "order": 0,
+ "ligatures": "fitness_center",
+ "id": 1132
+ },
+ {
+ "order": 0,
+ "ligatures": "golf_course",
+ "id": 1133
+ },
+ {
+ "order": 0,
+ "ligatures": "hot_tub",
+ "id": 1134
+ },
+ {
+ "order": 0,
+ "ligatures": "kitchen",
+ "id": 1135
+ },
+ {
+ "order": 0,
+ "ligatures": "pool",
+ "id": 1136
+ },
+ {
+ "order": 0,
+ "ligatures": "room_service",
+ "id": 1137
+ },
+ {
+ "order": 0,
+ "ligatures": "smoke_free",
+ "id": 1138
+ },
+ {
+ "order": 0,
+ "ligatures": "smoking_rooms",
+ "id": 1139
+ },
+ {
+ "order": 0,
+ "ligatures": "spa",
+ "id": 1140
+ },
+ {
+ "order": 0,
+ "ligatures": "no_meeting_room",
+ "id": 1141
+ },
+ {
+ "order": 0,
+ "ligatures": "meeting_room",
+ "id": 1142
+ },
+ {
+ "order": 0,
+ "ligatures": "goat",
+ "id": 1143
+ }
+ ],
+ "id": 2,
+ "metadata": {
+ "name": "Material Icons",
+ "licenseURL": "http://www.apache.org/licenses/LICENSE-2.0.txt",
+ "license": "Apache License Version 2.0",
+ "designer": "Google",
+ "designerURL": "https://www.google.com/design",
+ "url": "https://material.io/tools/icons/"
+ },
+ "height": 1024,
+ "prevSize": 24,
+ "icons": [
+ {
+ "id": 0,
+ "paths": [
+ "M554 554v-256h-84v256h84zM554 726v-86h-84v86h84zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "error"
+ ],
+ "defaultCode": 59648,
+ "grid": 24
+ },
+ {
+ "id": 1,
+ "paths": [
+ "M512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125zM470 298h84v256h-84v-256zM470 640h84v86h-84v-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "error_outline"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 2,
+ "paths": [
+ "M554 598v-172h-84v172h84zM554 768v-86h-84v86h84zM42 896l470-810 470 810h-940z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "warning",
+ "report_problem"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 3,
+ "paths": [
+ "M682 556v-86h-128v-128h-84v128h-128v86h128v128h84v-128h128zM806 718l90 90v46h-768v-46l90-90v-248q0-96 66-180t160-106v-30q0-28 20-48t48-20 48 20 20 48v30q98 22 162 103t64 183v248zM428 896h168q0 34-25 60t-59 26-59-26-25-60z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "add_alert"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 4,
+ "paths": [
+ "M512 938q-36 0-61-24t-25-60h172q0 34-26 59t-60 25zM554 512v-170h-84v170h84zM554 682v-84h-84v84h84zM768 682l86 86v42h-684v-42l86-86v-212q0-100 51-174t141-96v-30q0-26 18-45t46-19 46 19 18 45v30q90 22 141 96t51 174v212z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "notification_important"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 5,
+ "paths": [
+ "M512 470q18 0 30 12t12 30-12 30-30 12-30-12-12-30 12-30 30-12zM512 704q80 0 136-56t56-136-56-136-136-56-136 56-56 136 56 136 136 56zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "album"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 6,
+ "paths": [
+ "M256 512q0-18 12-30t30-12 31 12 13 30-13 30-31 12-30-12-12-30zM768 512q0 18-12 30t-30 12-31-12-13-30 13-30 31-12 30 12 12 30zM470 128h42q160 0 272 112t112 272-112 272-272 112-272-112-112-272q0-192 154-306v-2l290 290-60 60-232-230q-66 82-66 188 0 124 87 211t211 87 211-87 87-211q0-112-74-196t-182-100v82h-84v-170zM470 726q0-18 12-31t30-13 30 13 12 31-12 30-30 12-30-12-12-30z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "av_timer"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 7,
+ "paths": [
+ "M768 470v-44q0-18-12-30t-30-12h-128q-18 0-31 12t-13 30v172q0 18 13 30t31 12h128q18 0 30-12t12-30v-44h-64v22h-86v-128h86v22h64zM470 470v-44q0-18-13-30t-31-12h-128q-18 0-30 12t-12 30v172q0 18 12 30t30 12h128q18 0 31-12t13-30v-44h-64v22h-86v-128h86v22h64zM810 170q34 0 60 26t26 60v512q0 34-26 60t-60 26h-596q-36 0-61-25t-25-61v-512q0-36 25-61t61-25h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "closed_caption"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 8,
+ "paths": [
+ "M682 384h172v470h-172v-470zM170 854v-342h172v342h-172zM426 854v-684h172v684h-172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "equalizer"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 9,
+ "paths": [
+ "M640 384v-86h-256v428h256v-86h-170v-86h170v-84h-170v-86h170zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "explicit"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 10,
+ "paths": [
+ "M554 256l364 256-364 256v-512zM170 768v-512l364 256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fast_forward"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 11,
+ "paths": [
+ "M490 512l364-256v512zM470 768l-364-256 364-256v512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fast_rewind"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 12,
+ "paths": [
+ "M704 384h234v256h-234l-128-128zM384 704l128-128 128 128v234h-256v-234zM320 384l128 128-128 128h-234v-256h234zM640 320l-128 128-128-128v-234h256v234z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "games",
+ "gamepad"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 13,
+ "paths": [
+ "M490 384q0-44 32-75t76-31 75 31 31 75-31 75-75 31-76-31-32-75zM326 112q-112 112-112 272t112 272l-60 60q-138-138-138-332t138-332zM726 854q34 0 59-26t25-60h86q0 70-50 120t-120 50q-38 0-70-14-82-42-118-152-14-44-72-88-82-60-122-134-46-82-46-166 0-126 87-212t213-86 212 86 86 212h-86q0-90-61-152t-151-62-152 62-62 152q0 64 34 126 28 54 100 108 80 60 102 128 26 76 72 100 16 8 34 8z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hearing"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 14,
+ "paths": [
+ "M618 576v-128h86v128h-86zM768 598v-172q0-18-12-30t-30-12h-128q-18 0-31 12t-13 30v172q0 18 13 30t31 12h32v64h64v-64h32q18 0 30-12t12-30zM470 640v-256h-64v106h-86v-106h-64v256h64v-86h86v86h64zM810 170q34 0 60 26t26 60v512q0 34-26 60t-60 26h-596q-36 0-61-25t-25-61v-512q0-36 25-61t61-25h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "high_quality"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 15,
+ "paths": [
+ "M512 768v-128l170 170-170 172v-128q-140 0-241-101t-101-241q0-100 54-182l62 62q-30 54-30 120 0 106 75 181t181 75zM512 170q140 0 241 101t101 241q0 100-54 182l-62-62q30-54 30-120 0-106-75-181t-181-75v128l-170-170 170-172v128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "loop",
+ "sync"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 16,
+ "paths": [
+ "M738 470h72q0 108-75 189t-181 97v140h-84v-140q-106-16-181-97t-75-189h72q0 94 67 155t159 61 159-61 67-155zM512 598q-52 0-90-38t-38-90v-256q0-52 38-90t90-38 90 38 38 90v256q0 52-38 90t-90 38z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mic"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 17,
+ "paths": [
+ "M738 470h72q0 108-75 189t-181 97v140h-84v-140q-106-16-181-97t-75-189h72q0 94 67 155t159 61 159-61 67-155zM460 210v264q0 20 15 35t37 15q20 0 35-14t15-36l2-264q0-22-16-37t-36-15-36 15-16 37zM512 598q-52 0-90-38t-38-90v-256q0-52 38-90t90-38 90 38 38 90v256q0 52-38 90t-90 38z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mic_none"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 18,
+ "paths": [
+ "M182 128l714 714-54 54-178-178q-44 28-110 38v140h-84v-140q-106-16-181-97t-75-189h72q0 94 67 155t159 61q50 0 98-22l-70-70q-16 4-28 4-52 0-90-38t-38-90v-32l-256-256zM640 476l-256-254v-8q0-52 38-90t90-38 90 38 38 90v262zM810 470q0 74-38 140l-52-54q18-40 18-86h72z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mic_off"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 19,
+ "paths": [
+ "M768 170h170v598q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-512q0-34 25-60t59-26h44l84 172h128l-84-172h84l86 172h128l-86-172h86l86 172h128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "movie",
+ "movie_creation"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 20,
+ "paths": [
+ "M810 470v-86h-170v-170h-86v170h-170v86h170v170h86v-170h170zM854 86q34 0 59 25t25 59v512q0 34-25 60t-59 26h-512q-34 0-60-26t-26-60v-512q0-34 26-59t60-25h512zM170 256v598h598v84h-598q-34 0-59-25t-25-59v-598h84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "library_add",
+ "queue",
+ "add_to_photos"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 21,
+ "paths": [
+ "M810 298v-84h-426v84h426zM640 640v-86h-256v86h256zM810 470v-86h-426v86h426zM854 86q34 0 59 25t25 59v512q0 34-25 60t-59 26h-512q-34 0-60-26t-26-60v-512q0-34 26-59t60-25h512zM170 256v598h598v84h-598q-34 0-59-25t-25-59v-598h84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "library_books"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 22,
+ "paths": [
+ "M170 256v598h598v84h-598q-34 0-59-25t-25-59v-598h84zM768 298v-84h-170v234q-28-22-64-22-44 0-76 32t-32 76 32 75 76 31 75-31 31-75v-236h128zM854 86q34 0 59 25t25 59v512q0 34-25 60t-59 26h-512q-34 0-60-26t-26-60v-512q0-34 26-59t60-25h512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "library_music"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 23,
+ "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
+ },
+ {
+ "id": 24,
+ "paths": [
+ "M782 722q72-90 72-210 0-140-101-241t-241-101q-48 0-110 21t-100 51zM512 854q48 0 110-21t100-51l-480-480q-72 90-72 210 0 140 101 241t241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "not_interested",
+ "do_not_disturb"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 25,
+ "paths": [
+ "M598 214h170v596h-170v-596zM256 810v-596h170v596h-170z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pause"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 26,
+ "paths": [
+ "M640 682v-340h-86v340h86zM470 682v-340h-86v340h86zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pause_circle_filled"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 27,
+ "paths": [
+ "M554 682v-340h86v340h-86zM512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125zM384 682v-340h86v340h-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pause_circle_outline"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 28,
+ "paths": [
+ "M342 214l468 298-468 298v-596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "play_arrow"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 29,
+ "paths": [
+ "M426 704l256-192-256-192v384zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "play_circle_filled"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 30,
+ "paths": [
+ "M512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125zM426 704v-384l256 192z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "play_circle_outline"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 31,
+ "paths": [
+ "M86 682v-84h340v84h-340zM768 598h170v84h-170v172h-86v-172h-170v-84h170v-172h86v172zM598 256v86h-512v-86h512zM598 426v86h-512v-86h512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "playlist_add"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 32,
+ "paths": [
+ "M726 256h212v86h-128v384q0 52-38 90t-90 38-90-38-38-90 38-90 90-38q16 0 44 8v-350zM128 682v-84h342v84h-342zM640 426v86h-512v-86h512zM640 256v86h-512v-86h512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "queue_music"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 33,
+ "paths": [
+ "M854 512v-170h-684v170h512v-86h86v86h86zM298 854q52 0 90-38t38-90-38-90-90-38-90 38-38 90 38 90 90 38zM138 262l540-220 28 72-352 142h500q36 0 60 25t24 61v512q0 36-24 60t-60 24h-684q-36 0-60-24t-24-60v-512q0-60 52-80z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "radio"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 34,
+ "paths": [
+ "M534 726v-32q0-44-66-70t-126-26-126 26-66 70v32h384zM342 330q-38 0-67 29t-29 67 29 67 67 29 67-29 29-67-29-67-67-29zM598 214q18 0 30 12t12 30v512q0 18-12 30t-30 12h-512q-18 0-31-12t-13-30v-512q0-18 13-30t31-12h512zM726 810v-596h84v596h-84zM896 214h86v596h-86v-596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "recent_actors"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 35,
+ "paths": [
+ "M726 726v-172h84v256h-512v128l-170-170 170-170v128h428zM298 298v172h-84v-256h512v-128l170 170-170 170v-128h-428z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "repeat"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 36,
+ "paths": [
+ "M554 640h-64v-170h-64v-44l86-42h42v256zM726 726v-172h84v256h-512v128l-170-170 170-170v128h428zM298 298v172h-84v-256h512v-128l170 170-170 170v-128h-428z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "repeat_one"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 37,
+ "paths": [
+ "M512 214q142 0 242 100t100 240q0 142-101 242t-241 100-241-100-101-242h86q0 106 75 181t181 75 181-75 75-181-75-181-181-75v172l-214-214 214-214v172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "replay"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 38,
+ "paths": [
+ "M632 572l134 134 88-88v236h-236l88-88-134-134zM618 170h236v236l-88-88-536 536-60-60 536-536zM452 392l-60 60-222-222 60-60z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "shuffle"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 39,
+ "paths": [
+ "M682 256h86v512h-86v-512zM256 768v-512l362 256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "skip_next"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 40,
+ "paths": [
+ "M406 512l362-256v512zM256 256h86v512h-86v-512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "skip_previous"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 41,
+ "paths": [
+ "M384 470v-86h256v76l-154 180h154v86h-256v-78l154-178h-154zM512 854q124 0 211-88t87-212-87-211-211-87-211 87-87 211 87 212 211 88zM512 170q160 0 272 113t112 271-112 271-272 113-272-113-112-271 112-271 272-113zM938 244l-54 66-196-166 54-64zM336 144l-196 164-54-64 196-164z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "snooze"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 42,
+ "paths": [
+ "M256 256h512v512h-512v-512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "stop"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 43,
+ "paths": [
+ "M854 598v-86h-428v86h428zM854 768v-86h-172v86h172zM598 768v-86h-428v86h428zM170 512v86h172v-86h-172zM854 170q34 0 59 26t25 60v512q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-512q0-34 25-60t59-26h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "subtitles"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 44,
+ "paths": [
+ "M512 426q34 0 60 26t26 60-26 60-60 26-60-26-26-60 26-60 60-26zM754 754q100-100 100-242v-2q0-58-29-129t-71-111l-62 62q76 76 76 180 0 108-74 182zM512 682q70 0 120-50t50-120-50-120-120-50-120 50-50 120 50 120 120 50zM332 692q-76-76-76-180 0-108 74-182l-60-60q-100 100-100 242v2q0 58 29 129t71 111zM854 170q34 0 59 26t25 60v512q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-512q0-34 25-60t59-26h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "surround_sound"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 45,
+ "paths": [
+ "M512 618l256-192-256-192v384zM854 86q34 0 59 25t25 59v512q0 34-25 60t-59 26h-512q-34 0-60-26t-26-60v-512q0-34 26-59t60-25h512zM170 256v598h598v84h-598q-34 0-59-25t-25-59v-598h84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "video_collection"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 46,
+ "paths": [
+ "M726 448l170-170v468l-170-170v150q0 18-13 30t-31 12h-512q-18 0-30-12t-12-30v-428q0-18 12-30t30-12h512q18 0 31 12t13 30v150z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "videocam"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 47,
+ "paths": [
+ "M140 86l756 756-54 54-136-136q-12 8-24 8h-512q-18 0-30-12t-12-30v-428q0-18 12-30t30-12h32l-116-116zM896 278v456l-478-478h264q18 0 31 12t13 30v150z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "videocam_off"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 48,
+ "paths": [
+ "M214 384h170l214-214v684l-214-214h-170v-256zM790 512q0 118-108 172v-344q44 22 76 73t32 99z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "volume_down"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 49,
+ "paths": [
+ "M298 384h172l212-214v684l-212-214h-172v-256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "volume_mute"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 50,
+ "paths": [
+ "M512 170v180l-90-90zM182 128l714 714-54 54-88-88q-66 56-156 78v-88q50-14 96-50l-182-182v288l-214-214h-170v-256h202l-202-202zM810 512q0-102-59-180t-153-106v-88q130 28 214 133t84 241q0 94-44 178l-64-66q22-54 22-112zM704 512q0 18-2 26l-104-104v-94q44 22 75 72t31 100z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "volume_off"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 51,
+ "paths": [
+ "M598 138q130 28 214 133t84 241-84 241-214 133v-88q94-28 153-106t59-180-59-180-153-106v-88zM704 512q0 120-106 172v-344q44 22 75 72t31 100zM128 384h170l214-214v684l-214-214h-170v-256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "volume_up"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 52,
+ "paths": [
+ "M854 768v-384h-172v384h172zM640 554v-170h-470v170h470zM640 768v-170h-470v170h470zM854 170q34 0 59 26t25 60v512q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-512q0-34 25-60t59-26h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "web"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 53,
+ "paths": [
+ "M618 576v-128h86v128h-86zM554 384v256h172q18 0 30-12t12-30v-172q0-18-12-30t-30-12h-172zM470 640v-256h-64v106h-86v-106h-64v256h64v-86h86v86h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-36 0-61-25t-25-61v-596q0-36 25-61t61-25h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hd"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 54,
+ "paths": [
+ "M672 688h260v68h-364v-54l252-366h-250v-68h354v54zM212 582h166l-84-222zM260 268h70l192 488h-78l-40-104h-218l-40 104h-78zM438 826h198l-100 100zM638 198h-202l100-100z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sort_by_alpha"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 55,
+ "paths": [
+ "M896 128q34 0 60 26t26 60v512q0 34-26 59t-60 25h-170v-84h170v-512h-768v512h170v84h-170q-34 0-60-25t-26-59v-512q0-34 26-60t60-26h768zM256 938l256-256 256 256h-512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "airplay"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 56,
+ "paths": [
+ "M564 648q0 14 20 14 10 0 14-4l8-10q4-8 4-12v-86q-4-8-4-12t-9-9-13-5q-6 0-12 6l-8 8q-6 8-6 12v86q6 8 6 12zM644 606q0 26-4 34l-12 26q-14 12-22 12-4 0-13 2t-13 2q-18 0-26-4-4-2-10-6t-10-6q-18-10-18-60v-30q0-26 4-34l14-26q12-12 20-12 4 0 13-2t13-2q18 0 26 4 4 2 11 6t11 6 12 26q4 12 4 34v30zM466 682h-40v-140l-42 12v-30l76-24h6v182zM170 554q0-140 100-240t242-100v-172l214 214-214 214v-172q-104 0-180 75t-76 181 76 181 180 75 180-75 76-181h86q0 142-101 242t-241 100-241-100-101-242z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "forward_10"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 57,
+ "paths": [
+ "M170 554q0-140 100-240t242-100v-172l214 214-214 214v-172q-104 0-180 75t-76 181 76 181 180 75 180-75 76-181h86q0 142-101 242t-241 100-241-100-101-242zM568 648q0 14 20 14 10 0 14-4l8-10q4-8 4-12v-86q-4-8-4-12t-9-9-13-5q-6 0-12 6l-8 8q-4 8-4 12v86q4 8 4 12zM652 606q0 26-4 34l-12 26q-14 12-22 12-4 0-13 2t-13 2q-14 0-46-16-4-2-12-26-6-18-6-34v-30q0-22 6-34l12-26q14-12 22-12 4 0 12-2t12-2q18 0 26 4 4 2 11 6t11 6 12 26q4 12 4 34v30zM426 576q30 0 30-26v-8q-4-4-4-8t-8-4h-22q-4 4-8 4t-4 8v8h-44q0-16 11-31t25-15q2 0 10-2t10-2q24 0 48 12 16 8 16 38v14q-4 8-4 12 0 8-8 8-4 0-14 10 18 10 22 16 8 16 8 26 0 18-4 22-2 2-6 8t-6 8q-8 8-22 8-4 0-13 2t-13 2q-16 0-20-4-2-2-10-4t-12-4q-18-10-18-42h36v8q4 4 4 8t8 4h22q4-4 8-4t4-8v-22q-4-4-4-8t-8-4h-26v-30h16z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "forward_30"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 58,
+ "paths": [
+ "M500 580q-14 6-14 8l-4 6h-26l10-94h102v30h-74l-4 38q4 0 4-4 0-2 3-3t3-3h16q16 0 22 6 2 2 8 6t8 6q18 18 18 46 0 18-4 22-2 2-6 10t-8 12q-16 16-46 16-18 0-22-4-2-2-9-4t-11-4q-18-10-18-38h34q0 20 26 20 8 0 12-4l10-8q4-8 4-12v-26l-4-8-10-10q-8-4-12-4h-8zM170 554q0-140 100-240t242-100v-172l214 214-214 214v-172q-104 0-180 75t-76 181 76 181 180 75 180-75 76-181h86q0 142-101 242t-241 100-241-100-101-242z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "forward_5"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 59,
+ "paths": [
+ "M564 648q0 14 20 14 10 0 14-4l8-10q4-8 4-12v-86q-4-8-4-12t-9-9-13-5q-6 0-12 6l-8 8q-6 8-6 12v86q6 8 6 12zM648 606q0 26-4 34l-12 26q-14 12-22 12-4 0-13 2t-13 2q-18 0-26-4-4-2-10-6t-10-6q-18-10-18-60v-30q0-26 4-34l14-26q12-12 20-12 4 0 13-2t13-2q18 0 26 4 4 2 11 6t11 6 12 26q4 12 4 34v30zM466 682h-40v-140l-42 12v-30l76-24h6v182zM512 214q142 0 242 100t100 240q0 142-101 242t-241 100-241-100-101-242h86q0 106 76 181t180 75 180-75 76-181-76-181-180-75v172l-214-214 214-214v172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "replay_10"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 60,
+ "paths": [
+ "M572 648q0 14 22 14 8 0 12-4l8-10q4-8 4-12v-86q0-2-2-6t-2-6q0-4-8-9t-12-5q-8 0-14 6l-8 8q-4 8-4 12v86q4 8 4 12zM652 606q0 26-4 34l-12 26q-14 12-22 12-4 0-13 2t-13 2q-14 0-46-16-4-2-12-26-6-18-6-34v-30q0-22 6-34l12-26q14-12 22-12 4 0 12-2t12-2q18 0 26 4 4 2 11 6t11 6 12 26q4 12 4 34v30zM426 576q30 0 30-26v-8q-4-4-4-8t-8-4h-22q-4 4-8 4t-4 8v8h-44q0-16 11-31t25-15q2 0 10-2t10-2q24 0 48 12 16 8 16 38v14q-4 8-4 12 0 8-8 8-4 0-14 10 18 10 22 16 8 16 8 26 0 18-4 22-2 2-6 8t-6 8q-8 8-22 8-4 0-13 2t-13 2q-16 0-20-4-2-2-10-4t-12-4q-18-10-18-42h36v8q4 4 4 8t8 4h22q4-4 8-4t4-8v-22q-4-4-4-8t-8-4h-26v-30h16zM512 214q142 0 242 100t100 240q0 142-101 242t-241 100-241-100-101-242h86q0 106 76 181t180 75 180-75 76-181-76-181-180-75v172l-214-214 214-214v172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "replay_30"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 61,
+ "paths": [
+ "M504 580q-14 6-14 8l-4 6h-30l10-94h102v30h-74l-4 38q4 0 4-4 0-2 3-3t3-3h16q16 0 22 6 2 2 8 6t8 6q18 18 18 46 0 18-4 22-2 2-6 10t-8 12-9 7-7 5q-4 4-26 4-18 0-22-4-2-2-9-4t-11-4q-18-10-18-38h34q0 20 26 20 8 0 12-4l10-8q4-8 4-12v-26l-4-8-10-10q-8-4-12-4h-8zM512 214q142 0 242 100t100 240q0 142-101 242t-241 100-241-100-101-242h86q0 106 76 181t180 75 180-75 76-181-76-181-180-75v172l-214-214 214-214v172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "replay_5"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 62,
+ "paths": [
+ "M682 426v86h-128v128h-84v-128h-128v-86h128v-128h84v128h128zM896 726v-512h-768v512h768zM896 128q36 0 61 25t25 61l-2 512q0 34-25 59t-59 25h-214v86h-340v-86h-214q-36 0-61-24t-25-60v-512q0-36 25-61t61-25h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "add_to_queue"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 63,
+ "paths": [
+ "M896 490v-42q0-28-18-46t-46-18h-150v256h64v-86h50l36 86h64l-38-90q38-18 38-60zM538 640l76-256h-64l-44 146-42-146h-64l74 256h64zM342 576v-128q0-28-19-46t-45-18h-150v256h150q26 0 45-18t19-46zM896 128q36 0 61 25t25 61v596q0 36-25 61t-61 25h-768q-36 0-61-25t-25-61v-596q0-36 25-61t61-25h768zM192 448h86v128h-86v-128zM746 448h86v42h-86v-42z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fiber_dvr"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 64,
+ "paths": [
+ "M874 598v-214h-52v192h-48v-150h-54v150h-48v-192h-54v214q0 18 13 30t31 12h170q18 0 30-12t12-30zM576 438v-54h-170v256h170v-54h-106v-46h106v-54h-106v-48h106zM362 640v-256h-52v150l-108-150h-52v256h52v-150l110 150h50zM854 170q36 0 60 25t24 61v512q0 36-24 61t-60 25h-684q-36 0-60-25t-24-61v-512q0-36 24-61t60-25h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fiber_new"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 65,
+ "paths": [
+ "M598 598l212 128-212 128v-256zM170 598h342v84h-342v-84zM170 256h512v86h-512v-86zM170 426h512v86h-512v-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "playlist_play"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 66,
+ "paths": [
+ "M448 640l-96-128-74 96-54-64-74 96h298zM512 384v256q0 34-26 60t-60 26h-256q-34 0-59-26t-25-60v-256q0-34 25-60t59-26h256q34 0 60 26t26 60zM598 726v-86h340v86h-340zM938 298v86h-340v-86h340zM938 554h-340v-84h340v84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "art_track"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 67,
+ "paths": [
+ "M170 512q0-140 101-241t241-101 241 101 101 241-101 241-241 101-241-101-101-241z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fiber_manual_record"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 68,
+ "paths": [
+ "M726 182q112 28 184 120t72 210-72 210-184 120v-88q70-26 120-97t50-145-50-145-120-97v-88zM42 512q0-140 101-241t241-101 241 101 101 241-101 241-241 101-241-101-101-241z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fiber_smart_record"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 69,
+ "paths": [
+ "M342 640q0-52 38-90t90-38q14 0 42 8v-264h214v86h-128v300q0 52-38 89t-90 37-90-38-38-90zM896 810v-596h-768v596h768zM896 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "music_video"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 70,
+ "paths": [
+ "M682 682l-256-138v278zM938 512v342q0 34-25 59t-59 25h-684q-34 0-59-25t-25-59v-342q0-34 25-60t59-26h684q34 0 59 26t25 60zM768 86v84h-512v-84h512zM854 342h-684v-86h684v86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "subscriptions"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 71,
+ "paths": [
+ "M918 490l64 64-298 300-194-192 64-64 130 128zM86 682v-84h340v84h-340zM598 256v86h-512v-86h512zM598 426v86h-512v-86h512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "playlist_add_check"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 72,
+ "paths": [
+ "M1024 768l-192 192-64-64 128-128-128-128 64-64zM554 426h128v86h-128v128h-84v-128h-128v-86h128v-128h84v128zM896 128q36 0 61 25t25 61v340h-86v-340h-768v512h640v84h-86v86h-340v-86h-214q-36 0-61-24t-25-60v-512q0-36 25-61t61-25h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "queue_play_next"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 73,
+ "paths": [
+ "M682 426v86h-340v-86h340zM896 726v-512h-768v512h768zM896 128q36 0 61 25t25 61l-2 512q0 34-25 59t-59 25h-214v86h-340v-86h-214q-36 0-61-24t-25-60v-512q0-36 25-61t61-25h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "remove_from_queue"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 74,
+ "paths": [
+ "M938 512q0 164-110 286t-272 138v-86q126-16 212-113t86-225-86-225-212-113v-86q162 16 272 138t110 286zM242 842l60-60q72 56 168 68v86q-54-6-121-34t-107-60zM174 554q10 94 68 166l-60 62q-82-102-94-228h86zM242 302q-56 74-68 168h-86q6-54 34-121t60-107zM470 174q-96 12-168 68l-60-60q102-82 228-94v86zM556 418l126 94q-126 94-256 192z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "slow_motion_video"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 75,
+ "paths": [
+ "M810 768v-426h-596v426h596zM810 170q36 0 61 25t25 61v512q0 34-26 60t-60 26h-596q-36 0-61-25t-25-61v-512q0-36 25-61t61-25h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "web_asset"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 76,
+ "paths": [
+ "M854 640v-256h-54v150l-106-150h-54v256h54v-150l108 150h52zM534 640v-256h-64v256h64zM384 490v-42q0-28-18-46t-46-18h-150v256h64v-86h86q28 0 46-19t18-45zM854 170q36 0 60 25t24 61v512q0 36-24 61t-60 25h-684q-36 0-60-25t-24-61v-512q0-36 24-61t60-25h684zM234 448h86v42h-86v-42z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fiber_pin"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 77,
+ "paths": [
+ "M896 810v-256h-384v256h384zM896 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "branding_watermark"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 78,
+ "paths": [
+ "M896 810v-128h-768v128h768zM896 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "call_to_action"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 79,
+ "paths": [
+ "M512 298v-84h-384v84h384zM512 470v-86h-384v86h384zM896 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "featured_play_list"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 80,
+ "paths": [
+ "M512 512v-298h-384v298h384zM896 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "featured_video"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 81,
+ "paths": [
+ "M640 234v236h234zM938 426v342q0 34-25 59t-59 25l-684 2q-34 0-59-26t-25-60v-512q0-34 25-60t59-26h512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "note"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 82,
+ "paths": [
+ "M598 554v-84h-128v-128h-86v128h-128v84h128v128h86v-128h128zM726 448l170-170v468l-170-170v150q0 18-13 30t-31 12h-512q-18 0-30-12t-12-30v-428q0-18 12-30t30-12h512q18 0 31 12t13 30v150z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "video_call"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 83,
+ "paths": [
+ "M896 682v-468h-768v468h768zM896 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "video_label"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 84,
+ "paths": [
+ "M768 640l-96-128 96-128h-74l-76 96v-96h-64v256h64v-96l76 96h74zM512 576v-64h-42v-128h-64v128h-64v-128h-64v192h128v64h64v-64h42zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "4k"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 85,
+ "paths": [
+ "M426 640l214-214-34-34-180 182-132-134h108v-46h-188v188h46v-108zM726 448l170-170v468l-170-170v150q0 18-13 30t-31 12h-512q-18 0-30-12t-12-30v-428q0-18 12-30t30-12h512q18 0 31 12t13 30v150z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "missed_video_call"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 86,
+ "paths": [
+ "M384 512q0-52 38-90t90-38 90 38 38 90-38 90-90 38-90-38-38-90zM236 360l76 76-76 76 76 76-76 76-150-152zM360 788l76-76 76 76 76-76 76 76-152 150zM788 664l-76-76 76-76-76-76 76-76 150 152zM664 236l-76 76-76-76-76 76-76-76 152-150z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "control_camera"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 87,
+ "paths": [
+ "M768 640v86h-86v-86h86zM768 470v84h-86v-84h86zM854 810v-426h-342v86h86v84h-86v86h86v86h-86v84h342zM426 298v-84h-84v84h84zM426 470v-86h-84v86h84zM426 640v-86h-84v86h84zM426 810v-84h-84v84h84zM256 298v-84h-86v84h86zM256 470v-86h-86v86h86zM256 640v-86h-86v86h86zM256 810v-84h-86v84h86zM512 298h426v598h-852v-768h426v170z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "business",
+ "domain"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 88,
+ "paths": [
+ "M854 656q18 0 30 12t12 30v148q0 50-42 50-298 0-512-214t-214-512q0-42 50-42h148q18 0 30 12t12 30q0 78 24 150 8 26-10 44l-82 72q92 192 294 290l66-84q12-12 30-12 10 0 14 2 72 24 150 24z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "call"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 89,
+ "paths": [
+ "M512 384q-104 0-196 30v132q0 30-24 40-64 30-114 78-12 12-30 12t-30-12l-106-106q-12-12-12-30t12-30q210-200 500-200t500 200q12 12 12 30t-12 30l-106 106q-12 12-30 12t-30-12q-44-42-114-78-24-10-24-38v-132q-100-32-196-32z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "call_end"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 90,
+ "paths": [
+ "M384 214h426v426h-84v-282l-496 496-60-60 496-496h-282v-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "call_made"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 91,
+ "paths": [
+ "M320 342l192-192 192 192h-150v272l-256 256-60-60 232-230v-238h-150zM726 870l-146-144 60-60 146 144z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "call_merge",
+ "merge_type"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 92,
+ "paths": [
+ "M836 298l60 60-384 384-298-298v196h-86v-342h342v86h-196l238 238z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "call_missed"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 93,
+ "paths": [
+ "M854 230l-496 496h282v84h-426v-426h84v282l496-496z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "call_received"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 94,
+ "paths": [
+ "M426 170l-98 98 226 226v360h-84v-324l-202-202-98 98v-256h256zM598 170h256v256l-98-98-124 124-60-60 124-124z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "call_split"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 95,
+ "paths": [
+ "M768 342v-86h-512v86h512zM598 598v-86h-342v86h342zM256 384v86h512v-86h-512zM854 86q34 0 59 25t25 59v512q0 34-25 60t-59 26h-598l-170 170v-768q0-34 25-59t59-25h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chat"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 96,
+ "paths": [
+ "M298 298h598v86h-598v-86zM128 726v-86h598v86h-598zM214 554v-84h596v84h-596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "clear_all"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 97,
+ "paths": [
+ "M768 342v-86h-512v86h512zM768 470v-86h-512v86h512zM768 598v-86h-512v86h512zM938 170v768l-170-170h-598q-34 0-59-26t-25-60v-512q0-34 25-59t59-25h684q34 0 59 25t25 59z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "comment"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 98,
+ "paths": [
+ "M726 726v-64q0-48-73-78t-141-30-141 30-73 78v64h428zM512 288q-40 0-68 28t-28 68 28 68 68 28 68-28 28-68-28-68-68-28zM854 170q34 0 59 26t25 60v512q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-512q0-34 25-60t59-26h684zM170 1024v-86h684v86h-684zM854 0v86h-684v-86h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "contacts"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 99,
+ "paths": [
+ "M854 662q18 0 30 12t12 30v150q0 18-12 30t-30 12q-300 0-513-213t-213-513q0-18 12-30t30-12h150q18 0 30 12t12 30v2q0 82 24 150 8 26-10 44l-94 94q40 76 123 159t159 123l94-94q14-14 30-14 6 0 14 4 72 24 152 24zM854 214v-44h-44v44h44zM768 128h128v128h-86v86h-42v-214zM640 214v128h-128v-44h86v-42h-86v-128h128v42h-86v44h86zM726 128v214h-44v-214h44z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "dialer_sip"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 100,
+ "paths": [
+ "M512 42q34 0 60 26t26 60-26 60-60 26-60-26-26-60 26-60 60-26zM512 298q34 0 60 26t26 60-26 60-60 26-60-26-26-60 26-60 60-26zM768 298q34 0 60 26t26 60-26 60-60 26-60-26-26-60 26-60 60-26zM768 554q34 0 60 26t26 60-26 60-60 26-60-26-26-60 26-60 60-26zM512 554q34 0 60 26t26 60-26 60-60 26-60-26-26-60 26-60 60-26zM768 214q-34 0-60-26t-26-60 26-60 60-26 60 26 26 60-26 60-60 26zM256 554q34 0 60 26t26 60-26 60-60 26-60-26-26-60 26-60 60-26zM256 298q34 0 60 26t26 60-26 60-60 26-60-26-26-60 26-60 60-26zM256 42q34 0 60 26t26 60-26 60-60 26-60-26-26-60 26-60 60-26zM512 810q34 0 60 26t26 60-26 60-60 26-60-26-26-60 26-60 60-26z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "dialpad"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 101,
+ "paths": [
+ "M854 342v-86l-342 214-342-214v86l342 212zM854 170q34 0 59 26t25 60v512q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-512q0-34 25-60t59-26h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "email",
+ "mail",
+ "markunread",
+ "local_post_office"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 102,
+ "paths": [
+ "M726 512q0 18-13 30t-31 12h-426l-170 172v-598q0-18 12-30t30-12h554q18 0 31 12t13 30v384zM896 256q18 0 30 12t12 30v640l-170-170h-470q-18 0-30-12t-12-30v-86h554v-384h86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "forum",
+ "question_answer"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 103,
+ "paths": [
+ "M682 726h128l-170 170-170-170h128v-300h84v300zM384 128l170 170h-128v300h-84v-300h-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "import_export"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 104,
+ "paths": [
+ "M512 218l-98 96-60-60 158-158 242 242q76 76 94 183t-26 201l-310-308v-196zM512 836v-206l-204-204q-52 68-52 154 0 44 22 96t54 84q76 76 180 76zM882 890l14 16-54 54-116-116q-94 76-214 76-58 0-129-29t-113-71-71-112-29-128q0-50 22-114t54-102l-118-118 54-54q598 598 700 698z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "invert_colors_off"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 105,
+ "paths": [
+ "M642 438q40-40 40-96 0-70-50-121t-120-51-120 51-50 121h84q0-34 26-60t60-26 60 26 26 60-26 60l-52 54q-50 54-50 120v22h84q0-68 50-122zM554 768v-86h-84v86h84zM810 86q34 0 60 25t26 59v598q0 34-26 60t-60 26h-170l-128 128-128-128h-170q-36 0-61-25t-25-61v-598q0-36 25-60t61-24h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "live_help"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 106,
+ "paths": [
+ "M500 490q218 216 354 352l-54 54-144-142q-32 48-68 94t-56 68l-20 22q-12-14-32-37t-72-92-91-134-71-147-32-144q0-22 8-66l-136-136 54-54 356 356zM512 278q-46 0-78 36l-138-136q36-38 100-65t116-27q124 0 211 87t87 211q0 96-72 234l-154-156q34-30 34-78 0-44-31-75t-75-31z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "location_off"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 107,
+ "paths": [
+ "M512 490q44 0 75-31t31-75-31-75-75-31-75 31-31 75 31 75 75 31zM512 86q124 0 211 87t87 211q0 62-31 142t-75 150-87 131-73 97l-32 34q-12-14-32-37t-72-92-91-134-71-147-32-144q0-124 87-211t211-87z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "location_on",
+ "place",
+ "room"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 108,
+ "paths": [
+ "M768 342v-86h-512v86h512zM768 470v-86h-512v86h512zM768 598v-86h-512v86h512zM854 86q34 0 59 25t25 59v512q0 34-25 60t-59 26h-598l-170 170v-768q0-34 25-59t59-25h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "message"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 109,
+ "paths": [
+ "M854 86q34 0 59 25t25 59v512q0 34-25 60t-59 26h-598l-170 170v-768q0-34 25-59t59-25h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chat_bubble"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 110,
+ "paths": [
+ "M854 682v-512h-684v598l86-86h598zM854 86q34 0 59 25t25 59v512q0 34-25 60t-59 26h-598l-170 170v-768q0-34 25-59t59-25h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chat_bubble_outline"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 111,
+ "paths": [
+ "M156 166l746 744-56 56-80-82q-24 12-40 12h-428q-34 0-59-26t-25-60v-478l-112-112zM810 214v498l-484-484 100-100h300q34 0 59 26t25 60z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "no_sim",
+ "signal_cellular_no_sim"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 112,
+ "paths": [
+ "M282 460q96 186 282 282l94-94q20-20 44-10 72 24 152 24 18 0 30 12t12 30v150q0 18-12 30t-30 12q-300 0-513-213t-213-513q0-18 12-30t30-12h150q18 0 30 12t12 30q0 80 24 152 8 26-10 44z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "phone",
+ "local_phone"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 113,
+ "paths": [
+ "M140 106l42 44 714 714-54 54-320-322h-2l-8 2q-34 0-60-26t-26-60l2-8-68-68q-18 36-18 76 0 98 84 148l-42 74q-58-34-93-93t-35-129q0-76 40-138l-60-62q-66 92-66 200 0 92 46 171t124 125l-42 74q-98-56-155-155t-57-215q0-148 88-262l-88-90zM512 170q-86 0-160 40l-62-62q100-62 222-62 176 0 301 125t125 301q0 120-62 222l-64-62q42-78 42-160 0-140-101-241t-241-101zM750 608l-70-70q2-8 2-26 0-70-50-120t-120-50q-18 0-26 2l-70-70q44-18 96-18 106 0 181 75t75 181q0 52-18 96z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "portable_wifi_off"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 114,
+ "paths": [
+ "M762 598q-16-42-16-86t16-86h70l64-84-84-86q-36 28-71 78t-47 92-12 86 12 86 47 92 71 78l84-86-64-84h-70zM598 768v-42q0-58-88-95t-168-37-168 37-88 95v42h512zM342 256q-52 0-90 38t-38 90 38 90 90 38 90-38 38-90-38-90-90-38zM938 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-852q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h852z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "contact_phone"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 115,
+ "paths": [
+ "M938 512v-256h-340v256h340zM598 768v-42q0-58-88-95t-168-37-168 37-88 95v42h512zM342 256q-52 0-90 38t-38 90 38 90 90 38 90-38 38-90-38-90-90-38zM938 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-852q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h852zM896 342l-128 84-128-84v-44l128 86 128-86v44z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "contact_mail"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 116,
+ "paths": [
+ "M274 418q-148-148-152-150l60-62 152 152zM554 86v212h-84v-212h84zM902 268l-152 150-60-60 152-152zM1012 712q12 12 12 30t-12 30l-106 106q-12 12-30 12t-30-12q-56-52-114-80-24-10-24-38v-132q-92-30-196-30t-196 30v132q0 30-24 40-64 30-114 78-12 12-30 12t-30-12l-106-106q-12-12-12-30t12-30q210-200 500-200 120 0 266 59t234 141z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "ring_volume"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 117,
+ "paths": [
+ "M640 854v-342h-256v342h256zM634 428q20 0 34 14t14 34v414q0 20-14 34t-34 14h-244q-20 0-34-14t-14-34v-414q0-20 14-35t34-15zM512 42q80 0 176 40t154 98l-60 60q-112-112-270-112t-270 112l-60-60q138-138 330-138zM298 302q88-88 214-88t214 88l-62 60q-62-62-152-62t-152 62z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "speaker_phone"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 118,
+ "paths": [
+ "M810 298h-596v428h596v-428zM44 298q0-34 25-59t59-25h768q34 0 60 25t26 59v428q0 34-26 59t-60 25h-768q-34 0-60-25t-26-59z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "stay_current_landscape",
+ "stay_primary_landscape"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 119,
+ "paths": [
+ "M726 810v-596h-428v596h428zM726 44q34 0 59 25t25 59v768q0 34-25 60t-59 26h-428q-34 0-59-26t-25-60v-768q0-34 25-60t59-26z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "stay_current_portrait",
+ "stay_primary_portrait",
+ "smartphone"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 120,
+ "paths": [
+ "M768 170l170 172h-128v298q0 70-50 120t-120 50-120-50-50-120v-298q0-34-26-60t-60-26-60 26-26 60v298h128l-170 170-170-170h128v-298q0-70 50-121t120-51 120 51 50 121v298q0 34 26 60t60 26 60-26 26-60v-298h-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "swap_calls"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 121,
+ "paths": [
+ "M726 470v-86h-86v86h86zM554 470v-86h-84v86h84zM384 470v-86h-86v86h86zM854 86q34 0 59 25t25 59v512q0 34-25 60t-59 26h-598l-170 170v-768q0-34 25-59t59-25h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "textsms",
+ "sms"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 122,
+ "paths": [
+ "M790 640q62 0 105-44t43-106-43-105-105-43-106 43-44 105 44 106 106 44zM234 640q62 0 106-44t44-106-44-105-106-43-105 43-43 105 43 106 105 44zM790 256q98 0 166 68t68 166-68 167-166 69h-556q-98 0-166-69t-68-167 68-166 166-68 167 68 69 166q0 86-54 150h192q-54-64-54-150 0-98 69-166t167-68z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "voicemail"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 123,
+ "paths": [
+ "M298 598q34 0 60-26t26-60-26-60-60-26-59 26-25 60 25 60 59 26zM540 426h442v172h-86v170h-170v-170h-186q-26 70-97 120t-145 50q-106 0-181-75t-75-181 75-181 181-75q74 0 145 50t97 120z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "vpn_key"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 124,
+ "paths": [
+ "M810 42q34 0 60 26t26 60v768q0 34-26 60t-60 26h-426q-34 0-60-26t-26-60v-128h86v86h426v-684h-426v86h-86v-128q0-34 26-60t60-26h426zM554 350l-170 170 170 172-42 42-170-170-172 170-42-42 170-172-170-170 42-42 172 170 170-170z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "phonelink_erase"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 125,
+ "paths": [
+ "M406 470v-64q0-24-19-40t-45-16-45 16-19 40v64h128zM460 470q20 0 36 16t16 38v150q0 20-17 36t-39 16h-234q-20 0-36-17t-16-39v-150q0-20 16-35t36-15v-64q0-44 37-76t83-32 82 32 36 76v64zM810 42q34 0 60 26t26 60v768q0 34-26 60t-60 26h-426q-34 0-60-26t-26-60v-128h86v86h426v-684h-426v86h-86v-128q0-34 26-60t60-26h426z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "phonelink_lock"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 126,
+ "paths": [
+ "M598 854v-684h-428v684h428zM598 42q34 0 59 26t25 60v768q0 34-25 60t-59 26h-428q-34 0-59-26t-25-60v-768q0-34 25-60t59-26h428zM768 418q40 42 40 94t-40 90l-42-44q36-50 0-98zM858 328q80 76 80 183t-80 181l-44-44q58-62 58-141t-58-135z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "phonelink_ring"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 127,
+ "paths": [
+ "M768 44q34 0 60 25t26 59v768q0 34-26 60t-60 26h-426q-34 0-60-26t-26-60v-128h86v42h426v-596h-426v42h-86v-128q0-34 26-60t60-26zM298 586q32 0 55-21t23-53-23-53-55-21-54 21-22 53 22 53 54 21zM462 532l46 36q8 8 4 14l-44 74q-4 8-14 4l-54-20q-16 10-38 20l-8 56q0 10-10 10h-88q-12 0-12-10l-8-56q-22-10-38-20l-54 20q-10 4-14-4l-42-74q-2-2-1-7t3-7l46-36q0-2-1-9t-1-11 1-10 1-10l-46-36q-6-6-4-14l44-74q4-8 14-4l54 20q16-10 38-20l8-56q0-10 10-10h88q10 0 10 10l10 56q8 4 36 22l56-22q8-4 12 4l44 74q2 2 1 7t-3 7l-46 36q0 2 1 9t1 11-1 11-1 9z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "phonelink_setup"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 128,
+ "paths": [
+ "M426 512h-84l170-170 170 170h-84v170h-172v-170zM896 812v-600h-768v600h768zM896 128q36 0 61 25t25 61v596q0 36-25 61t-61 25h-768q-36 0-61-25t-25-61v-596q0-36 25-61t61-25h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "present_to_all"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 129,
+ "paths": [
+ "M896 790v-492q-66-20-150-20-130 0-234 64v490q104-64 234-64 78 0 150 22zM746 192q152 0 236 64v622q0 8-7 15t-15 7q-6 0-10-2-82-44-204-44-130 0-234 64-86-64-234-64-108 0-204 46-2 0-5 1t-5 1q-8 0-15-6t-7-14v-626q86-64 236-64 148 0 234 64 86-64 234-64z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "import_contacts"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 130,
+ "paths": [
+ "M512 470l342-214h-684zM854 768v-426l-342 212-342-212v426h684zM854 170q34 0 59 26t25 60v512q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-512q0-34 25-60t59-26h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mail_outline"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 131,
+ "paths": [
+ "M554 618l172-160-172-160v92q-210 30-256 250 86-116 256-116v94zM854 768h170v86h-1024v-86h170q-36 0-60-25t-24-61v-426q0-36 24-61t60-25h684q36 0 60 25t24 61v426q0 34-25 60t-59 26z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "screen_share"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 132,
+ "paths": [
+ "M298 640q58-80 156-104l-68-68q-64 62-88 172zM102 74l842 842-54 54-116-116h-774v-86h170q-36 0-60-24t-24-60v-428q0-38 28-62l-66-66zM938 684q0 50-44 74l-236-236 68-64-172-158v90q-4 2-11 2t-11 2l-224-222h546q36 0 60 24t24 60v428zM906 768h118v86h-34z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "stop_screen_share"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 133,
+ "paths": [
+ "M128 358l60-60 324 324 238-238h-196v-86h342v342h-86v-196l-298 298z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "call_missed_outgoing"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 134,
+ "paths": [
+ "M170 430q176 0 300 124t124 300h-122q0-124-89-213t-213-89v-122zM170 190q274 0 469 195t195 469h-120q0-226-159-385t-385-159v-120zM170 760q0-38 27-65t67-27 66 26 26 66-27 67-65 27q-40 0-67-27t-27-67z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "rss_feed"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 135,
+ "paths": [
+ "M512 640q52 0 90-38t38-90-38-90-90-38-90 38-38 90 38 90 90 38zM512 86q176 0 301 125t125 301v62q0 64-43 108t-105 44q-78 0-126-64-64 64-152 64t-151-63-63-151 63-151 151-63 151 63 63 151v62q0 26 19 46t45 20 45-20 19-46v-62q0-140-101-241t-241-101-241 101-101 241 101 241 241 101h214v84h-214q-176 0-301-125t-125-301 125-301 301-125z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "alternate_email"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 136,
+ "paths": [
+ "M546 564q-134 0-204 94 40-180 204-202v-72l136 128-136 126v-74zM726 810v-596h-428v596h428zM726 44q34 0 59 25t25 59v768q0 34-25 60t-59 26h-428q-34 0-59-26t-25-60v-768q0-34 25-60t59-26z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mobile_screen_share"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 137,
+ "paths": [
+ "M896 256v86h-128v128h-86v-128h-128v-86h128v-128h86v128h128zM854 662q18 0 30 12t12 30v150q0 18-12 30t-30 12q-300 0-513-213t-213-513q0-18 12-30t30-12h150q18 0 30 12t12 30q0 80 24 152 8 26-10 44l-94 94q94 184 282 282l94-94q18-18 44-10 72 24 152 24z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "add_call"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 138,
+ "paths": [
+ "M622 342l60 60-110 110 110 110-60 60-110-110-110 110-60-60 110-110-110-110 60-60 110 110zM896 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h768zM896 814v-600h-768v600h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cancel_presentation"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 139,
+ "paths": [
+ "M554 342h86v340h-86v-340zM384 342h86v340h-86v-340zM896 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h768zM896 814v-600h-768v600h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pause_presentation"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 140,
+ "paths": [
+ "M512 448l298-150v-84l-298 148-298-148v84zM578 726h-364q-34 0-60-26t-26-60v-426q0-34 26-60t60-26h596q34 0 60 26t26 60v306q-54-30-106-30-88 0-151 63t-63 151q0 4 1 11t1 11zM874 726v-44h-170v44h170zM790 554q62 0 105 44t43 106-43 106-105 44-106-44-44-106 44-106 106-44z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "unsubscribe"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 141,
+ "paths": [
+ "M278 362q32-32 89-55t103-23 103 23 89 55l-56 56q-58-58-138-58t-136 58zM386 472q34-34 84-34 48 0 82 34l-82 82zM168 254q124-124 302-124t302 124l-56 54q-102-102-247-102t-247 102zM938 938h-682l682-682v682z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cell_wifi"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 142,
+ "paths": [
+ "M512 746q-74 0-133-41t-85-107h70q50 84 148 84t148-84h70q-26 66-85 107t-133 41zM512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125zM362 470q-26 0-45-19t-19-45 19-45 45-19 45 19 19 45-19 45-45 19zM662 470q-26 0-45-19t-19-45 19-45 45-19 45 19 19 45-19 45-45 19z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sentiment_satisfied_alt"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 143,
+ "paths": [
+ "M298 640h86v86h-86v-86zM298 470h86v84h-86v-84zM298 298h86v86h-86v-86zM470 640h256v86h-256v-86zM470 470h256v84h-256v-84zM470 298h256v86h-256v-86zM858 128q14 0 26 11t12 27v692q0 14-12 26t-26 12h-692q-16 0-27-12t-11-26v-692q0-38 38-38h692zM810 214h-596v596h596v-596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "list_alt"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 144,
+ "paths": [
+ "M512 810h170l-84-84h-86v84zM426 640v-86h-84v86h84zM426 810v-84h-84v84h84zM256 470v-86h-86v86h86zM256 640v-86h-86v86h86zM256 810v-84h-86v84h86zM56 76l896 892-56 56-128-128h-682v-682l-82-82zM682 470h86v84h-86v-84zM342 214v38l-124-124h294v170h426v552l-84-86v-380h-342v38l-124-124h38v-84h-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "domain_disabled"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 145,
+ "paths": [
+ "M512 86q124 0 211 87t87 211q0 150-128 244v98q0 18-12 30t-30 12h-256q-18 0-30-12t-12-30v-98q-128-88-128-244 0-124 87-211t211-87zM384 896v-42h256v42q0 18-12 30t-30 12h-172q-18 0-30-12t-12-30z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "lightbulb"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 146,
+ "paths": [
+ "M810 554h-256v256h-84v-256h-256v-84h256v-256h84v256h256v84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "add"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 147,
+ "paths": [
+ "M726 554v-84h-172v-172h-84v172h-172v84h172v172h84v-172h172zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-36 0-61-25t-25-61v-596q0-36 25-61t61-25h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "add_box"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 148,
+ "paths": [
+ "M726 554v-84h-172v-172h-84v172h-172v84h172v172h84v-172h172zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "add_circle"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 149,
+ "paths": [
+ "M512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125zM554 298v172h172v84h-172v172h-84v-172h-172v-84h172v-172h84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "add_circle_outline",
+ "control_point"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 150,
+ "paths": [
+ "M218 214h588l-40-44h-512zM512 746l234-234h-148v-86h-172v86h-148zM876 224q20 24 20 54v532q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-532q0-30 20-54l58-72q20-24 50-24h512q30 0 50 24z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "archive"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 151,
+ "paths": [
+ "M810 666l-152-154 152-154-60-60-152 154-154-154-60 60 154 154-154 154 60 60 154-154 152 154zM938 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-640q-40 0-68-38l-230-346 230-346q28-38 68-38h640z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "backspace"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 152,
+ "paths": [
+ "M512 854q140 0 241-101t101-241q0-48-21-110t-51-100l-480 480q90 72 210 72zM170 512q0 48 21 110t51 100l480-480q-90-72-210-72-140 0-241 101t-101 241zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "block"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 153,
+ "paths": [
+ "M810 274l-238 238 238 238-60 60-238-238-238 238-60-60 238-238-238-238 60-60 238 238 238-238z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "clear",
+ "close"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 154,
+ "paths": [
+ "M810 896v-598h-468v598h468zM810 214q34 0 60 25t26 59v598q0 34-26 60t-60 26h-468q-34 0-60-26t-26-60v-598q0-34 26-59t60-25h468zM682 42v86h-512v598h-84v-598q0-34 25-60t59-26h512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "content_copy"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 155,
+ "paths": [
+ "M810 128h128v42l-298 300-86-86zM512 534q22 0 22-22t-22-22-22 22 22 22zM256 854q34 0 60-25t26-61-26-61-60-25-60 25-26 61 26 61 60 25zM256 342q34 0 60-25t26-61-26-61-60-25-60 25-26 61 26 61 60 25zM412 326l526 528v42h-128l-298-298-100 100q14 30 14 70 0 70-50 120t-120 50-120-50-50-120 50-120 120-50q40 0 70 14l100-100-100-100q-30 14-70 14-70 0-120-50t-50-120 50-120 120-50 120 50 50 120q0 40-14 70z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "content_cut"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 156,
+ "paths": [
+ "M810 854v-684h-84v128h-428v-128h-84v684h596zM512 86q-18 0-30 12t-12 30 12 30 30 12 30-12 12-30-12-30-30-12zM810 86q34 0 60 25t26 59v684q0 34-26 59t-60 25h-596q-34 0-60-25t-26-59v-684q0-34 26-59t60-25h178q14-38 46-62t74-24 74 24 46 62h178z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "content_paste"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 157,
+ "paths": [
+ "M884 300l-78 78-160-160 78-78q12-12 30-12t30 12l100 100q12 12 12 30t-12 30zM128 736l472-472 160 160-472 472h-160v-160z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "create",
+ "mode_edit",
+ "edit"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 158,
+ "paths": [
+ "M512 554l352-220-352-206-352 206zM938 342v426q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-426q0-50 40-74l386-226 386 226q40 24 40 74z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "drafts"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 159,
+ "paths": [
+ "M256 554v-84h512v84h-512zM128 256h768v86h-768v-86zM426 768v-86h172v86h-172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "filter_list"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 160,
+ "paths": [
+ "M614 256h240v426h-300l-16-84h-240v298h-84v-726h384z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "flag",
+ "assistant_photo"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 161,
+ "paths": [
+ "M512 342v-172l342 342-342 342v-172h-342v-340h342z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "forward"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 162,
+ "paths": [
+ "M592 792q28 0 56-37t36-113q-60 16-92 54t-32 64q0 14 10 23t22 9zM196 294l-74-72q20-24 36-40 54-54 116-54 38 0 73 30t35 92q0 60-56 140-56 78-78 150-12 34-7 58t21 24q18 0 48-36 44-44 98-116 96-120 210-120 84 0 125 55t47 123h106v106h-104q-12 138-74 200t-128 62q-56 0-96-39t-40-93q0-66 60-138t170-92q-2-16-3-22t-6-19-12-19-21-11-34-5q-56 0-174 146-34 42-47 57t-37 35-46 26q-70 22-120-26t-50-120q0-30 11-66t29-70 34-61 31-49 17-24q34-56 12-64-14-6-72 52z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "gesture"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 163,
+ "paths": [
+ "M810 640v-426h-598v426h172q0 52 38 90t90 38 90-38 38-90h170zM810 128q36 0 61 25t25 61v596q0 34-26 60t-60 26h-598q-36 0-60-25t-24-61v-596q0-36 24-61t60-25h598z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "inbox"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 164,
+ "paths": [
+ "M726 298q88 0 150 63t62 151-62 151-150 63h-172v-82h172q54 0 93-39t39-93-39-93-93-39h-172v-82h172zM342 554v-84h340v84h-340zM166 512q0 54 39 93t93 39h172v82h-172q-88 0-150-63t-62-151 62-151 150-63h172v82h-172q-54 0-93 39t-39 93z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "link",
+ "insert_link"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 165,
+ "paths": [
+ "M786 452l152-154v384h-384l156-154q-96-80-220-80-102 0-197 68t-127 166l-100-32q44-136 161-222t263-86q170 0 296 110z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "redo"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 166,
+ "paths": [
+ "M810 554h-596v-84h596v84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "remove"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 167,
+ "paths": [
+ "M726 554v-84h-428v84h428zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "remove_circle",
+ "do_not_disturb_on"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 168,
+ "paths": [
+ "M512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125zM298 470h428v84h-428v-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "remove_circle_outline"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 169,
+ "paths": [
+ "M426 384q208 30 321 159t149 311q-154-218-470-218v174l-298-298 298-298v170z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "reply"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 170,
+ "paths": [
+ "M554 384q208 30 321 159t149 311q-154-218-470-218v174l-298-298 298-298v170zM298 342l-170 170 170 170v128l-298-298 298-298v128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "reply_all"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 171,
+ "paths": [
+ "M554 554v-256h-84v256h84zM512 738q22 0 39-17t17-39-17-38-39-16-39 16-17 38 17 39 39 17zM672 128l224 224v320l-224 224h-320l-224-224v-320l224-224h320z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "report"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 172,
+ "paths": [
+ "M640 384v-170h-426v170h426zM512 810q52 0 90-38t38-90-38-90-90-38-90 38-38 90 38 90 90 38zM726 128l170 170v512q0 34-26 60t-60 26h-596q-36 0-61-25t-25-61v-596q0-36 25-61t61-25h512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "save"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 173,
+ "paths": [
+ "M384 384v256h256v-256h-256zM298 726v-428h428v428h-428zM640 214v-86h86v86h-86zM640 896v-86h86v86h-86zM810 726v-86h86v86h-86zM810 384v-86h86v86h-86zM810 896v-86h86q0 34-26 60t-60 26zM810 554v-84h86v84h-86zM470 896v-86h84v86h-84zM384 128v86h-86v-86h86zM128 726v-86h86v86h-86zM214 896q-34 0-60-26t-26-60h86v86zM810 128q34 0 60 26t26 60h-86v-86zM554 128v86h-84v-86h84zM128 384v-86h86v86h-86zM298 896v-86h86v86h-86zM128 554v-84h86v84h-86zM128 214q0-34 26-60t60-26v86h-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "select_all"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 174,
+ "paths": [
+ "M86 896v-298l640-86-640-86v-298l896 384z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "send"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 175,
+ "paths": [
+ "M128 554v-84h512v84h-512zM128 256h768v86h-768v-86zM128 768v-86h256v86h-256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sort"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 176,
+ "paths": [
+ "M512 256l-80 214h160zM406 546l-40 94h-88l202-470h64l202 470h-88l-40-94h-212zM214 726h596v84h-596v-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "text_format"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 177,
+ "paths": [
+ "M534 342q146 0 262 86t162 222l-100 32q-34-104-123-169t-201-65q-124 0-220 80l156 154h-384v-384l152 154q126-110 296-110z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "undo"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 178,
+ "paths": [
+ "M680 790h90l-218-556h-80l-218 556h90l48-128h240zM854 86q34 0 59 25t25 59v684q0 34-25 59t-59 25h-684q-34 0-59-25t-25-59v-684q0-34 25-59t59-25h684zM424 576l88-236 88 236h-176z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "font_download"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 179,
+ "paths": [
+ "M682 426l-170 172-170-172h84v-128h172v128h84zM810 640v-426h-598v426h172q0 52 38 90t90 38 90-38 38-90h170zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-598q-36 0-60-25t-24-61v-596q0-36 24-61t60-25h598z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "move_to_inbox"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 180,
+ "paths": [
+ "M218 214h588l-40-44h-512zM512 406l-234 234h148v86h172v-86h148zM876 222q20 24 20 56v532q0 34-26 60t-60 26h-596q-36 0-61-25t-25-61v-532q0-32 20-56l58-70q20-24 50-24h512q30 0 50 24z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "unarchive"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 181,
+ "paths": [
+ "M470 790l170-172-170-170-44 42 128 128-128 128zM426 214v84h172v-84h-172zM598 128q34 0 59 25t25 61v84h172q34 0 59 26t25 60v470q0 34-25 59t-59 25h-684q-34 0-59-25t-25-59v-470q0-34 25-60t59-26h172v-84q0-34 25-60t59-26h172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "next_week"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 182,
+ "paths": [
+ "M768 214q34 0 60 25t26 59v92q-38 14-62 46t-24 74v88h-512v-88q0-42-24-74t-62-46v-92q0-34 26-59t60-25h512zM896 426q34 0 60 26t26 60v214q0 34-26 59t-60 25h-768q-34 0-60-25t-26-59v-214q0-34 26-60t60-26 60 26 26 60v128h596v-128q0-34 26-60t60-26z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "weekend"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 183,
+ "paths": [
+ "M598 214v84h-512v-84h128l42-44h170l44 44h128zM128 768v-426h426v426q0 34-25 60t-59 26h-256q-34 0-60-26t-26-60zM640 512h256v86h-256v-86zM640 342h298v84h-298v-84zM640 682h170v86h-170v-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "delete_sweep"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 184,
+ "paths": [
+ "M86 490q0-114 81-195t195-81h150v84h-150q-80 0-136 56t-56 136 56 136 136 56h22v-84l128 128-128 128v-86h-22q-114 0-195-82t-81-196zM598 682h340v86h-340v-86zM598 448h340v86h-340v-86zM598 214h340v84h-340v-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "low_priority"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 185,
+ "paths": [
+ "M768 598v-256h-214l-42-86h-214v256h256l44 86h170zM598 256h256v426h-300l-42-84h-214v298h-84v-726h340z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "outlined_flag"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 186,
+ "paths": [
+ "M86 182l54-54 714 714-54 54-172-170h-74v-74l-96-98h-116v-84h30l-88-88q-50 6-84 43t-34 87q0 54 39 93t93 39h172v82h-172q-88 0-150-63t-62-151q0-60 38-118t94-80zM682 470v84h-8l-84-84h92zM726 298q88 0 150 63t62 151q0 130-116 190l-62-62q42-10 70-46t28-82q0-54-39-93t-93-39h-172v-82h172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "link_off"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 187,
+ "paths": [
+ "M512 738q22 0 39-17t17-39-17-38-39-16-39 16-17 38 17 39 39 17zM950 928l-54 54-154-156-70 70h-320l-224-224v-320l70-70-156-154 54-54zM470 298v40l-164-164 46-46h320l224 224v320l-46 46-296-294v-126h-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "report_off"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 188,
+ "paths": [
+ "M554 540l112-110 60 60-214 214-214-214 60-60 112 110v-412h84v412zM810 512h86v298q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-298h86v298h596v-298z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "save_alt"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 189,
+ "paths": [
+ "M298 598h128v128h-128v-128zM256 768h214v-214h-214v214zM298 298h128v128h-128v-128zM256 470h214v-214h-214v214zM810 896h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596q34 0 60 26t26 60v596q0 34-26 60t-60 26zM554 704h214v-86h-214v86zM554 406h214v-86h-214v86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "ballot"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 190,
+ "paths": [
+ "M598 512h234l-234-234v234zM640 214l256 256v426q0 34-26 60t-60 26h-470q-34 0-59-26t-25-60v-598q0-34 26-59t60-25h298zM682 42v86h-512v598h-84v-598q0-34 25-60t59-26h512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file_copy"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 191,
+ "paths": [
+ "M660 874l-148-148 60-60 88 88 218-220 60 60zM470 512q-70 0-121-50t-51-120 51-121 121-51 120 51 50 121-50 120-120 50zM384 726l128 128h-384v-86q0-76 117-123t225-47q30 0 42 2z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "how_to_reg"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 192,
+ "paths": [
+ "M544 98q12-12 30-12 22 0 30 12l212 212q12 12 12 30t-12 30l-272 270q-12 12-30 12t-30-12l-212-210q-12-12-12-30t12-30zM726 340l-152-152-210 212 150 150zM768 554l128 128v172q0 36-25 60t-61 24h-598q-34 0-59-25t-25-59v-172l128-128h36l84 86h-86l-76 86h596l-74-86h-82l84-86h30z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "how_to_vote"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 193,
+ "paths": [
+ "M726 346q58 0 126 34 48 24 86 24v84q-58 0-126-34-52-26-86-26-36 0-88 26-68 34-126 34t-126-34q-52-26-88-26-34 0-86 26-68 34-126 34v-84q38 0 86-24 68-34 126-34t126 34q48 24 88 24t88-24q68-34 126-34zM852 190q52 26 86 26v82q-58 0-126-34-52-26-86-26-36 0-88 26-68 34-126 34t-126-34q-52-26-88-26-34 0-86 26-68 34-126 34v-82q34 0 86-26 68-34 126-34t126 34q52 26 88 26t88-26q68-34 126-34t126 34zM726 536q58 0 126 34 48 24 86 24v84q-58 0-126-34-52-26-86-26-36 0-88 26-68 34-126 34t-126-34q-52-26-88-26-34 0-86 26-68 34-126 34v-84q38 0 86-24 68-34 126-34t126 34q48 24 88 24t88-24q68-34 126-34zM726 724q54 0 126 36 48 24 86 24v84q-58 0-126-34-52-26-86-26-36 0-88 26-68 34-126 34t-126-34q-52-26-88-26-34 0-86 26-68 34-126 34v-84q38 0 86-24 72-36 126-36t126 36q48 24 88 24t88-24q72-36 126-36z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "waves"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 194,
+ "paths": [
+ "M446 598l280-282-60-60-220 222-88-90-60 60zM512 86q124 0 211 87t87 211q0 62-31 142t-75 150-87 131-73 97l-32 34q-12-14-32-37t-72-92-91-134-71-147-32-144q0-124 87-211t211-87z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "where_to_vote"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 195,
+ "paths": [
+ "M810 512v128h128v86h-128v128h-84v-128h-128v-86h128v-128h84zM166 512q0 54 39 93t93 39h172v82h-172q-88 0-150-63t-62-151 62-151 150-63h172v82h-172q-54 0-93 39t-39 93zM858 512q0-54-39-93t-93-39h-172v-82h172q88 0 150 63t62 151h-80zM342 470h340v84h-340v-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "add_link"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 196,
+ "paths": [
+ "M854 298v-128h-684v128h684zM640 598v-86h-256v86h256zM854 86q32 0 58 25t26 59v130q0 48-42 72v482q0 34-28 59t-58 25h-596q-30 0-58-25t-28-59v-482q-42-24-42-72v-130q0-34 26-59t58-25h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "inventory"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 197,
+ "paths": [
+ "M512 854q124 0 211-88t87-212-87-211-211-87-211 87-87 211 87 212 211 88zM512 170q160 0 272 113t112 271-112 271-272 113-272-113-112-271 112-271 272-113zM534 342v224l170 100-32 52-202-120v-256h64zM336 144l-196 164-54-64 196-164zM938 244l-54 66-196-166 54-64z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "access_alarm",
+ "alarm"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 198,
+ "paths": [
+ "M512 854q124 0 211-88t87-212-87-211-211-87-211 87-87 211 87 212 211 88zM512 170q160 0 272 112t112 272-112 272-272 112-272-112-112-272 112-272 272-112zM534 342v226l170 102-34 52-200-124v-256h64zM338 146l-198 162-54-64 196-162zM938 244l-54 64-198-168 56-64z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "access_alarms"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 199,
+ "paths": [
+ "M534 298v224l192 114-32 54-224-136v-256h64zM512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "access_time",
+ "query_builder",
+ "schedule"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 200,
+ "paths": [
+ "M554 384v128h128v86h-128v128h-84v-128h-128v-86h128v-128h84zM512 854q124 0 211-88t87-212-87-211-211-87-211 87-87 211 87 212 211 88zM512 170q160 0 272 113t112 271-112 271-272 113-272-113-112-271 112-271 272-113zM938 244l-54 66-196-166 54-64zM336 144l-196 164-54-64 196-164z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "add_alarm",
+ "alarm_add"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 201,
+ "paths": [
+ "M128 224l54-54 672 672-54 54-246-244v158l86 64v64l-150-42-148 42v-64l84-64v-234l-340 106v-84l254-160zM554 384l342 214v84l-136-42-334-334v-156q0-26 19-45t45-19 45 19 19 45v234z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "airplanemode_inactive"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 202,
+ "paths": [
+ "M896 682l-342-106v234l86 64v64l-150-42-148 42v-64l84-64v-234l-340 106v-84l340-214v-234q0-26 19-45t45-19 45 19 19 45v234l342 214v84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "airplanemode_active",
+ "flight",
+ "local_airport"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 203,
+ "paths": [
+ "M554 598v-214h-84v214h84zM554 768v-86h-84v86h84zM668 170q24 0 41 17t17 41v654q0 24-17 40t-41 16h-312q-24 0-41-16t-17-40v-654q0-24 17-41t41-17h70v-84h172v84h70z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "battery_alert"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 204,
+ "paths": [
+ "M470 854l170-320h-86v-236l-170 320h86v236zM668 170q24 0 41 17t17 41v654q0 24-17 40t-41 16h-312q-24 0-41-16t-17-40v-654q0-24 17-41t41-17h70v-84h172v84h70z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "battery_charging_full"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 205,
+ "paths": [
+ "M668 170q24 0 41 17t17 41v654q0 24-17 40t-41 16h-312q-24 0-41-16t-17-40v-654q0-24 17-41t41-17h70v-84h172v84h70z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "battery_full",
+ "battery_std"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 206,
+ "paths": [
+ "M610 542q30-30 30-72 0-52-38-90t-90-38-90 38-38 90h64q0-26 18-45t46-19 46 19 18 45-18 44l-40 40q-40 40-40 86h68q0-32 36-68zM552 766v-82h-80v82h80zM668 170q24 0 41 17t17 41v654q0 24-17 40t-41 16h-312q-24 0-41-16t-17-40v-654q0-24 17-41t41-17h70v-84h172v84h70z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "battery_unknown"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 207,
+ "paths": [
+ "M634 696l-80-82v162zM554 248v162l80-82zM756 328l-184 184 184 184-244 242h-42v-324l-196 196-60-60 238-238-238-238 60-60 196 196v-324h42z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bluetooth"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 208,
+ "paths": [
+ "M810 426l86 86-86 86-84-86zM634 696l-80-82v162zM554 248v162l80-82zM756 328l-184 184 184 184-244 242h-42v-324l-196 196-60-60 238-238-238-238 60-60 196 196v-324h42zM298 512l-84 86-86-86 86-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bluetooth_connected"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 209,
+ "paths": [
+ "M554 776l80-80-80-82v162zM230 170l624 624-60 60-98-98-184 182h-42v-324l-196 196-60-60 238-238-282-282zM554 248v138l-84-86v-214h42l244 242-130 130-60-60 68-70z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bluetooth_disabled"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 210,
+ "paths": [
+ "M550 696l-80-82v162zM470 248v162l80-82zM670 328l-184 184 184 184-244 242h-42v-324l-196 196-60-60 238-238-238-238 60-60 196 196v-324h42zM834 286q62 100 62 222 0 120-66 226l-50-50q42-84 42-172t-42-172zM608 512l98-98q20 50 20 98 0 50-20 100z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bluetooth_searching",
+ "bluetooth_audio"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 211,
+ "paths": [
+ "M610 682h82l-138-384h-84l-138 384h82l30-84h136zM854 370l140 142-140 142v200h-200l-142 140-142-140h-200v-200l-140-142 140-142v-200h200l142-140 142 140h200v200zM462 540l50-156 50 156h-100z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "brightness_auto"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 212,
+ "paths": [
+ "M512 342q70 0 120 50t50 120-50 120-120 50-120-50-50-120 50-120 120-50zM512 768q106 0 181-75t75-181-75-181-181-75-181 75-75 181 75 181 181 75zM854 370l140 142-140 142v200h-200l-142 140-142-140h-200v-200l-140-142 140-142v-200h200l142-140 142 140h200v200z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "brightness_high",
+ "brightness_7"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 213,
+ "paths": [
+ "M512 768q106 0 181-75t75-181-75-181-181-75-181 75-75 181 75 181 181 75zM854 654v200h-200l-142 140-142-140h-200v-200l-140-142 140-142v-200h200l142-140 142 140h200v200l140 142z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "brightness_low",
+ "brightness_5"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 214,
+ "paths": [
+ "M512 768q106 0 181-75t75-181-75-181-181-75v512zM854 654v200h-200l-142 140-142-140h-200v-200l-140-142 140-142v-200h200l142-140 142 140h200v200l140 142z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "brightness_medium",
+ "brightness_6"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 215,
+ "paths": [
+ "M512 810q58 0 126-33t106-79l112 66q-128 174-344 174-176 0-301-125t-125-301q0-166 111-287t273-137v128q-108 16-182 100t-74 196q0 124 87 211t211 87zM554 88q162 16 273 137t111 287q0 96-36 174l-112-66q20-56 20-108 0-112-74-196t-182-100v-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "data_usage"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 216,
+ "paths": [
+ "M726 810v-84h84v170q0 34-25 60t-59 26h-428q-34 0-59-26t-25-60v-170h84v84h428zM426 648l-60 60-196-196 196-196 60 60-134 136zM658 708l-60-60 134-136-134-136 60-60 196 196zM298 214v84h-84v-170q0-34 25-60t59-26l428 2q34 0 59 25t25 59v170h-84v-84h-428z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "developer_mode"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 217,
+ "paths": [
+ "M938 726v-300h-170v300h170zM982 342q18 0 30 12t12 30v426q0 18-12 31t-30 13h-256q-18 0-31-13t-13-31v-426q0-18 13-30t31-12h256zM170 256v470h428v128h-598v-128h86v-470q0-34 25-60t59-26h768v86h-768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "devices",
+ "phonelink"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 218,
+ "paths": [
+ "M298 512v86h-84v-86h84zM298 342v84h-84v-84h84zM810 512v86h-468v-86h468zM810 342v84h-468v-84h468zM896 726v-512h-768v512h768zM896 128q34 0 60 26t26 60l-2 512q0 34-25 59t-59 25h-214v86h-340v-86h-214q-34 0-60-25t-26-59v-512q0-34 26-60t60-26h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "dvr"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 219,
+ "paths": [
+ "M512 810q124 0 211-87t87-211-87-211-211-87-211 87-87 211 87 211 211 87zM894 470h88v84h-88q-14 126-114 226t-226 114v88h-84v-88q-126-14-226-114t-114-226h-88v-84h88q14-126 114-226t226-114v-88h84v88q126 14 226 114t114 226zM512 342q70 0 120 50t50 120-50 120-120 50-120-50-50-120 50-120 120-50z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "gps_fixed",
+ "my_location"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 220,
+ "paths": [
+ "M512 810q124 0 211-87t87-211-87-211-211-87-211 87-87 211 87 211 211 87zM894 470h88v84h-88q-14 126-114 226t-226 114v88h-84v-88q-126-14-226-114t-114-226h-88v-84h88q14-126 114-226t226-114v-88h84v88q126 14 226 114t114 226z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "gps_not_fixed",
+ "location_searching"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 221,
+ "paths": [
+ "M694 748l-418-418q-26 34-44 87t-18 95q0 124 87 211t211 87q42 0 95-18t87-44zM128 182l54-54 714 714-54 54-88-88q-90 74-200 86v88h-84v-88q-126-14-226-114t-114-226h-88v-84h88q4-46 30-105t56-95zM894 470h88v84h-88q-10 78-42 136l-64-64q22-54 22-114 0-124-87-211t-211-87q-60 0-114 22l-64-64q62-32 136-42v-88h84v88q126 14 226 114t114 226z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "gps_off",
+ "location_disabled"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 222,
+ "paths": [
+ "M810 426h86v172h-86v-172zM640 768v-512h86v512h-86zM128 598v-172h86v172h-86zM470 938v-852h84v852h-84zM298 768v-512h86v512h-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "graphic_eq"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 223,
+ "paths": [
+ "M938 938h-852l852-852v852z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "network_cell"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 224,
+ "paths": [
+ "M872 466l2 2-362 448-362-448 2-2-136-168q242-170 496-170t496 170z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "network_wifi"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 225,
+ "paths": [
+ "M768 256v512h-512v-512h170v86h-84v340h340v-340h-128v96q44 24 44 74 0 34-26 60t-60 26-60-26-26-60q0-50 44-74v-96q0-34 25-60t59-26h214zM854 854v-684h-684v684h684zM854 86q34 0 59 25t25 59v684q0 34-25 59t-59 25h-684q-34 0-59-25t-25-59v-684q0-34 25-59t59-25h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "nfc"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 226,
+ "paths": [
+ "M170 554v300h300v84h-300q-34 0-59-25t-25-59v-300h84zM854 854v-300h84v300q0 34-25 59t-59 25h-300v-84h300zM854 86q34 0 59 25t25 59v300h-84v-300h-300v-84h300zM726 362q0 26-19 45t-45 19-45-19-19-45 19-45 45-19 45 19 19 45zM426 554l128 158 86-114 128 170h-512zM170 170v300h-84v-300q0-34 25-59t59-25h300v84h-300z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "now_wallpaper"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 227,
+ "paths": [
+ "M710 72l242 242-242 240h186v342h-342v-342h156l-240-240v156h-342v-342h342v186zM128 896v-342h342v342h-342z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "now_widgets"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 228,
+ "paths": [
+ "M460 426v44h104v-44q0-20-15-35t-37-15-37 15-15 35zM426 682q-18 0-30-12t-12-30v-128q0-18 12-30t30-12v-44q0-36 25-60t61-24 61 24 25 60v44q18 0 30 12t12 30v128q0 18-12 30t-30 12h-172zM810 726v-428h-596v428h596zM896 214q34 0 60 25t26 59v428q0 34-26 59t-60 25h-768q-34 0-60-25t-26-59v-428q0-34 26-59t60-25h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "screen_lock_landscape"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 229,
+ "paths": [
+ "M726 810v-596h-428v596h428zM726 42q34 0 59 26t25 60v768q0 34-25 60t-59 26h-428q-34 0-59-26t-25-60v-768q0-34 25-60t59-26h428zM460 426v44h104v-44q0-20-15-35t-37-15-37 15-15 35zM426 682q-18 0-30-12t-12-30v-128q0-18 12-30t30-12v-44q0-36 25-60t61-24 61 24 25 60v44q18 0 30 12t12 30v128q0 18-12 30t-30 12h-172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "screen_lock_portrait"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 230,
+ "paths": [
+ "M716 106v22h146v-22q0-30-21-51t-51-21-52 21-22 51zM682 384q-18 0-30-12t-12-30v-172q0-18 12-30t30-12v-22q0-44 32-75t76-31 75 31 31 75v22q18 0 30 12t12 30v172q0 18-12 30t-30 12h-214zM362 874l56-56 162 162-28 2q-200 0-347-136t-163-334h64q10 106 85 212t171 150zM992 544q20 18 20 45t-20 47l-272 270q-18 20-44 20t-46-20l-512-512q-20-20-20-46 0-24 20-44l270-272q18-18 46-18t46 18l104 104-60 60-90-88-242 240 484 484 240-242-94-94 60-60z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "screen_lock_rotation"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 231,
+ "paths": [
+ "M320 916l58-56 162 162-28 2q-200 0-347-136t-163-334h64q10 106 84 212t170 150zM632 904l272-272-512-512-272 272zM436 74l514 514q20 18 20 44t-20 46l-272 272q-18 20-44 20t-46-20l-514-514q-18-18-18-44 0-28 18-46l272-272q18-18 46-18 26 0 44 18zM704 108l-58 56-162-162 28-2q200 0 347 136t163 334h-64q-12-120-80-216t-174-146z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "screen_rotation"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 232,
+ "paths": [
+ "M768 342v-172h-86v172h86zM640 342v-172h-86v172h86zM512 342v-172h-86v172h86zM768 86q34 0 60 25t26 59v684q0 34-26 59t-60 25h-512q-34 0-60-25t-26-59l2-512 254-256h342z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sd_storage",
+ "sd_card"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 233,
+ "paths": [
+ "M896 812v-600h-768v600h768zM896 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h768zM384 682q-52 0-90-38t-38-90q0-48 33-85t81-41h8q42-86 134-86 56 0 98 37t50 91h2q44 0 75 31t31 75-31 75-75 31h-278z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "settings_system_daydream"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 234,
+ "paths": [
+ "M86 938l852-852v852h-852z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "signal_cellular_4_bar"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 235,
+ "paths": [
+ "M86 938l852-852v256h-170v596h-682zM854 938v-84h84v84h-84zM854 768v-342h84v342h-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "signal_cellular_connected_no_internet_4_bar"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 236,
+ "paths": [
+ "M938 86v852h-852zM854 292l-562 562h562v-562z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "signal_cellular_null"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 237,
+ "paths": [
+ "M204 192l734 736-54 54-84-86h-758l378-378-270-272zM896 42v734l-366-366z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "signal_cellular_off"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 238,
+ "paths": [
+ "M512 916l-496-618q242-170 496-170t496 170z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "signal_wifi_4_bar"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 239,
+ "paths": [
+ "M662 618v112l-150 188-494-620 12-10q12-8 25-17t35-23 47-26 57-27 68-26 75-21 84-15 91-5 91 5 84 15 75 21 68 26 57 27 47 26 35 23 25 17l12 10-88 112q-12-4-44-4-90 0-151 61t-61 151zM938 682v-64q0-26-19-45t-45-19-45 19-19 45v64h128zM982 682q16 0 29 14t13 30v170q0 16-13 29t-29 13h-214q-16 0-29-13t-13-29v-170q0-16 13-30t29-14v-64q0-46 30-76t76-30 77 31 31 75v64z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "signal_wifi_4_bar_lock"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 240,
+ "paths": [
+ "M140 62q24 24 307 306t427 430l-54 54-142-142-166 206-496-618q66-54 156-94l-86-88zM1008 298l-232 290-442-440q90-20 178-20 254 0 496 170z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "signal_wifi_off"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 241,
+ "paths": [
+ "M170 470v84h86v-84h-86zM86 598v-172h852v172h-852zM256 298v-84h-86v84h86zM86 170h852v172h-852v-172zM170 726v84h86v-84h-86zM86 854v-172h852v172h-852z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "storage"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 242,
+ "paths": [
+ "M640 298h170v172h-42v84q0 36-25 61t-61 25h-128v130q52 28 52 84 0 38-27 66t-67 28-67-28-27-66q0-56 52-84v-130h-128q-36 0-61-25t-25-61v-88q-52-28-52-82 0-40 28-67t66-27 66 27 28 67q0 56-50 82v88h128v-340h-86l128-172 128 172h-86v340h128v-84h-42v-172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "usb"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 243,
+ "paths": [
+ "M938 682v-64q0-26-19-45t-45-19-45 19-19 45v64h128zM982 682q18 0 30 13t12 31v170q0 18-12 30t-30 12h-214q-18 0-30-12t-12-30v-170q0-18 12-31t30-13v-64q0-44 31-75t75-31 76 31 32 75v64zM874 406q-88 0-150 62t-62 150v122l-150 198-512-682q224-170 512-170t512 170l-114 152q-12-2-36-2z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wifi_lock"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 244,
+ "paths": [
+ "M512 128q176 0 301 124t125 302q0 116-57 215t-155 155l-44-74q78-46 125-125t47-171q0-140-100-240t-242-100-242 100-100 240q0 94 46 172t124 124l-42 74q-98-56-155-155t-57-215q0-178 125-302t301-124zM768 554q0 70-35 129t-93 93l-42-74q84-50 84-148 0-70-50-120t-120-50-120 50-50 120q0 98 84 148l-42 74q-58-34-93-93t-35-129q0-106 75-181t181-75 181 75 75 181zM512 470q34 0 60 25t26 59-26 60-60 26-60-26-26-60 26-59 60-25z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wifi_tethering"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 245,
+ "paths": [
+ "M426 640v-154l-238 240-60-60 238-240h-152v-84h298v298h-86zM768 44q34 0 60 25t26 59v768q0 34-26 60t-60 26h-426q-34 0-60-26t-26-60v-128h86v42h426v-596h-426v42h-86v-128q0-34 26-60t60-26z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "add_to_home_screen"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 246,
+ "paths": [
+ "M470 214v256h84v-86h-42v-42h42v-86h-42v-42h42q0-18-12-31t-30-13-30 13-12 31zM640 554q86 62 86 172 0 88-63 150t-151 62-151-62-63-150q0-110 86-172v-340q0-52 38-90t90-38 90 38 38 90v340z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "device_thermostat"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 247,
+ "paths": [
+ "M300 574l252-252 54 54-308 306-162-162 54-54zM810 42q34 0 60 26t26 60v768q0 34-26 60t-60 26h-426q-34 0-60-26t-26-60v-128h86v86h426v-684h-426v86h-86v-128q0-34 26-60t60-26h426z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mobile_friendly"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 248,
+ "paths": [
+ "M726 214h-392l-116-116q20-56 80-56h428q34 0 59 26t25 60v562l-84-86v-390zM298 810h416l-416-414v414zM118 106l820 820-54 54-74-74q-4 32-28 54t-56 22h-428q-34 0-59-26t-25-60v-586l-150-150z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mobile_off"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 249,
+ "paths": [
+ "M470 384h128v470h-128v-470zM214 598h128v256h-128v-256zM726 170h128v684h-128v-684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "signal_cellular_alt"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 250,
+ "paths": [
+ "M704 256h64v490q0 98-68 167t-166 69-167-69-69-167v-532q0-70 51-121t121-51 120 51 50 121v448q0 44-31 75t-75 31-76-31-32-75v-406h64v406q0 18 13 30t31 12 30-12 12-30v-448q0-44-31-76t-75-32-76 32-32 76v532q0 70 51 121t121 51 120-51 50-121v-490z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "attach_file"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 251,
+ "paths": [
+ "M504 466q44 12 73 24t61 33 49 53 17 76q0 62-41 101t-109 51v92h-128v-92q-66-14-109-56t-47-108h94q8 90 126 90 62 0 89-23t27-53q0-72-128-104-200-46-200-176 0-58 42-99t106-55v-92h128v94q66 16 101 60t37 102h-94q-4-90-108-90-52 0-83 22t-31 58q0 58 128 92z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "attach_money"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 252,
+ "paths": [
+ "M810 470v-256h-256v256h256zM810 810v-256h-256v256h256zM470 470v-256h-256v256h256zM470 810v-256h-256v256h256zM128 128h768v768h-768v-768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "border_all"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 253,
+ "paths": [
+ "M214 640v86h-86v-86h86zM128 896v-86h768v86h-768zM214 470v84h-86v-84h86zM810 384v-86h86v86h-86zM810 128h86v86h-86v-86zM214 298v86h-86v-86h86zM810 726v-86h86v86h-86zM810 554v-84h86v84h-86zM726 128v86h-86v-86h86zM554 128v86h-84v-86h84zM726 470v84h-86v-84h86zM554 298v86h-84v-86h84zM214 128v86h-86v-86h86zM554 470v84h-84v-84h84zM384 128v86h-86v-86h86zM554 640v86h-84v-86h84zM384 470v84h-86v-84h86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "border_bottom"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 254,
+ "paths": [
+ "M640 214v-86h86v86h-86zM640 554v-84h86v84h-86zM640 896v-86h86v86h-86zM470 214v-86h84v86h-84zM810 128h86v86h-86v-86zM470 384v-86h84v86h-84zM810 384v-86h86v86h-86zM810 896v-86h86v86h-86zM810 554v-84h86v84h-86zM810 726v-86h86v86h-86zM470 554v-84h84v84h-84zM128 214v-86h86v86h-86zM128 384v-86h86v86h-86zM128 554v-84h86v84h-86zM128 726v-86h86v86h-86zM128 896v-86h86v86h-86zM470 896v-86h84v86h-84zM470 726v-86h84v86h-84zM298 896v-86h86v86h-86zM298 554v-84h86v84h-86zM298 214v-86h86v86h-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "border_clear"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 255,
+ "paths": [
+ "M0 854h1024v170h-1024v-170zM884 172l-84 84-160-160 84-84q12-12 30-12t30 12l100 100q12 12 12 30t-12 30zM758 298l-428 428h-160v-160l428-428z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "border_color"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 256,
+ "paths": [
+ "M810 896v-86h86v86h-86zM640 896v-86h86v86h-86zM470 726v-86h84v86h-84zM810 384v-86h86v86h-86zM810 128h86v86h-86v-86zM128 554v-84h768v84h-768zM470 896v-86h84v86h-84zM810 726v-86h86v86h-86zM554 128v86h-84v-86h84zM554 298v86h-84v-86h84zM726 128v86h-86v-86h86zM384 128v86h-86v-86h86zM214 128v86h-86v-86h86zM298 896v-86h86v86h-86zM128 726v-86h86v86h-86zM214 298v86h-86v-86h86zM128 896v-86h86v86h-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "border_horizontal"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 257,
+ "paths": [
+ "M810 726v-86h86v86h-86zM810 896v-86h86v86h-86zM554 128v342h342v84h-342v342h-84v-342h-342v-84h342v-342h84zM640 896v-86h86v86h-86zM810 128h86v86h-86v-86zM810 384v-86h86v86h-86zM726 128v86h-86v-86h86zM214 128v86h-86v-86h86zM384 128v86h-86v-86h86zM128 726v-86h86v86h-86zM214 298v86h-86v-86h86zM298 896v-86h86v86h-86zM128 896v-86h86v86h-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "border_inner"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 258,
+ "paths": [
+ "M640 214v-86h86v86h-86zM640 554v-84h86v84h-86zM810 896v-86h86v86h-86zM810 554v-84h86v84h-86zM810 128h86v86h-86v-86zM810 726v-86h86v86h-86zM640 896v-86h86v86h-86zM810 384v-86h86v86h-86zM128 896v-768h86v768h-86zM298 554v-84h86v84h-86zM298 214v-86h86v86h-86zM298 896v-86h86v86h-86zM470 554v-84h84v84h-84zM470 384v-86h84v86h-84zM470 214v-86h84v86h-84zM470 726v-86h84v86h-84zM470 896v-86h84v86h-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "border_left"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 259,
+ "paths": [
+ "M384 470v84h-86v-84h86zM554 640v86h-84v-86h84zM810 810v-596h-596v596h596zM128 128h768v768h-768v-768zM726 470v84h-86v-84h86zM554 470v84h-84v-84h84zM554 298v86h-84v-86h84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "border_outer"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 260,
+ "paths": [
+ "M470 384v-86h84v86h-84zM470 214v-86h84v86h-84zM470 554v-84h84v84h-84zM640 214v-86h86v86h-86zM640 896v-86h86v86h-86zM810 128h86v768h-86v-768zM640 554v-84h86v84h-86zM470 726v-86h84v86h-84zM128 384v-86h86v86h-86zM128 726v-86h86v86h-86zM128 554v-84h86v84h-86zM470 896v-86h84v86h-84zM128 896v-86h86v86h-86zM298 554v-84h86v84h-86zM298 214v-86h86v86h-86zM128 214v-86h86v86h-86zM298 896v-86h86v86h-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "border_right"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 261,
+ "paths": [
+ "M810 384v-86h86v86h-86zM128 128h768v86h-682v682h-86v-768zM810 554v-84h86v84h-86zM810 726v-86h86v86h-86zM470 896v-86h84v86h-84zM298 896v-86h86v86h-86zM810 896v-86h86v86h-86zM640 896v-86h86v86h-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "border_style"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 262,
+ "paths": [
+ "M640 554v-84h86v84h-86zM810 896v-86h86v86h-86zM470 384v-86h84v86h-84zM640 896v-86h86v86h-86zM810 726v-86h86v86h-86zM128 128h768v86h-768v-86zM810 554v-84h86v84h-86zM810 384v-86h86v86h-86zM470 726v-86h84v86h-84zM128 384v-86h86v86h-86zM128 554v-84h86v84h-86zM128 896v-86h86v86h-86zM128 726v-86h86v86h-86zM470 896v-86h84v86h-84zM470 554v-84h84v84h-84zM298 554v-84h86v84h-86zM298 896v-86h86v86h-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "border_top"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 263,
+ "paths": [
+ "M640 554v-84h86v84h-86zM640 896v-86h86v86h-86zM640 214v-86h86v86h-86zM810 384v-86h86v86h-86zM810 128h86v86h-86v-86zM810 554v-84h86v84h-86zM810 896v-86h86v86h-86zM470 896v-768h84v768h-84zM810 726v-86h86v86h-86zM298 214v-86h86v86h-86zM128 726v-86h86v86h-86zM128 896v-86h86v86h-86zM128 554v-84h86v84h-86zM298 554v-84h86v84h-86zM298 896v-86h86v86h-86zM128 214v-86h86v86h-86zM128 384v-86h86v86h-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "border_vertical"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 264,
+ "paths": [
+ "M128 128h768v86h-768v-86zM298 298h428v86h-428v-86zM128 554v-84h768v84h-768zM128 896v-86h768v86h-768zM298 640h428v86h-428v-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_align_center"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 265,
+ "paths": [
+ "M128 128h768v86h-768v-86zM128 384v-86h768v86h-768zM128 554v-84h768v84h-768zM128 726v-86h768v86h-768zM128 896v-86h768v86h-768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_align_justify"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 266,
+ "paths": [
+ "M128 128h768v86h-768v-86zM128 896v-86h768v86h-768zM128 554v-84h768v84h-768zM640 298v86h-512v-86h512zM640 640v86h-512v-86h512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_align_left"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 267,
+ "paths": [
+ "M128 128h768v86h-768v-86zM384 384v-86h512v86h-512zM128 554v-84h768v84h-768zM384 726v-86h512v86h-512zM128 896v-86h768v86h-768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_align_right"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 268,
+ "paths": [
+ "M576 662q28 0 46-19t18-45-18-45-46-19h-150v128h150zM426 278v128h128q26 0 45-19t19-45-19-45-45-19h-128zM666 460q92 42 92 146 0 68-45 115t-113 47h-302v-598h268q72 0 121 50t49 122-70 118z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_bold"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 269,
+ "paths": [
+ "M256 214h598v128h-248l-68 160-90-88 30-72h-102l-120-120v-8zM140 214l12 10 616 618-54 54-242-242-66 156h-128l104-246-296-296z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_clear"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 270,
+ "paths": [
+ "M0 854h1024v170h-1024v-170zM810 490q86 94 86 150 0 34-26 60t-60 26-59-26-25-60q0-24 21-62t41-62zM222 426h410l-206-204zM706 382q20 20 20 46t-20 44l-234 234q-20 20-46 20-24 0-44-20l-236-234q-18-18-18-46 0-26 18-44l220-220-102-102 62-60z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_color_fill"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 271,
+ "paths": [
+ "M224 224l624 624-54 54-114-112q-74 64-168 64-106 0-181-75t-75-181q0-68 56-176l-142-142zM768 598q0 30-6 56l-366-368 116-150q28 32 71 86t114 177 71 199z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_color_reset"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 272,
+ "paths": [
+ "M410 512h204l-102-270zM470 128h84l234 598h-96l-46-128h-268l-48 128h-96zM0 854h1024v170h-1024v-170z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_color_text"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 273,
+ "paths": [
+ "M470 554v-84h426v84h-426zM470 384v-86h426v86h-426zM128 128h768v86h-768v-86zM128 896v-86h768v86h-768zM128 512l170-170v340zM470 726v-86h426v86h-426z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_indent_decrease"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 274,
+ "paths": [
+ "M470 554v-84h426v84h-426zM470 384v-86h426v86h-426zM128 128h768v86h-768v-86zM470 726v-86h426v86h-426zM128 342l170 170-170 170v-340zM128 896v-86h768v86h-768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_indent_increase"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 275,
+ "paths": [
+ "M426 170h342v128h-120l-144 342h94v128h-342v-128h120l144-342h-94v-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_italic"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 276,
+ "paths": [
+ "M426 554v-84h512v84h-512zM426 810v-84h512v84h-512zM426 214h512v84h-512v-84zM256 298v428h106l-148 148-150-148h106v-428h-106l150-148 148 148h-106z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_line_spacing"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 277,
+ "paths": [
+ "M298 214h598v84h-598v-84zM298 554v-84h598v84h-598zM298 810v-84h598v84h-598zM170 704q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM170 192q26 0 45 18t19 46-19 46-45 18-45-18-19-46 19-46 45-18zM170 448q26 0 45 18t19 46-19 46-45 18-45-18-19-46 19-46 45-18z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_list_bulleted"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 278,
+ "paths": [
+ "M298 554v-84h598v84h-598zM298 810v-84h598v84h-598zM298 214h598v84h-598v-84zM86 470v-44h128v40l-78 88h78v44h-128v-40l76-88h-76zM128 342v-128h-42v-44h84v172h-42zM86 726v-44h128v172h-128v-44h84v-20h-42v-44h42v-20h-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_list_numbered"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 279,
+ "paths": [
+ "M768 170h128v342h-342v384q0 18-12 30t-30 12h-86q-18 0-30-12t-12-30v-470h426v-170h-42v42q0 18-12 31t-30 13h-512q-18 0-31-13t-13-31v-170q0-18 13-30t31-12h512q18 0 30 12t12 30v42z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_paint"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 280,
+ "paths": [
+ "M598 726l84-172h-128v-256h256v256l-84 172h-128zM256 726l86-172h-128v-256h256v256l-86 172h-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_quote"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 281,
+ "paths": [
+ "M128 512v-128h384v128h-128v298h-128v-298h-128zM384 170h554v128h-212v512h-128v-512h-214v-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_size"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 282,
+ "paths": [
+ "M128 598v-86h768v86h-768zM214 170h596v128h-212v128h-172v-128h-212v-128zM426 810v-128h172v128h-172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_strikethrough"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 283,
+ "paths": [
+ "M896 768l-170 170v-128h-512v-84h512v-128zM384 426q-70 0-120-50t-50-120 50-120 120-50h342v84h-86v470h-86v-470h-84v470h-86v-214z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_textdirection_l_to_r"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 284,
+ "paths": [
+ "M342 726h512v84h-512v128l-172-170 172-170v128zM426 426q-70 0-120-50t-50-120 50-120 120-50h342v84h-86v470h-84v-470h-86v470h-86v-214z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_textdirection_r_to_l"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 285,
+ "paths": [
+ "M214 810h596v86h-596v-86zM512 726q-106 0-181-75t-75-181v-342h106v342q0 62 44 105t106 43 106-43 44-105v-342h106v342q0 106-75 181t-181 75z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_underlined"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 286,
+ "paths": [
+ "M768 170v128h-298l212 214-212 214h298v128h-512v-86l278-256-278-256v-86h512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "functions"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 287,
+ "paths": [
+ "M726 726v-172h-86v172h86zM554 726v-428h-84v428h84zM384 726v-300h-86v300h86zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "insert_chart",
+ "poll",
+ "assessment"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 288,
+ "paths": [
+ "M768 342v-86h-512v86h512zM768 470v-86h-512v86h512zM768 598v-86h-512v86h512zM854 86q34 0 59 25t25 59v768l-170-170h-598q-34 0-59-26t-25-60v-512q0-34 25-59t59-25h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "insert_comment"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 289,
+ "paths": [
+ "M554 384h236l-236-234v234zM256 86h342l256 256v512q0 34-26 59t-60 25h-512q-34 0-60-25t-26-59l2-684q0-34 25-59t59-25z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "insert_drive_file"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 290,
+ "paths": [
+ "M512 746q-74 0-133-41t-85-107h436q-26 66-85 107t-133 41zM362 470q-26 0-45-19t-19-45 19-45 45-19 45 19 19 45-19 45-45 19zM662 470q-26 0-45-19t-19-45 19-45 45-19 45 19 19 45-19 45-45 19zM512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "insert_emoticon",
+ "tag_faces",
+ "mood"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 291,
+ "paths": [
+ "M810 810v-468h-596v468h596zM682 42h86v86h42q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-36 0-61-25t-25-61v-596q0-34 25-60t61-26h42v-86h86v86h340v-86zM726 512v214h-214v-214h214z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "insert_invitation",
+ "event"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 292,
+ "paths": [
+ "M362 576l-148 192h596l-192-256-148 192zM896 810q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596q34 0 60 26t26 60v596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "insert_photo",
+ "image",
+ "photo"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 293,
+ "paths": [
+ "M938 170v768l-170-170h-598q-34 0-59-26t-25-60v-512q0-34 25-59t59-25h684q34 0 59 25t25 59z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mode_comment"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 294,
+ "paths": [
+ "M214 598l298-300 298 300h-170v256h-256v-256h-170zM214 170h596v86h-596v-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "publish"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 295,
+ "paths": [
+ "M768 384h86v256h-684v-256h86v170h512v-170z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "space_bar"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 296,
+ "paths": [
+ "M400 560q0 108 124 108 98 0 98-72 0-32-13-46t-47-30q-2 0-7-2t-9-4-8-2h-410v-86h768v86h-166q0 2 3 7t5 7q14 34 14 70 0 122-134 160-42 12-92 12-32 0-62-6-72-14-112-44-78-58-78-158h126zM622 320q0-90-102-90-72 0-94 44-6 12-6 28 0 30 32 52 32 20 60 30h-196q0-2-4-5t-4-5q-16-26-16-72 0-74 64-126 62-48 166-48 106 0 166 54 62 56 62 138h-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "strikethrough_s"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 297,
+ "paths": [
+ "M170 810h684v86h-684v-86zM682 554l-170 172-170-172h128v-426h84v426h128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "vertical_align_bottom"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 298,
+ "paths": [
+ "M170 470h684v84h-684v-84zM682 214l-170 170-170-170h128v-172h84v172h128zM342 810l170-170 170 170h-128v172h-84v-172h-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "vertical_align_center"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 299,
+ "paths": [
+ "M170 128h684v86h-684v-86zM342 470l170-172 170 172h-128v426h-84v-426h-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "vertical_align_top"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 300,
+ "paths": [
+ "M726 470q70 0 120 50t50 120-50 120-120 50h-86v86l-128-128 128-128v86h96q34 0 60-26t26-60-26-60-60-26h-566v-84h556zM854 214v84h-684v-84h684zM170 810v-84h256v84h-256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wrap_text"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 301,
+ "paths": [
+ "M228 174l622 624-54 54-94-96q-38 34-104 48v92h-128v-92q-66-14-110-56t-48-108h94q8 90 128 90 74 0 102-40l-150-148q-166-50-166-168l-146-146zM534 294q-38 0-66 12l-62-62q28-14 64-24v-92h128v94q64 16 99 60t37 102h-94q-4-90-106-90z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "money_off"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 302,
+ "paths": [
+ "M170 640v-86h684v86h-684zM854 384v86h-684v-86h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "drag_handle"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 303,
+ "paths": [
+ "M456 544h112l-56-164zM586 598h-150l-30 84h-70l146-384h60l144 384h-68zM810 214h86v-86h-86v86zM896 896v-86h-86v86h86zM726 810v-84h84v-428h-84v-84h-428v84h-84v428h84v84h428zM214 896v-86h-86v86h86zM128 128v86h86v-86h-86zM982 298h-86v428h86v256h-256v-86h-428v86h-256v-256h86v-428h-86v-256h256v86h428v-86h256v256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_shapes"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 304,
+ "paths": [
+ "M724 280l90-90 60 60-90 92zM150 250l60-60 90 90-60 62zM470 86h84v128h-84v-128zM256 598v-214h512v214l-128 128v212h-256v-212z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "highlight"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 305,
+ "paths": [
+ "M832 406q44 0 75 31t31 75-31 75-75 31q-72 0-98-64h-124q-26 64-98 64t-98-64h-124q-26 64-98 64-44 0-75-31t-31-75 31-75 75-31q72 0 98 64h124q26-64 98-64t98 64h124q26-64 98-64z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "linear_scale"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 306,
+ "paths": [
+ "M170 554h428v86h-428v-86zM170 384h684v86h-684v-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "short_text"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 307,
+ "paths": [
+ "M918 384v128h-128v298h-128v-298h-128v-128h384zM106 170h556v128h-214v512h-128v-512h-214v-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "text_fields"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 308,
+ "paths": [
+ "M572 772q134-26 134-134 0-122-180-168-112-28-112-82 0-30 27-50t75-20q90 0 94 80h84q-4-114-122-144v-84h-114v84q-58 12-95 47t-37 89q0 112 178 156 114 26 114 92 0 26-23 47t-79 21q-106 0-114-80h-84q6 114 140 144v84h114v-82zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "monetization_on"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 309,
+ "paths": [
+ "M214 170h596v128h-234v512h-128v-512h-234v-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "title"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 310,
+ "paths": [
+ "M128 810v-384h214v470h-128q-34 0-60-26t-26-60zM854 128q34 0 59 26t25 60v128h-810v-128q0-34 26-60t60-26h640zM726 896v-470h212v384q0 34-25 60t-59 26h-128zM426 428h214v468h-214v-468z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "table_chart"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 311,
+ "paths": [
+ "M726 470v-86h-172v-170h-84v170h-172v86h172v170h84v-170h172zM938 170v768l-170-170h-598q-34 0-59-26t-25-60v-512q0-34 25-59t59-25h684q34 0 59 25t25 59z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "add_comment"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 312,
+ "paths": [
+ "M86 470h596v84h-596v-84zM86 726h596v84h-596v-84zM86 214h596v84h-596v-84zM768 470v-44h128v40l-76 88h76v44h-128v-40l76-88h-76zM810 342v-128h-42v-44h86v172h-44zM768 726v-44h128v172h-128v-44h86v-20h-44v-44h44v-20h-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_list_numbered_rtl"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 313,
+ "paths": [
+ "M580 750q0-52 38-90t90-38 90 38 38 90-38 90-90 38-90-38-38-90zM342 256q0-52 38-90t90-38 90 38 38 90-38 90-90 38-90-38-38-90zM170 598q0-52 38-90t90-38 90 38 38 90-38 90-90 38-90-38-38-90z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "scatter_plot"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 314,
+ "paths": [
+ "M810 554v-106l-256 256-170-170-170 170v106l170-170 170 170zM298 310v160h172v-64h-108v-32h108v-160h-172v64h108v32h-108zM512 214v256h64v-128l86 128h72l-86-128 86-128h-72l-86 128v-128h-64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "score"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 315,
+ "paths": [
+ "M832 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-640q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h640zM832 814v-600h-640v600h640zM726 726h-86v-172h86v172zM554 726h-84v-428h84v428zM384 726h-86v-300h86v300z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "insert_chart_outlined"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 316,
+ "paths": [
+ "M692 554h118v256h-118v-256zM452 214h120v596h-120v-596zM214 392h128v418h-128v-418z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bar_chart"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 317,
+ "paths": [
+ "M128 554v-84h768v84h-768zM128 256h768v86h-768v-86zM128 768v-86h512v86h-512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "notes"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 318,
+ "paths": [
+ "M86 534q0-98 68-167t166-69h448q70 0 120 51t50 121-50 120-120 50h-362q-44 0-76-31t-32-75 32-76 76-32h320v86h-324q-18 0-18 21t18 21h366q34 0 60-25t26-59-26-60-60-26h-448q-62 0-106 44t-44 106 44 105 106 43h406v86h-406q-98 0-166-68t-68-166z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "attachment"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 319,
+ "paths": [
+ "M826 428q82 6 140 67t58 145q0 88-63 151t-151 63h-554q-106 0-181-75t-75-181q0-94 67-169t161-85q42-78 118-126t166-48q108 0 201 76t113 182z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cloud"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 320,
+ "paths": [
+ "M704 682q44 0 75-31t31-75-31-75-75-31h-22q0-70-50-121t-120-51q-54 0-102 38t-62 92l-6-2q-52 0-90 38t-38 90 38 90 90 38h362zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cloud_circle"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 321,
+ "paths": [
+ "M426 726l282-282-60-60-222 220-88-88-60 60zM826 428q82 6 140 67t58 145q0 88-63 151t-151 63h-554q-106 0-181-75t-75-181q0-94 67-169t161-85q42-78 118-126t166-48q108 0 201 76t113 182z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cloud_done"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 322,
+ "paths": [
+ "M726 554h-128v-170h-172v170h-128l214 214zM826 428q82 6 140 67t58 145q0 88-63 151t-151 63h-554q-106 0-181-75t-75-181q0-94 67-169t161-85q42-78 118-126t166-48q108 0 201 76t113 182z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cloud_download"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 323,
+ "paths": [
+ "M330 426h-74q-70 0-120 51t-50 121 50 120 120 50h416zM128 224l54-54 714 714-54 54-86-84h-500q-106 0-181-75t-75-181q0-104 72-178t174-78zM826 428q82 6 140 67t58 145q0 110-90 174l-62-62q66-36 66-112 0-52-38-90t-90-38h-64v-22q0-98-68-166t-166-68q-56 0-108 26l-64-62q78-50 172-50 108 0 201 76t113 182z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cloud_off"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 324,
+ "paths": [
+ "M810 768q52 0 90-38t38-90-38-90-90-38h-64v-22q0-98-68-166t-166-68q-80 0-142 48t-84 122h-30q-70 0-120 51t-50 121 50 120 120 50h554zM826 428q82 6 140 67t58 145q0 88-63 151t-151 63h-554q-106 0-181-75t-75-181q0-94 67-169t161-85q42-78 118-126t166-48q108 0 201 76t113 182z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cloud_queue"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 325,
+ "paths": [
+ "M598 554h128l-214-212-214 212h128v172h172v-172zM826 428q82 6 140 67t58 145q0 88-63 151t-151 63h-554q-106 0-181-75t-75-181q0-94 67-169t161-85q42-78 118-126t166-48q108 0 201 76t113 182z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cloud_upload",
+ "backup"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 326,
+ "paths": [
+ "M214 768h596v86h-596v-86zM810 384l-298 298-298-298h170v-256h256v256h170z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file_download",
+ "get_app"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 327,
+ "paths": [
+ "M214 768h596v86h-596v-86zM384 682v-256h-170l298-298 298 298h-170v256h-256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file_upload"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 328,
+ "paths": [
+ "M426 170l86 86h342q34 0 59 26t25 60v426q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-512q0-34 25-60t59-26h256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "folder"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 329,
+ "paths": [
+ "M854 768v-426h-684v426h684zM854 256q34 0 59 26t25 60v426q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-512q0-34 25-60t59-26h256l86 86h342z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "folder_open"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 330,
+ "paths": [
+ "M810 726v-44q0-38-59-61t-111-23-111 23-59 61v44h340zM640 384q-34 0-60 26t-26 60 26 59 60 25 60-25 26-59-26-60-60-26zM854 256q34 0 59 26t25 60v426q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-512q0-34 25-60t59-26h256l86 86h342z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "folder_shared"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 331,
+ "paths": [
+ "M810 598v-86h-128v-128h-84v128h-128v86h128v128h84v-128h128zM854 256q36 0 60 25t24 61v426q0 36-24 61t-60 25h-684q-36 0-60-25t-24-61v-512q0-36 24-61t60-25h256l86 86h342z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "create_new_folder"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 332,
+ "paths": [
+ "M42 426q194 0 332 138t138 332h-86q0-160-113-272t-271-112v-86zM42 598q124 0 212 87t88 211h-86q0-88-63-151t-151-63v-84zM42 768q52 0 90 38t38 90h-128v-128zM896 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-298v-86h298v-596h-768v128h-86v-128q0-34 26-60t60-26h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cast"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 333,
+ "paths": [
+ "M896 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-298v-86h298v-596h-768v128h-86v-128q0-34 26-60t60-26h768zM42 426q194 0 332 138t138 332h-86q0-160-113-272t-271-112v-86zM810 298v428h-240q-40-126-135-222t-221-136v-70h596zM42 598q124 0 212 87t88 211h-86q0-88-63-151t-151-63v-84zM42 768q52 0 90 38t38 90h-128v-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cast_connected"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 334,
+ "paths": [
+ "M170 256v426h684v-426h-684zM854 768h170v86h-1024v-86h170q-34 0-59-26t-25-60v-426q0-34 25-60t59-26h684q34 0 59 26t25 60v426q0 34-25 60t-59 26z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "computer",
+ "laptop"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 335,
+ "paths": [
+ "M896 598v-428h-768v428h768zM896 86q34 0 60 25t26 59v512q0 34-26 60t-60 26h-298l84 128v42h-340v-42l84-128h-298q-34 0-60-26t-26-60v-512q0-34 26-59t60-25h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "desktop_mac"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 336,
+ "paths": [
+ "M896 682v-512h-768v512h768zM896 86q34 0 60 25t26 59v512q0 34-26 60t-60 26h-298v86h84v84h-340v-84h84v-86h-298q-34 0-60-26t-26-60v-512q0-34 26-59t60-25h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "desktop_windows"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 337,
+ "paths": [
+ "M512 470h170v256h-170v-256zM256 298h214v214h-214v-214zM512 298h170v128h-170v-128zM256 554h214v172h-214v-172zM768 810v-596h-598v596h598zM938 384h-84v86h84v84h-84v86h84v86h-84v84q0 34-26 60t-60 26h-598q-34 0-59-26t-25-60v-596q0-34 25-60t59-26h598q34 0 60 26t26 60v84h84v86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "developer_board"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 338,
+ "paths": [
+ "M682 640v-426h-340v426h340zM682 44q34 0 60 25t26 59v598q0 34-26 59t-60 25h-340q-34 0-60-25t-26-59v-598q0-34 26-60t60-26zM342 982v-86h340v86h-340z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "dock"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 339,
+ "paths": [
+ "M512 42q160 0 272 113t112 271v300q0 52-38 90t-90 38h-128v-342h170v-86q0-124-87-211t-211-87-211 87-87 211v86h170v342h-128q-52 0-90-38t-38-90v-300q0-158 112-271t272-113z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "headset"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 340,
+ "paths": [
+ "M512 42q160 0 272 113t112 271v428q0 52-38 90t-90 38h-256v-86h298v-42h-170v-342h170v-86q0-124-87-211t-211-87-211 87-87 211v86h170v342h-128q-52 0-90-38t-38-90v-300q0-158 112-271t272-113z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "headset_mic"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 341,
+ "paths": [
+ "M810 426v-84h-84v84h84zM810 554v-84h-84v84h84zM682 426v-84h-84v84h84zM682 554v-84h-84v84h84zM682 726v-86h-340v86h340zM298 426v-84h-84v84h84zM298 554v-84h-84v84h84zM342 470v84h84v-84h-84zM342 342v84h84v-84h-84zM470 470v84h84v-84h-84zM470 342v84h84v-84h-84zM854 214q34 0 59 25t25 59v428q0 34-25 59t-59 25h-684q-34 0-59-25t-25-59v-428q0-34 25-59t59-25h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "keyboard"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 342,
+ "paths": [
+ "M316 366l196 196 196-196 60 60-256 256-256-256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "keyboard_arrow_down"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 343,
+ "paths": [
+ "M658 708l-60 60-256-256 256-256 60 60-196 196z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "keyboard_arrow_left"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 344,
+ "paths": [
+ "M366 708l196-196-196-196 60-60 256 256-256 256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "keyboard_arrow_right"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 345,
+ "paths": [
+ "M316 658l-60-60 256-256 256 256-60 60-196-196z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "keyboard_arrow_up"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 346,
+ "paths": [
+ "M896 470v84h-604l152 154-60 60-256-256 256-256 60 60-152 154h604z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "keyboard_backspace"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 347,
+ "paths": [
+ "M256 768v-86h512v86h-512zM512 358l-196 196-60-60 256-256 256 256-60 60z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "keyboard_capslock"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 348,
+ "paths": [
+ "M512 982l-170-172h340zM810 342v-86h-84v86h84zM810 470v-86h-84v86h84zM682 342v-86h-84v86h84zM682 470v-86h-84v86h84zM682 640v-86h-340v86h340zM298 342v-86h-84v86h84zM298 470v-86h-84v86h84zM342 384v86h84v-86h-84zM342 256v86h84v-86h-84zM470 384v86h84v-86h-84zM470 256v86h84v-86h-84zM854 128q34 0 59 26t25 60v426q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-426q0-34 25-60t59-26h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "keyboard_hide"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 349,
+ "paths": [
+ "M810 298h86v256h-648l154 154-60 60-256-256 256-256 60 60-154 154h562v-172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "keyboard_return"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 350,
+ "paths": [
+ "M854 256h84v512h-84v-512zM494 316l60-60 256 256-256 256-60-60 154-154h-606v-84h606z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "keyboard_tab"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 351,
+ "paths": [
+ "M738 512h72q0 108-75 189t-181 97v140h-84v-140q-106-16-181-97t-75-189h72q0 94 67 156t159 62 159-62 67-156zM512 640q-52 0-90-38t-38-90v-256q0-52 38-90t90-38 90 38 38 90v256q0 52-38 90t-90 38z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "keyboard_voice"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 352,
+ "paths": [
+ "M854 640v-426h-684v426h684zM598 768v-42h-172v42h172zM938 768h86v86h-1024v-86h86v-640h852v640z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "laptop_chromebook"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 353,
+ "paths": [
+ "M512 810q18 0 30-12t12-30-12-30-30-12-30 12-12 30 12 30 30 12zM170 214v468h684v-468h-684zM854 768h170q0 34-26 60t-60 26h-852q-34 0-60-26t-26-60h170q-34 0-59-26t-25-60v-468q0-34 25-60t59-26h684q34 0 59 26t25 60v468q0 34-25 60t-59 26z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "laptop_mac"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 354,
+ "paths": [
+ "M170 214v426h684v-426h-684zM854 768h170v86h-1024v-86h170v-42q-34 0-59-26t-25-60v-426q0-34 25-60t59-26h684q34 0 59 26t25 60v426q0 34-25 60t-59 26v42z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "laptop_windows"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 355,
+ "paths": [
+ "M726 726v-428h-428v428h428zM896 470h-86v84h86v86h-86v86q0 34-25 59t-59 25h-86v86h-86v-86h-84v86h-86v-86h-86q-34 0-59-25t-25-59v-86h-86v-86h86v-84h-86v-86h86v-86q0-34 25-59t59-25h86v-86h86v86h84v-86h86v86h86q34 0 59 25t25 59v86h86v86zM554 554v-84h-84v84h84zM640 384v256h-256v-256h256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "memory"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 356,
+ "paths": [
+ "M470 46v338h-300q0-130 87-226t213-112zM170 640v-170h684v170q0 140-101 241t-241 101-241-101-101-241zM554 46q126 16 213 112t87 226h-300v-338z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mouse"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 357,
+ "paths": [
+ "M736 768v-598h-448v598h448zM598 896v-42h-172v42h172zM682 42q52 0 90 38t38 90v684q0 52-38 90t-90 38h-340q-52 0-90-38t-38-90v-684q0-52 38-90t90-38h340z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "phone_android"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 358,
+ "paths": [
+ "M682 768v-598h-384v598h384zM490 938q26 0 45-19t19-45-19-45-45-19-45 19-19 45 19 45 45 19zM662 42q44 0 75 32t31 76v724q0 44-31 76t-75 32h-342q-44 0-75-32t-31-76v-724q0-44 31-76t75-32h342z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "phone_iphone"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 359,
+ "paths": [
+ "M982 342q18 0 30 12t12 30v426q0 18-12 31t-30 13h-8l-128-128h92v-300h-170v222l-86-86v-178q0-18 13-30t31-12h256zM170 268v458h458zM82 70q162 162 461 462t367 368l-54 54-100-100h-756v-128h86v-470q0-30 20-54l-78-78zM938 256h-562l-86-86h648v86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "phonelink_off"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 360,
+ "paths": [
+ "M640 768v-86h-86v86h86zM490 768v-86h-84v86h84zM342 768v-86h-86v86h86zM810 554q34 0 60 26t26 60v170q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-170q0-34 26-60t60-26h426v-170h86v170h84zM824 286l-34 34q-42-42-108-42-64 0-106 42l-34-34q60-60 140-60 82 0 142 60zM862 252q-82-72-180-72-96 0-178 72l-34-34q90-90 212-90 124 0 214 90z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "router"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 361,
+ "paths": [
+ "M810 726v-86h-426v86h426zM298 726v-86h-84v86h84zM844 456q22 6 37 29t15 49v234q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-170q0-34 26-60t60-26h536l-600-218 30-80z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "scanner"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 362,
+ "paths": [
+ "M512 42l384 172v256q0 178-110 325t-274 187q-164-40-274-187t-110-325v-256zM512 512v382q118-38 200-143t98-239h-298zM512 512v-376l-298 132v244h298z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "security"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 363,
+ "paths": [
+ "M726 640v-170h-86v170h86zM554 554v-84h-84v84h84zM554 810v-170h-84v170h84zM384 640v-170h-86v170h86zM726 810v-84h-86v84h86zM384 810v-84h-86v84h86zM852 170l2 684q0 34-26 59t-60 25h-512q-34 0-60-25t-26-59v-512l256-256h342q34 0 59 25t25 59z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sim_card"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 364,
+ "paths": [
+ "M512 512q52 0 90 38t38 90-38 90-90 38-90-38-38-90 38-90 90-38zM512 854q88 0 151-63t63-151-63-151-151-63-151 63-63 151 63 151 151 63zM512 170q-36 0-61 25t-25 61 25 61 61 25q34 0 60-26t26-60-26-60-60-26zM726 86q34 0 59 25t25 59v684q0 34-25 59t-59 25h-428q-34 0-59-25t-25-59v-684q0-34 25-59t59-25h428z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "speaker"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 365,
+ "paths": [
+ "M256 214v682h426v86h-426q-36 0-61-25t-25-61v-682h86zM490 534q0-44 32-76t76-32 75 32 31 76-31 75-75 31-76-31-32-75zM598 704q70 0 120-50t50-120-50-121-120-51-121 51-51 121 51 120 121 50zM598 128q-34 0-60 25t-26 61 25 60 61 24q34 0 59-24t25-60-25-61-59-25zM776 42q32 0 55 23t23 55v614q0 32-23 54t-55 22h-358q-32 0-54-22t-22-54v-614q0-32 22-55t54-23h358z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "speaker_group"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 366,
+ "paths": [
+ "M810 768v-512h-596v512h596zM896 170q34 0 60 26t26 60l-2 512q0 34-25 60t-59 26h-768q-34 0-60-26t-26-60v-512q0-34 26-60t60-26h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tablet"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 367,
+ "paths": [
+ "M822 810v-682h-620v682h620zM598 938v-42h-172v42h172zM768 0q52 0 90 38t38 90v768q0 52-38 90t-90 38h-512q-52 0-90-38t-38-90v-768q0-52 38-90t90-38h512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tablet_android"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 368,
+ "paths": [
+ "M810 810v-682h-640v682h640zM490 982q26 0 45-19t19-45-19-45-45-19-45 19-19 45 19 45 45 19zM790 0q44 0 75 31t31 75v812q0 44-31 75t-75 31h-598q-44 0-75-31t-31-75v-812q0-44 31-75t75-31h598z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tablet_mac"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 369,
+ "paths": [
+ "M512 512q0 96-69 165t-165 69-166-69-70-165h470zM512 512q-96 0-165-69t-69-165 69-166 165-70v470zM512 512q96 0 165 69t69 165-69 166-165 70v-470zM512 512q0-96 69-165t165-69 166 69 70 165h-470z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "toys"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 370,
+ "paths": [
+ "M896 726v-512h-768v512h768zM896 128q34 0 60 26t26 60l-2 512q0 34-25 59t-59 25h-214v86h-340v-86h-214q-34 0-60-25t-26-59v-512q0-34 26-60t60-26h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tv"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 371,
+ "paths": [
+ "M256 512q0 106 75 181t181 75 181-75 75-181-75-181-181-75-181 75-75 181zM854 512q0 70-38 148t-92 120l-42 244h-340l-42-244q-130-100-130-268t130-268l42-244h340l42 244q130 104 130 268z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "watch"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 372,
+ "paths": [
+ "M726 682h170v214h-214v-130l-170-180-170 180v130h-214v-214h170l172-170v-136q-38-14-62-46t-24-74q0-52 38-90t90-38 90 38 38 90q0 42-24 74t-62 46v136z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "device_hub"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 373,
+ "paths": [
+ "M682 640v-86h214v86h-214zM384 640v-86h214v86h-214zM86 640v-86h212v86h-212zM86 384h810v86h-810v-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "power_input"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 374,
+ "paths": [
+ "M896 768v-342h-170v342h170zM938 342q16 0 30 13t14 29v426q0 16-14 30t-30 14h-256q-16 0-29-14t-13-30v-426q0-16 13-29t29-13h256zM470 746q26 0 45-19t19-45-19-45-45-19-45 19-19 45 19 45 45 19zM554 512v76q44 40 44 94 0 56-44 96v76h-170v-76q-42-38-42-96 0-56 42-94v-76h170zM128 256v512h170v86h-170q-34 0-60-26t-26-60v-512q0-34 26-60t60-26h768v86h-768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "devices_other"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 375,
+ "paths": [
+ "M832 512q28 0 46-18t18-46-18-46-46-18-46 18-18 46 18 46 46 18zM662 640q26 0 45-18t19-46-19-46-45-18-45 18-19 46 19 46 45 18zM470 554v-84h-128v-128h-86v128h-128v84h128v128h86v-128h128zM896 256q34 0 60 26t26 60v340q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-340q0-34 26-60t60-26h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "videogame_asset"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 376,
+ "paths": [
+ "M474 662h76v76h-76v-76zM512 286q64 0 107 43t43 105q0 50-56 100t-56 90h-76q0-42 17-71t39-42 39-33 17-44q0-30-22-52t-52-22-52 22-22 52h-76q0-62 43-105t107-43zM726 810v-596h-428v596h428zM726 42q34 0 59 26t25 60v768q0 34-25 60t-59 26h-428q-34 0-59-26t-25-60v-768q0-34 25-60t59-26h428z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "device_unknown"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 377,
+ "paths": [
+ "M96 74l854 854-54 54-92-92q-18 6-36 6h-128v-170l-392-394q-34 62-34 138v84h170v342h-128q-52 0-90-38t-38-90v-298q0-112 56-200l-142-142zM512 170q-88 0-162 48l-62-60q98-72 224-72 160 0 272 113t112 271v294l-210-210h124v-84q0-124-87-212t-211-88z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "headset_off"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 378,
+ "paths": [
+ "M640 512q0 52-38 90t-90 38-90-38-38-90 38-90 90-38 90 38 38 90zM512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "adjust"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 379,
+ "paths": [
+ "M592 550l176-80-176-80-80-176-80 176-176 80 176 80 80 176zM810 86q34 0 60 25t26 59v598q0 34-26 60t-60 26h-170l-128 128-128-128h-170q-34 0-60-26t-26-60v-598q0-34 26-59t60-25h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "assistant"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 380,
+ "paths": [
+ "M512 128h298v128h-170v470h-2q-8 72-62 121t-128 49q-80 0-136-56t-56-136 56-136 136-56q28 0 64 12v-396z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "audiotrack"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 381,
+ "paths": [
+ "M598 554q18 0 30 13t12 31-12 30-30 12-31-12-13-30 13-31 31-13zM598 704q20 0 20 22 0 20-20 20-22 0-22-20 0-22 22-22zM512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125zM726 406q20 0 20 20 0 22-20 22-22 0-22-22 0-20 22-20zM726 576q20 0 20 22 0 20-20 20-22 0-22-20 0-22 22-22zM598 320q-22 0-22-22 0-20 22-20 20 0 20 20 0 22-20 22zM598 384q18 0 30 12t12 30-12 31-30 13-31-13-13-31 13-30 31-12zM426 320q-20 0-20-22 0-20 20-20 22 0 22 20 0 22-22 22zM298 576q22 0 22 22 0 20-22 20-20 0-20-20 0-22 20-22zM426 704q22 0 22 22 0 20-22 20-20 0-20-20 0-22 20-22zM298 406q22 0 22 20 0 22-22 22-20 0-20-22 0-20 20-20zM426 554q18 0 31 13t13 31-13 30-31 12-30-12-12-30 12-31 30-13zM426 384q18 0 31 12t13 30-13 31-31 13-30-13-12-31 12-30 30-12z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "blur_circular"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 382,
+ "paths": [
+ "M554 726q-18 0-30-13t-12-31 12-30 30-12 31 12 13 30-13 31-31 13zM554 554q-18 0-30-12t-12-30 12-30 30-12 31 12 13 30-13 30-31 12zM554 384q-18 0-30-12t-12-30 12-31 30-13 31 13 13 31-13 30-31 12zM726 534q-22 0-22-22t22-22q20 0 20 22t-20 22zM726 362q-22 0-22-20 0-22 22-22 20 0 20 22 0 20-20 20zM128 128h768v86h-768v-86zM726 704q-22 0-22-22 0-20 22-20 20 0 20 20 0 22-20 22zM384 726q-18 0-30-13t-12-31 12-30 30-12 30 12 12 30-12 31-30 13zM214 576q-26 0-45-18t-19-46 19-46 45-18 45 18 19 46-19 46-45 18zM214 406q-26 0-45-19t-19-45 19-45 45-19 45 19 19 45-19 45-45 19zM128 896v-86h768v86h-768zM384 384q-18 0-30-12t-12-30 12-31 30-13 30 13 12 31-12 30-30 12zM384 554q-18 0-30-12t-12-30 12-30 30-12 30 12 12 30-12 30-30 12zM214 746q-26 0-45-19t-19-45 19-45 45-19 45 19 19 45-19 45-45 19z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "blur_linear"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 383,
+ "paths": [
+ "M128 576q22 0 22 22 0 20-22 20t-22-20q0-22 22-22zM256 726q18 0 30 12t12 30-12 30-30 12-30-12-12-30 12-30 30-12zM426 874q22 0 22 22t-22 22q-20 0-20-22t20-22zM128 406q22 0 22 20 0 22-22 22t-22-22q0-20 22-20zM256 554q18 0 30 13t12 31-12 30-30 12-30-12-12-30 12-31 30-13zM896 576q22 0 22 22 0 20-22 20t-22-20q0-22 22-22zM426 726q18 0 31 12t13 30-13 30-31 12-30-12-12-30 12-30 30-12zM106 224l54-54 694 694-56 54-160-162q2 4 2 12 0 18-12 30t-30 12-31-12-13-30 13-30 31-12q8 0 12 2l-120-120q-4 22-22 38t-42 16q-26 0-45-19t-19-45q0-24 16-42t38-22l-120-120q2 4 2 12 0 18-12 31t-30 13-30-13-12-31 12-30 30-12l12 2zM598 874q20 0 20 22t-20 22q-22 0-22-22t22-22zM768 298q-18 0-30-12t-12-30 12-30 30-12 30 12 12 30-12 30-30 12zM768 470q-18 0-30-13t-12-31 12-30 30-12 30 12 12 30-12 31-30 13zM768 640q-18 0-30-12t-12-30 12-31 30-13 30 13 12 31-12 30-30 12zM426 298q-18 0-30-12t-12-30 12-30 30-12 31 12 13 30-13 30-31 12zM896 448q-22 0-22-22 0-20 22-20t22 20q0 22-22 22zM426 150q-20 0-20-22t20-22q22 0 22 22t-22 22zM598 150q-22 0-22-22t22-22q20 0 20 22t-20 22zM588 490q-20-2-36-18t-18-36v-10q0-26 19-45t45-19 45 19 19 45-19 45-45 19h-10zM598 298q-18 0-31-12t-13-30 13-30 31-12 30 12 12 30-12 30-30 12z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "blur_off"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 384,
+ "paths": [
+ "M598 362q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM598 534q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM426 726q18 0 31 12t13 30-13 30-31 12-30-12-12-30 12-30 30-12zM426 362q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM598 874q20 0 20 22t-20 22q-22 0-22-22t22-22zM598 726q18 0 30 12t12 30-12 30-30 12-31-12-13-30 13-30 31-12zM896 576q22 0 22 22 0 20-22 20t-22-20q0-22 22-22zM768 214q18 0 30 12t12 30-12 30-30 12-30-12-12-30 12-30 30-12zM768 384q18 0 30 12t12 30-12 31-30 13-30-13-12-31 12-30 30-12zM768 726q18 0 30 12t12 30-12 30-30 12-30-12-12-30 12-30 30-12zM768 554q18 0 30 13t12 31-12 30-30 12-30-12-12-30 12-31 30-13zM426 534q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM426 298q-18 0-30-12t-12-30 12-30 30-12 31 12 13 30-13 30-31 12zM426 150q-20 0-20-22t20-22q22 0 22 22t-22 22zM426 874q22 0 22 22t-22 22q-20 0-20-22t20-22zM128 576q22 0 22 22 0 20-22 20t-22-20q0-22 22-22zM598 150q-22 0-22-22t22-22q20 0 20 22t-20 22zM598 298q-18 0-31-12t-13-30 13-30 31-12 30 12 12 30-12 30-30 12zM896 448q-22 0-22-22 0-20 22-20t22 20q0 22-22 22zM256 214q18 0 30 12t12 30-12 30-30 12-30-12-12-30 12-30 30-12zM128 406q22 0 22 20 0 22-22 22t-22-22q0-20 22-20zM256 384q18 0 30 12t12 30-12 31-30 13-30-13-12-31 12-30 30-12zM256 726q18 0 30 12t12 30-12 30-30 12-30-12-12-30 12-30 30-12zM256 554q18 0 30 13t12 31-12 30-30 12-30-12-12-30 12-31 30-13z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "blur_on"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 385,
+ "paths": [
+ "M86 512q0-176 125-301t301-125 301 125 125 301-125 301-301 125-301-125-125-301z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "brightness_1"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 386,
+ "paths": [
+ "M426 86q178 0 303 125t125 301-125 301-303 125q-116 0-212-56 98-56 155-155t57-215-57-215-155-155q96-56 212-56z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "brightness_2"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 387,
+ "paths": [
+ "M384 86q176 0 301 125t125 301-125 301-301 125q-68 0-128-18 132-40 215-153t83-255-83-255-215-153q60-18 128-18z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "brightness_3"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 388,
+ "paths": [
+ "M512 768q106 0 181-75t75-181-75-181-181-75q-52 0-106 24 66 30 107 93t41 139-41 139-107 93q54 24 106 24zM854 370l140 142-140 142v200h-200l-142 140-142-140h-200v-200l-140-142 140-142v-200h200l142-140 142 140h200v200z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "brightness_4"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 389,
+ "paths": [
+ "M768 488l128 128v194q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-280l128 128 170-172 172 172zM896 214v280l-128-128-170 172-172-172-170 172-128-130v-194q0-34 26-60t60-26h596q34 0 60 26t26 60z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "broken_image"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 390,
+ "paths": [
+ "M884 198q12 12 12 30t-12 30l-382 382-118-118 382-382q12-12 30-12t30 12zM298 598q52 0 90 38t38 90q0 70-50 120t-120 50q-104 0-170-86 30 0 57-23t27-61q0-52 38-90t90-38z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "brush"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 391,
+ "paths": [
+ "M420 928q8-14 86-150t120-206l156 270q-48 40-128 68t-142 28q-48 0-92-10zM104 640h414l-158 270q-92-34-159-105t-97-165zM198 224l216 374h-320q-8-48-8-86 0-68 33-152t79-136zM930 426q8 38 8 86 0 68-33 152t-79 136l-204-352-12-22h320zM920 384h-414l158-270q92 34 159 105t97 165zM402 448l-4 4-156-270q48-40 128-68t142-28q48 0 92 10z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "camera"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 392,
+ "paths": [
+ "M512 726q88 0 151-63t63-151-63-151-151-63-151 63-63 151 63 151 151 63zM384 86h256l78 84h136q34 0 59 26t25 60v512q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-512q0-34 25-60t59-26h136zM376 512q0-56 40-96t96-40 96 40 40 96-40 96-96 40-96-40-40-96z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "camera_alt",
+ "photo_camera",
+ "local_see"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 393,
+ "paths": [
+ "M298 86v448q0-48 73-78t141-30 141 30 73 78v-448h-428zM726 0q34 0 59 26t25 60v596q0 34-25 60t-59 26h-300l128 128-128 128v-86h-212v-84h212v-86h-128q-34 0-59-26t-25-60v-596q0-34 25-60t59-26h428zM512 342q-34 0-59-26t-25-60 25-60 59-26 60 26 26 60-26 60-60 26zM598 854h212v84h-212v-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "camera_front"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 394,
+ "paths": [
+ "M512 256q34 0 59-26t25-60-25-59-59-25-60 25-26 59 25 60 61 26zM726 0q34 0 59 26t25 60v596q0 34-25 60t-59 26h-300l128 128-128 128v-86h-212v-84h212v-86h-128q-34 0-59-26t-25-60v-596q0-34 25-60t59-26h428zM598 854h212v84h-212v-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "camera_rear"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 395,
+ "paths": [
+ "M854 384v-86h-86v86h86zM854 768v-86h-86v86h86zM682 384v-86h-84v86h84zM682 768v-86h-84v86h84zM512 384v-86h-86v86h86zM512 768v-86h-86v86h86zM598 214h340v640h-340q0 34-26 59t-60 25h-342q-34 0-59-25t-25-59v-640q0-34 25-60t59-26h44v-42q0-18 12-31t30-13h170q18 0 31 13t13 31v42h42q34 0 60 26t26 60z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "camera_roll"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 396,
+ "paths": [
+ "M810 810v-170h86v170q0 34-26 60t-60 26h-170v-86h170zM810 128q34 0 60 26t26 60v170h-86v-170h-170v-86h170zM214 214v170h-86v-170q0-34 26-60t60-26h170v86h-170zM214 640v170h170v86h-170q-34 0-60-26t-26-60v-170h86zM512 342q70 0 120 50t50 120-50 120-120 50-120-50-50-120 50-120 120-50z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "center_focus_strong"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 397,
+ "paths": [
+ "M512 598q34 0 60-26t26-60-26-60-60-26-60 26-26 60 26 60 60 26zM512 342q70 0 120 50t50 120-50 120-120 50-120-50-50-120 50-120 120-50zM810 810v-170h86v170q0 34-26 60t-60 26h-170v-86h170zM810 128q34 0 60 26t26 60v170h-86v-170h-170v-86h170zM214 214v170h-86v-170q0-34 26-60t60-26h170v86h-170zM214 640v170h170v86h-170q-34 0-60-26t-26-60v-170h86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "center_focus_weak"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 398,
+ "paths": [
+ "M86 256h84v598h598v84h-598q-34 0-59-25t-25-59v-598zM470 512l-128 170h512l-172-212-126 158zM938 682q0 34-25 60t-59 26h-512q-34 0-60-26t-26-60v-512q0-34 26-59t60-25h512q34 0 59 25t25 59v512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "collections",
+ "photo_library"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 399,
+ "paths": [
+ "M746 512q26 0 45-18t19-46-19-46-45-18-45 18-19 46 19 46 45 18zM618 342q26 0 45-19t19-45-19-45-45-19-45 19-19 45 19 45 45 19zM406 342q26 0 45-19t19-45-19-45-45-19-45 19-19 45 19 45 45 19zM278 512q26 0 45-18t19-46-19-46-45-18-45 18-19 46 19 46 45 18zM512 128q158 0 271 100t113 242q0 88-63 150t-151 62h-74q-28 0-46 19t-18 45q0 22 16 42t16 44q0 28-18 46t-46 18q-160 0-272-112t-112-272 112-272 272-112z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "color_lens",
+ "palette"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 400,
+ "paths": [
+ "M296 810l344-344-82-82-344 344zM884 240q30 30 0 60l-134 134 82 82-60 60-60-60-382 380h-202v-202l380-382-60-60 60-60 82 82 134-134q12-12 30-12t30 12z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "colorize"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 401,
+ "paths": [
+ "M810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-212v-384l212 256v-554h-212v-86h212zM426 768v-256l-212 256h212zM426 128v-86h86v940h-86v-86h-212q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h212z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "compare"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 402,
+ "paths": [
+ "M640 810q124 0 211-87t87-211-87-211-211-87-211 87-87 211 87 211 211 87zM640 128q160 0 272 112t112 272-112 272-272 112-272-112-112-272 112-272 272-112zM86 512q0 78 50 158t120 112v92q-112-40-184-140t-72-222 72-222 184-140v92q-78 36-124 109t-46 161zM682 342v128h128v84h-128v128h-84v-128h-128v-84h128v-128h84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "control_point_duplicate"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 403,
+ "paths": [
+ "M810 682v-340h-596v340h596zM810 256q34 0 60 26t26 60v340q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-340q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "crop_16_9"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 404,
+ "paths": [
+ "M810 768v-512h-596v512h596zM810 170q34 0 60 26t26 60v512q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-512q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "crop_3_2"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 405,
+ "paths": [
+ "M298 726h684v84h-172v172h-84v-172h-428q-34 0-59-25t-25-59v-428h-172v-84h172v-172h84v684zM726 640v-342h-342v-84h342q34 0 59 25t25 59v342h-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "crop"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 406,
+ "paths": [
+ "M810 726v-428h-596v428h596zM810 214q34 0 60 25t26 59v428q0 34-26 59t-60 25h-596q-34 0-60-25t-26-59v-428q0-34 26-59t60-25h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "crop_5_4",
+ "crop_landscape"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 407,
+ "paths": [
+ "M810 640v-256h-596v256h596zM810 298q34 0 60 26t26 60v256q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-256q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "crop_7_5"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 408,
+ "paths": [
+ "M810 810v-596h-596v596h596zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "crop_din"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 409,
+ "paths": [
+ "M810 128q34 0 60 26t26 60v170h-86v-170h-170v-86h170zM810 810v-170h86v170q0 34-26 60t-60 26h-170v-86h170zM214 640v170h170v86h-170q-34 0-60-26t-26-60v-170h86zM128 214q0-34 26-60t60-26h170v86h-170v170h-86v-170z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "crop_free"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 410,
+ "paths": [
+ "M596 524l150 202h-468l116-152 84 102zM810 810v-596h-596v596h596zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "crop_original"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 411,
+ "paths": [
+ "M726 810v-596h-428v596h428zM726 128q34 0 59 26t25 60v596q0 34-25 60t-59 26h-428q-34 0-59-26t-25-60v-596q0-34 25-60t59-26h428z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "crop_portrait"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 412,
+ "paths": [
+ "M768 768v-512h-512v512h512zM768 170q34 0 60 26t26 60v512q0 34-26 60t-60 26h-512q-34 0-60-26t-26-60v-512q0-34 26-60t60-26h512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "crop_square"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 413,
+ "paths": [
+ "M86 234h852v86h-852v-86zM86 448h852v86h-852v-86zM86 662h852v84h-852v-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "dehaze"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 414,
+ "paths": [
+ "M272 256l240 426 240-426h-480zM128 170h768l-384 684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "details"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 415,
+ "paths": [
+ "M618 682h-84v-64h84v-84h64v84h86v64h-86v86h-64v-86zM810 810v-596l-596 596h596zM256 298v64h214v-64h-214zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "exposure"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 416,
+ "paths": [
+ "M810 768h-84v-454l-128 44v-72l200-72h12v554zM170 470h342v84h-342v-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "exposure_minus_1"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 417,
+ "paths": [
+ "M86 470h340v84h-340v-84zM642 696h254v72h-368v-64l178-194q36-36 62-80 14-24 14-56 0-26-4-36-20-52-76-52-92 0-92 98h-92q0-72 48-120 50-50 136-50h4q118 0 158 88 10 22 10 62 0 28-8 50-14 38-22 50-34 54-80 100z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "exposure_minus_2"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 418,
+ "paths": [
+ "M854 768h-86v-454l-128 44v-72l200-72h14v554zM426 298v172h172v84h-172v172h-84v-172h-172v-84h172v-172h84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "exposure_plus_1"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 419,
+ "paths": [
+ "M342 298v172h170v84h-170v172h-86v-172h-170v-84h170v-172h86zM684 696h254v72h-368v-64l178-194q36-36 62-80 16-26 16-56 0-32-22-62-20-26-60-26-42 0-70 28-22 22-22 70h-92q0-72 48-120 28-28 58-38 36-12 80-12h2q118 0 158 88 12 26 12 62 0 48-32 100-24 40-34 50-28 32-46 50z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "exposure_plus_2"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 420,
+ "paths": [
+ "M598 432q0-80-22-114-8-12-28-24-14-8-36-8t-36 8q-20 12-28 24-22 34-22 114v114q0 112 50 142 14 8 36 8 42 0 64-34 24-36 24-116v-114h-2zM336 446q0-232 176-232 130 0 164 124 14 52 14 108v88h-2q0 118-48 180-28 32-56 42-32 12-72 12t-72-12q-28-10-56-42-48-54-48-180v-88z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "exposure_zero"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 421,
+ "paths": [
+ "M896 726v-598h-598v598h598zM896 42q34 0 60 26t26 60v598q0 34-26 59t-60 25h-598q-34 0-59-25t-25-59v-598q0-34 25-60t59-26h598zM598 640v-342h-86v-84h170v426h-84zM128 214v682h682v86h-682q-34 0-60-26t-26-60v-682h86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "filter_1"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 422,
+ "paths": [
+ "M726 554v86h-256v-170q0-36 24-61t60-25h86v-86h-170v-84h170q36 0 61 24t25 60v86q0 36-25 61t-61 25h-86v84h172zM896 726v-598h-598v598h598zM896 42q34 0 60 26t26 60v598q0 34-26 59t-60 25h-598q-34 0-59-25t-25-59v-598q0-34 25-60t59-26h598zM128 214v682h682v86h-682q-34 0-60-26t-26-60v-682h86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "filter_2"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 423,
+ "paths": [
+ "M726 554q0 36-25 61t-61 25h-170v-86h170v-84h-86v-86h86v-86h-170v-84h170q36 0 61 24t25 60v64q0 26-19 45t-45 19q26 0 45 19t19 45v64zM128 214v682h682v86h-682q-34 0-60-26t-26-60v-682h86zM896 726v-598h-598v598h598zM896 42q34 0 60 26t26 60v598q0 34-26 59t-60 25h-598q-34 0-59-25t-25-59v-598q0-34 25-60t59-26h598z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "filter_3"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 424,
+ "paths": [
+ "M896 726v-598h-598v598h598zM896 42q34 0 60 26t26 60v598q0 34-26 59t-60 25h-598q-34 0-59-25t-25-59v-598q0-34 25-60t59-26h598zM128 214v682h682v86h-682q-34 0-60-26t-26-60v-682h86zM680 440l152 200h-470l118-150 84 100z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "filter"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 425,
+ "paths": [
+ "M896 726v-598h-598v598h598zM896 42q34 0 60 26t26 60v598q0 34-26 59t-60 25h-598q-34 0-59-25t-25-59v-598q0-34 25-60t59-26h598zM640 640v-170h-170v-256h84v170h86v-170h86v426h-86zM128 214v682h682v86h-682q-34 0-60-26t-26-60v-682h86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "filter_4"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 426,
+ "paths": [
+ "M726 554q0 36-25 61t-61 25h-170v-86h170v-84h-170v-256h256v84h-172v86h86q36 0 61 25t25 61v84zM128 214v682h682v86h-682q-34 0-60-26t-26-60v-682h86zM896 726v-598h-598v598h598zM896 42q34 0 60 26t26 60v598q0 34-26 59t-60 25h-598q-34 0-59-25t-25-59v-598q0-34 25-60t59-26h598z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "filter_5"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 427,
+ "paths": [
+ "M554 470v84h86v-84h-86zM554 640q-36 0-60-25t-24-61v-256q0-36 24-60t60-24h172v84h-172v86h86q36 0 61 25t25 61v84q0 36-25 61t-61 25h-86zM896 726v-598h-598v598h598zM896 42q34 0 60 26t26 60v598q0 34-26 59t-60 25h-598q-34 0-59-25t-25-59v-598q0-34 25-60t59-26h598zM128 214v682h682v86h-682q-34 0-60-26t-26-60v-682h86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "filter_6"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 428,
+ "paths": [
+ "M554 640h-84l170-342h-170v-84h256v84zM896 726v-598h-598v598h598zM896 42q34 0 60 26t26 60v598q0 34-26 59t-60 25h-598q-34 0-59-25t-25-59v-598q0-34 25-60t59-26h598zM128 214v682h682v86h-682q-34 0-60-26t-26-60v-682h86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "filter_7"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 429,
+ "paths": [
+ "M554 470v84h86v-84h-86zM554 298v86h86v-86h-86zM554 640q-36 0-60-25t-24-61v-64q0-26 19-45t45-19q-26 0-45-19t-19-45v-64q0-36 24-60t60-24h86q36 0 61 24t25 60v64q0 26-19 45t-45 19q26 0 45 19t19 45v64q0 36-25 61t-61 25h-86zM896 726v-598h-598v598h598zM896 42q34 0 60 26t26 60v598q0 34-26 59t-60 25h-598q-34 0-59-25t-25-59v-598q0-34 25-60t59-26h598zM128 214v682h682v86h-682q-34 0-60-26t-26-60v-682h86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "filter_8"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 430,
+ "paths": [
+ "M640 384v-86h-86v86h86zM640 214q36 0 61 24t25 60v256q0 36-25 61t-61 25h-170v-86h170v-84h-86q-36 0-60-25t-24-61v-86q0-36 24-60t60-24h86zM896 726v-598h-598v598h598zM896 42q34 0 60 26t26 60v598q0 34-26 59t-60 25h-598q-34 0-59-25t-25-59v-598q0-34 25-60t59-26h598zM128 214v682h682v86h-682q-34 0-60-26t-26-60v-682h86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "filter_9"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 431,
+ "paths": [
+ "M896 384v-256h-598v598h598v-256h-86v84h-84v-84h-86v-86h86v-86h84v86h86zM896 42q34 0 60 26t26 60v598q0 34-26 59t-60 25h-598q-34 0-59-25t-25-59v-598q0-34 25-60t59-26h598zM470 384h42v-42h-42v42zM598 512q0 36-25 61t-61 25h-128v-86h128v-42h-42q-36 0-61-25t-25-61v-42q0-36 25-61t61-25h42q36 0 61 25t25 61v170zM128 214v682h682v86h-682q-34 0-60-26t-26-60v-682h86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "filter_9_plus"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 432,
+ "paths": [
+ "M810 810v-596h-298v256zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596zM512 470l-298 340h298v-340z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "filter_b_and_w"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 433,
+ "paths": [
+ "M512 384q52 0 90 38t38 90-38 90-90 38-90-38-38-90 38-90 90-38zM810 810v-170h86v170q0 34-26 60t-60 26h-170v-86h170zM810 128q34 0 60 26t26 60v170h-86v-170h-170v-86h170zM214 214v170h-86v-170q0-34 26-60t60-26h170v86h-170zM214 640v170h170v86h-170q-34 0-60-26t-26-60v-170h86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "filter_center_focus"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 434,
+ "paths": [
+ "M810 768q52 0 90-38t38-90-38-90-90-38h-64v-22q0-98-68-166t-166-68q-116 0-188 94 82 22 135 91t53 157h-86q0-70-50-121t-120-51-120 51-50 121 50 120 120 50h554zM826 428q82 6 140 67t58 145q0 88-63 151t-151 63h-554q-106 0-181-75t-75-181q0-94 67-169t161-85q38-72 121-123t163-51q108 0 201 76t113 182z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "filter_drama"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 435,
+ "paths": [
+ "M768 342h-512v426h512v-426zM854 854v-598h-192l-148-150-150 150h-194v598h684zM854 170q34 0 59 26t25 60v598q0 34-25 59t-59 25h-684q-34 0-59-25t-25-59v-598q0-34 25-60t59-26h172l170-170 170 170h172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "filter_frames"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 436,
+ "paths": [
+ "M598 256l384 512h-940l256-342 192 256 68-50-120-162z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "filter_hdr",
+ "landscape",
+ "terrain"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 437,
+ "paths": [
+ "M896 726v-598h-598v598h598zM896 42q34 0 60 26t26 60v598q0 34-26 59t-60 25h-598q-34 0-59-25t-25-59v-598q0-34 25-60t59-26h598zM128 214v682h682v86h-682q-34 0-60-26t-26-60v-682h86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "filter_none"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 438,
+ "paths": [
+ "M242 842l60-60q72 56 168 68v86q-54-6-121-34t-107-60zM554 850q94-12 166-68l62 60q-102 82-228 94v-86zM782 722q58-72 68-166h86q-6 52-34 119t-60 107zM640 512q0 52-38 90t-90 38-90-38-38-90 38-90 90-38 90 38 38 90zM174 554q10 94 68 166l-60 62q-82-102-94-228h86zM242 302q-56 74-68 168h-86q6-54 34-121t60-107zM850 470q-12-96-68-168l60-60q82 102 94 228h-86zM782 182l-60 60q-74-56-168-68v-86q54 6 121 34t107 60zM470 174q-96 12-168 68l-60-60q102-82 228-94v86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "filter_tilt_shift"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 439,
+ "paths": [
+ "M512 682q70 0 120-50t50-120-50-120-120-50-120 50-50 120 50 120 120 50zM636 296q70-56 162-56 68 0 128 34 0 62-38 126t-90 94q-4 2-11 6t-13 7-12 5q18 8 36 18 52 30 90 94t38 126q-60 34-128 34-92 0-162-56 4 28 4 40 0 70-35 129t-93 93q-58-34-93-93t-35-129q0-12 4-40-70 56-162 56-68 0-128-34 0-74 48-145t116-93l-36-18q-52-30-90-94t-38-126q64-36 128-36 90 0 162 58-4-28-4-40 0-70 35-129t93-93q58 34 93 93t35 129q0 12-4 40z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "filter_vintage"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 440,
+ "paths": [
+ "M470 982v-256h84v256h-84zM240 724l92-92 60 60-92 92zM632 692l60-60 92 92-60 60zM512 384q52 0 90 38t38 90-38 90-90 38-90-38-38-90 38-90 90-38zM726 470h256v84h-256v-84zM784 300l-92 92-60-60 92-92zM554 42v256h-84v-256h84zM392 332l-60 60-92-92 60-60zM298 470v84h-256v-84h256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "flare"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 441,
+ "paths": [
+ "M718 326h100l-50-156zM810 86l138 384h-82l-30-86h-136l-30 86h-82l138-384h84zM128 86h426l-170 384h170l-298 512v-384h-128v-512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "flash_auto"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 442,
+ "paths": [
+ "M726 426l-66 114-362-362v-92h428l-172 340h172zM140 128l670 672-54 54-176-178-154 262v-384h-128v-158l-212-214z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "flash_off"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 443,
+ "paths": [
+ "M298 86h428l-172 340h172l-300 512v-384h-128v-468z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "flash_on"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 444,
+ "paths": [
+ "M810 896v-86h86q0 34-26 60t-60 26zM810 554v-84h86v84h-86zM640 214v-86h86v86h-86zM810 726v-86h86v86h-86zM470 982v-940h84v940h-84zM810 128q34 0 60 26t26 60h-86v-86zM128 214q0-34 26-60t60-26h170v86h-170v596h170v86h-170q-34 0-60-26t-26-60v-596zM810 384v-86h86v86h-86zM640 896v-86h86v86h-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "flip"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 445,
+ "paths": [
+ "M810 470v-256h-596v256h84v84h86v86h86v-86h84v86h86v-86h86v-84h84zM726 768v-86h-86v86h86zM554 768v-86h-84v86h84zM384 768v-86h-86v86h86zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596zM298 384h86v86h-86v-86zM640 384h86v86h-86v-86zM470 384h84v86h86v84h-86v-84h-84v84h-86v-84h86v-86zM726 554v86h84v-86h-84zM298 554h-84v86h84v-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "gradient"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 446,
+ "paths": [
+ "M426 170q34 0 60 26t26 60-26 60-60 26-59-26-25-60 25-60 59-26zM598 342q34 0 59 25t25 59-25 60-59 26-60-26-26-60 26-59 60-25zM768 512q34 0 60 26t26 60-26 59-60 25-60-25-26-59 26-60 60-26zM598 682q34 0 59 26t25 60-25 60-59 26-60-26-26-60 26-60 60-26zM768 342q-34 0-60-26t-26-60 26-60 60-26 60 26 26 60-26 60-60 26zM256 682q34 0 60 26t26 60-26 60-60 26-60-26-26-60 26-60 60-26zM256 342q34 0 60 25t26 59-26 60-60 26-60-26-26-60 26-59 60-25zM426 512q34 0 60 26t26 60-26 59-60 25-59-25-25-59 25-60 59-26z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "grain"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 447,
+ "paths": [
+ "M682 854h62l-62-62v62zM598 854v-148l-24-24h-148v172h172zM342 598v-148l-24-24h-148v172h172zM342 854v-172h-172v172h172zM170 280v62h62zM426 536v62h62zM54 54l916 916-54 54-86-86h-660q-34 0-59-25t-25-59v-660l-86-86zM682 170v172h172v-172h-172zM342 170h-62l-86-84h660q34 0 59 25t25 59v660l-84-86v-62h-62l-86-84h148v-172h-172v148l-84-86v-62h-62l-86-84h148v-172h-172v148l-84-86v-62z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "grid_off"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 448,
+ "paths": [
+ "M854 342v-172h-172v172h172zM854 598v-172h-172v172h172zM854 854v-172h-172v172h172zM598 342v-172h-172v172h172zM598 598v-172h-172v172h172zM598 854v-172h-172v172h172zM342 342v-172h-172v172h172zM342 598v-172h-172v172h172zM342 854v-172h-172v172h172zM854 86q34 0 59 25t25 59v684q0 34-25 59t-59 25h-684q-34 0-59-25t-25-59v-684q0-34 25-59t59-25h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "grid_on"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 449,
+ "paths": [
+ "M106 106q196 198 816 812l-48 46-324-324h-144v-146l-64-64v210h-64v-106h-86v106h-64v-256h64v86h86v-86h16l-234-234zM554 448h-16l-64-64h80q26 0 45 19t19 45v82l-64-64v-18zM746 448v42h86v-42h-86zM746 640h-16l-48-46v-210h150q26 0 45 19t19 45v42q0 46-38 60l38 90h-64l-38-86h-48v86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hdr_off"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 450,
+ "paths": [
+ "M554 576v-128h-84v128h84zM554 384q26 0 45 19t19 45v128q0 26-19 45t-45 19h-148v-256h148zM278 470v-86h64v256h-64v-106h-86v106h-64v-256h64v86h86zM832 490v-42h-86v42h86zM896 490q0 40-38 60l38 90h-64l-38-86h-48v86h-64v-256h150q26 0 45 19t19 45v42z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hdr_on"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 451,
+ "paths": [
+ "M214 598q34 0 59-26t25-60-25-60-59-26-60 26-26 60 26 60 60 26zM214 342q70 0 120 50t50 120-50 120-120 50-121-50-51-120 51-120 121-50zM726 256q106 0 181 75t75 181-75 181-181 75-181-75-75-181 75-181 181-75z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hdr_strong"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 452,
+ "paths": [
+ "M726 682q70 0 120-50t50-120-50-120-120-50-121 50-51 120 51 120 121 50zM726 256q106 0 181 75t75 181-75 181-181 75-181-75-75-181 75-181 181-75zM214 342q70 0 120 50t50 120-50 120-120 50-121-50-51-120 51-120 121-50z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hdr_weak"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 453,
+ "paths": [
+ "M710 868l156-156-156-154-154 156zM598 470q-18 0-31 12t-13 30 13 30 31 12 30-12 12-30-12-30-30-12zM512 640q18 0 30-12t12-30-12-31-30-13-30 13-12 31 12 30 30 12zM426 554q18 0 31-12t13-30-13-30-31-12-30 12-12 30 12 30 30 12zM312 468l154-156-154-154-156 156zM512 384q-18 0-30 12t-12 30 12 31 30 13 30-13 12-31-12-30-30-12zM756 512l170 170q14 14 14 30t-14 30l-184 186q-12 12-30 12-20 0-32-12l-168-170-170 170q-12 12-30 12t-30-12l-186-186q-12-12-12-30t12-30l170-170-170-168q-12-12-12-32 0-18 12-30l186-184q12-12 30-12t30 12l170 170 168-170q12-12 32-12 18 0 30 12l184 184q12 12 12 30 0 20-12 32z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "healing"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 454,
+ "paths": [
+ "M854 768v-512h-684v512h684zM854 170q34 0 59 26t25 60v512q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-512q0-34 25-60t59-26h684zM512 426v86h-86v-86h86zM342 426v86h-86v-86h86zM682 598v84h-84v-84h84zM682 426v86h-84v-86h84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "image_aspect_ratio"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 455,
+ "paths": [
+ "M726 726h-214v-64h214v64zM810 810v-596l-596 596h596zM234 320v64h86v86h64v-86h86v-64h-86v-86h-64v86h-86zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "iso"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 456,
+ "paths": [
+ "M598 896q0-124 87-211t211-87v84q-88 0-151 63t-63 151h-84zM768 896q0-52 38-90t90-38v128h-128zM426 896q0-194 138-332t332-138v86q-160 0-272 112t-112 272h-86zM426 128q0 124-87 211t-211 87v-84q88 0 151-63t63-151h84zM598 128q0 194-138 332t-332 138v-86q160 0 272-112t112-272h86zM256 128q0 52-38 90t-90 38v-128h128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "leak_add"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 457,
+ "paths": [
+ "M656 494q114-68 240-68v86q-94 0-178 44zM850 688l-68-68q54-22 114-22v84q-24 0-46 6zM598 128q0 126-68 240l-62-62q44-84 44-178h86zM128 182l54-54 714 714-54 54-122-122q-38 54-38 122h-84q0-42 18-95t44-87l-62-60q-86 106-86 242h-86q0-72 33-161t79-143l-106-106q-132 112-304 112v-86q58 0 129-25t115-61l-62-62q-82 62-182 62v-84q68 0 122-38zM426 128q0 60-22 114l-68-68q6-22 6-46h84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "leak_remove"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 458,
+ "paths": [
+ "M512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "lens"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 459,
+ "paths": [
+ "M640 448v-64q0-36-24-61t-60-25h-172v86h172v86h-86v84h86v86h-172v86h172q36 0 60-25t24-61v-64q0-28-18-46t-46-18q28 0 46-18t18-46zM812 128q34 0 59 26t25 60v596q0 34-25 60t-59 26h-598q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h598z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "looks_3"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 460,
+ "paths": [
+ "M512 256q194 0 332 138t138 332h-86q0-158-112-271t-272-113-272 113-112 271h-86q0-194 138-332t332-138zM512 426q122 0 210 88t88 212h-84q0-88-63-151t-151-63-151 63-63 151h-84q0-124 88-212t210-88z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "looks"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 461,
+ "paths": [
+ "M640 726v-428h-86v172h-84v-172h-86v256h170v172h86zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "looks_4"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 462,
+ "paths": [
+ "M640 384v-86h-256v256h170v86h-170v86h170q36 0 61-25t25-61v-86q0-36-25-60t-61-24h-84v-86h170zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "looks_5"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 463,
+ "paths": [
+ "M640 384v-86h-170q-36 0-61 25t-25 61v256q0 36 25 61t61 25h84q36 0 61-25t25-61v-86q0-36-25-60t-61-24h-84v-86h170zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596zM470 640v-86h84v86h-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "looks_6"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 464,
+ "paths": [
+ "M598 726v-428h-172v86h86v342h86zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "looks_one"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 465,
+ "paths": [
+ "M640 470v-86q0-36-25-61t-61-25h-170v86h170v86h-84q-36 0-61 24t-25 60v172h256v-86h-170v-86h84q36 0 61-24t25-60zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "looks_two"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 466,
+ "paths": [
+ "M512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301v342q0 34-25 59t-59 25h-342q-176 0-301-125t-125-301 125-301 301-125zM554 298v172h172v84h-172v172h-84v-172h-172v-84h172v-172h84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "loupe"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 467,
+ "paths": [
+ "M854 810v-512h-342v44q90 0 152 61t62 151-62 152-152 62v-76q-56 0-96-40t-40-98 40-97 96-39v274q56 0 96-40t40-98-40-97-96-39v-76q-90 0-152 61t-62 151 62 152 152 62v42h342zM854 214q34 0 59 25t25 59v512q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-512q0-34 25-59t59-25h138l76-86h256l76 86h138z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "monochrome_photos"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 468,
+ "paths": [
+ "M512 128h256v170h-170v428q0 70-51 120t-121 50-120-50-50-120 50-121 120-51q42 0 86 24v-450z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "music_note"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 469,
+ "paths": [
+ "M554 688v166h256v84h-596v-84h256v-168q-104-16-177-102t-73-192q0-124 88-212t212-88 211 88 87 212q0 110-77 196t-187 100z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "nature"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 470,
+ "paths": [
+ "M192 470q-28 0-46-19t-18-45 18-45 46-19 46 19 18 45-18 45-46 19zM946 392q0 110-77 196t-187 100v166h128v84h-682v-212h-42v-172q0-18 12-30t30-12h128q18 0 30 12t12 30v172h-42v128h342v-168q-104-16-177-102t-73-192q0-124 88-212t212-88 211 88 87 212z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "nature_people"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 471,
+ "paths": [
+ "M658 316l-196 196 196 196-60 60-256-256 256-256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "navigate_before",
+ "chevron_left"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 472,
+ "paths": [
+ "M426 256l256 256-256 256-60-60 196-196-196-196z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "navigate_next",
+ "chevron_right"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 473,
+ "paths": [
+ "M362 534l-148 192h596l-192-256-148 192zM982 768q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-512q0-34 26-60t60-26h768q34 0 60 26t26 60v512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "panorama"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 474,
+ "paths": [
+ "M512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "panorama_fish_eye",
+ "radio_button_unchecked"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 475,
+ "paths": [
+ "M914 170q24 0 24 28v628q0 28-24 28-4 0-12-4-192-70-390-70t-390 70q-8 4-12 4-24 0-24-28v-628q0-28 24-28 4 0 12 4 192 70 390 70t390-70q8-4 12-4zM854 280q-156 48-342 48-176 0-342-48v464q164-48 342-48 176 0 342 48v-464z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "panorama_horizontal"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 476,
+ "paths": [
+ "M280 854h464q-48-166-48-342t48-342h-464q48 164 48 342 0 176-48 342zM850 902q4 8 4 12 0 24-28 24h-628q-28 0-28-24 0-4 4-12 70-192 70-390t-70-390q-4-8-4-12 0-24 28-24h628q28 0 28 24 0 4-4 12-70 192-70 390t70 390z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "panorama_vertical"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 477,
+ "paths": [
+ "M512 170q154 0 340 32l38 6 12 38q36 132 36 266t-36 266l-12 38-38 6q-186 32-340 32t-340-32l-38-6-12-38q-36-132-36-266t36-266l12-38 38-6q186-32 340-32zM512 256q-140 0-312 28-30 116-30 228t30 228q172 28 312 28t312-28q30-116 30-228t-30-228q-172-28-312-28z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "panorama_wide_angle"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 478,
+ "paths": [
+ "M256 810h512l-164-218-128 164-92-110zM256 170v342l106-64 108 64v-342h-214zM768 86q34 0 60 25t26 59v684q0 34-26 59t-60 25h-512q-34 0-60-25t-26-59v-684q0-34 26-59t60-25h512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "photo_album"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 479,
+ "paths": [
+ "M598 490v-128h42v128h-42zM170 256v598h598v84h-598q-34 0-59-25t-25-59v-598h84zM384 406v-44h42v44h-42zM874 362v-64h-128v256h64v-84h64v-64h-64v-44h64zM704 490v-128q0-26-18-45t-46-19h-106v256h106q28 0 46-19t18-45zM490 406v-44q0-26-19-45t-45-19h-106v256h64v-84h42q26 0 45-19t19-45zM854 86q34 0 59 25t25 59v512q0 34-25 60t-59 26h-512q-34 0-60-26t-26-60v-512q0-34 26-59t60-25h512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "picture_as_pdf"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 480,
+ "paths": [
+ "M810 810v-596h-596v596h596zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596zM704 694v32h-384v-32q0-44 66-70t126-26 126 26 66 70zM512 522q-40 0-68-29t-28-67 28-67 68-29 68 29 28 67-28 67-68 29z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "portrait"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 481,
+ "paths": [
+ "M512 384q52 0 90 38t38 90-38 90-90 38-90-38-38-90 38-90 90-38zM512 726q88 0 151-63t63-151-63-151-151-63-151 63-63 151 63 151 151 63zM512 192q158 0 286 88t184 232q-56 144-184 232t-286 88-286-88-184-232q56-144 184-232t286-88z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "remove_red_eye",
+ "visibility"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 482,
+ "paths": [
+ "M826 284q46 46 79 125t33 145-33 146-79 126q-110 112-272 112-98 0-184-48l64-62q60 26 122 26 50 0 112-26t98-62 62-99 26-113-26-112-62-98q-88-88-212-88v138l-180-180 180-182v138h2q66 0 145 34t125 80zM158 550l156 156 156-156-156-156zM314 274l276 276-276 276-278-276z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "rotate_90_degrees_ccw"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 483,
+ "paths": [
+ "M554 174q126 16 213 112t87 226-87 226-213 112v-86q92-16 153-87t61-165-61-165-153-87v166l-194-190 194-194v132zM302 782l62-62q46 34 106 44v86q-96-12-168-68zM260 554q10 58 42 106l-60 60q-56-74-68-166h86zM304 364q-36 52-44 106h-86q12-90 70-166z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "rotate_left"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 484,
+ "paths": [
+ "M720 660q34-46 44-106h86q-12 92-68 166zM554 764q60-10 106-44l62 62q-72 56-168 68v-86zM850 470h-86q-10-60-44-106l62-60q58 72 68 166zM664 236l-194 190v-166q-92 16-153 87t-61 165 61 165 153 87v86q-126-16-213-112t-87-226 87-226 213-112v-132z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "rotate_right"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 485,
+ "paths": [
+ "M810 810v-596h-596v596h596zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596zM426 342l214 170-214 170v-340z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "slideshow"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 486,
+ "paths": [
+ "M896 682v-340h-86v170h-84v-170h-86v170h-86v-170h-84v170h-86v-170h-86v170h-84v-170h-86v340h768zM896 256q34 0 60 26t26 60v340q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-340q0-34 26-60t60-26h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "straighten"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 487,
+ "paths": [
+ "M250 842v-270l148 356h-62q-34 0-60-26t-26-60zM336 374q18 0 30-13t12-31-12-30-30-12-30 12-12 30 12 31 30 13zM940 680q6 12 6 32 0 24-15 48t-37 32l-314 130q-12 6-32 6-24 0-47-15t-33-37l-212-512q-6-12-6-32 0-24 15-46t37-32l316-130q18-6 34-6 22 0 44 15t32 37zM108 838q-32-14-46-46t0-64l104-250v384z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "style"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 488,
+ "paths": [
+ "M640 662l150-150-150-150v108h-256v-108l-150 150 150 150v-108h256v108zM854 170q34 0 59 26t25 60v512q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-512q0-34 25-60t59-26h136l78-84h256l78 84h136z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "switch_camera"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 489,
+ "paths": [
+ "M554 662l150-150-150-150v108h-256v-108l-148 150 148 150v-108h256v108zM768 406l170-172v556l-170-172v150q0 18-12 30t-30 12h-598q-18 0-30-12t-12-30v-512q0-18 12-30t30-12h598q18 0 30 12t12 30v150z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "switch_video"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 490,
+ "paths": [
+ "M396 896l500-500v122l-378 378h-122zM896 810q0 34-26 60t-60 26h-84l170-170v84zM214 128h84l-170 170v-84q0-34 26-60t60-26zM506 128h122l-500 500v-122zM832 132q50 14 62 60l-702 700q-46-14-60-60z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "texture"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 491,
+ "paths": [
+ "M512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125zM692 332q32 32 54 84t22 96-21 96-53 84q-74 76-180 76t-182-76l180-180v-256q44 0 96 22t84 54z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "timelapse"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 492,
+ "paths": [
+ "M550 564v-108q0-72-20-106-14-30-60-30-20 0-36 6-46 28-46 132v106q0 48 4 66 2 10 18 42t60 32 60-32q12-24 16-42t4-66zM304 470q0-218 166-218 82 0 120 48 44 56 44 170v82q0 220-164 220-166 0-166-220v-82zM872 446q-60 0-60 46 0 28 38 40 12 4 38 10 18 4 56 16 16 6 44 24 16 10 26 32 10 20 10 42 0 74-88 104-24 8-60 8-114 0-148-78-10-24-10-44h82q0 28 22 44t54 16q66 0 66-46 0-12-6-21t-12-12-20-9-49-15-47-13q-16-6-40-22-38-26-38-72 0-76 84-104 24-8 58-8 70 0 110 34 40 32 40 84h-84q0-42-36-50-24-6-30-6zM0 330l202-74h12v512h-86v-410l-128 44v-72z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "timer_10"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 493,
+ "paths": [
+ "M748 446q-26 0-44 12t-18 34v2q0 24 40 38 14 6 36 10t58 16q16 6 44 24 14 10 26 32 10 20 10 42 0 74-88 104-24 8-62 8-112 0-146-78-10-24-10-44h80q0 26 23 43t55 17q66 0 66-46 0-12-6-21t-12-12-20-9q-10-4-42-12-56-12-96-38-36-24-36-72 0-76 84-104 24-8 58-8 70 0 110 34 40 32 40 84h-84q0-40-38-50-24-6-28-6zM430 506q84 28 84 116 0 74-48 110-46 40-120 40t-121-38-47-106h86q0 40 22 56 26 20 60 20 84 0 84-82t-92-82h-52v-66h50q64 0 82-46 4-10 4-32 0-76-76-76-52 0-72 40-6 12-6 30h-84q0-90 96-128 34-10 66-10 76 0 118 36t42 108-76 110z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "timer_3"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 494,
+ "paths": [
+ "M512 854q124 0 211-88t87-212-87-211-211-87-211 87-87 211 87 212 211 88zM812 316q34 44 59 113t25 125q0 158-112 271t-272 113-272-113-112-271 112-271 272-113q54 0 125 26t115 60l60-62q32 26 60 60zM470 598v-256h84v256h-84zM640 42v86h-256v-86h256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "timer"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 495,
+ "paths": [
+ "M512 854q78 0 150-42l-408-408q-40 68-40 150 0 124 87 212t211 88zM128 170l758 758-54 54-108-108q-100 64-212 64-160 0-272-113t-112-271q0-48 19-111t45-101l-118-118zM470 402v-60h84v146zM640 42v86h-256v-86h256zM812 194l60 60-60 62q84 106 84 238v2q0 48-19 110t-45 100l-62-62q40-68 40-150 0-124-87-211t-211-87q-80 0-148 40l-64-62q102-64 212-64 56 0 126 25t114 59z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "timer_off"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 496,
+ "paths": [
+ "M842 598q4-12 8-44h-296v44h288zM778 726q24-34 30-44h-254v44h224zM554 850q64-8 124-40h-124v40zM554 426v44h296q-4-32-8-44h-288zM554 298v44h254q-6-10-30-44h-224zM554 174v40h124q-60-32-124-40zM470 850v-676q-126 16-213 112t-87 226 87 226 213 112zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tonality"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 497,
+ "paths": [
+ "M426 342v-86h256q34 0 60 26t26 60v256h-86v-256h-256zM938 768h-170v86h86l-128 128-128-128h84v-86h-340q-34 0-60-26t-26-60v-340h-170v-86h170v-86h-86l128-128 128 128h-84v512h596v86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "transform"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 498,
+ "paths": [
+ "M640 384v-256h86v86h170v84h-170v86h-86zM896 554h-426v-84h426v84zM298 384h86v256h-86v-86h-170v-84h170v-86zM554 896h-84v-256h84v86h342v84h-342v86zM128 214h426v84h-426v-84zM128 726h256v84h-256v-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tune"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 499,
+ "paths": [
+ "M768 214h170v170h-170v-170zM768 810v-170h170v170h-170zM554 810v-170h172v170h-172zM342 810v-170h170v170h-170zM128 810v-170h170v170h-170zM768 598v-172h170v172h-170zM554 214h172v170h-172v-170zM342 384v-170h170v170h-170zM554 598v-172h172v172h-172zM342 598v-172h170v172h-170zM128 598v-172h170v172h-170zM128 384v-170h170v170h-170z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "view_comfortable"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 500,
+ "paths": [
+ "M128 214h810v256h-810v-256zM426 810v-298h512v298h-512zM128 810v-298h256v298h-256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "view_compact"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 501,
+ "paths": [
+ "M440 682h80l-136-384h-86l-136 384h82l30-84h136zM938 298h78l-88 384h-74l-64-260-64 260h-76l-4-18q-42 86-124 138t-180 52q-142 0-242-101t-100-241 100-241 242-101q164 0 266 128h32l52 270 64-270h68l64 270zM292 540l50-156 48 156h-98z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wb_auto"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 502,
+ "paths": [
+ "M826 428q82 6 140 67t58 145q0 88-63 151t-151 63h-554q-106 0-181-75t-75-181q0-94 67-169t161-85q42-78 118-126t166-48q116 0 204 73t110 185z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wb_cloudy"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 503,
+ "paths": [
+ "M736 774l60-58 76 76-60 60zM854 448h128v86h-128v-86zM640 270q58 34 93 92t35 128q0 106-75 181t-181 75-181-75-75-181q0-70 35-128t93-92v-206h256v206zM170 448v86h-128v-86h128zM470 958v-126h84v126h-84zM152 792l76-78 60 60-76 78z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wb_incandescent"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 504,
+ "paths": [
+ "M152 792l76-78 60 60-76 78zM470 958v-126h84v126h-84zM512 234q106 0 181 75t75 181-75 181-181 75-181-75-75-181 75-181 181-75zM854 448h128v86h-128v-86zM736 774l60-58 76 76-60 60zM872 190l-76 76-60-60 76-76zM554 24v126h-84v-126h84zM170 448v86h-128v-86h128zM288 206l-60 60-76-76 60-60z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wb_sunny"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 505,
+ "paths": [
+ "M854 512v-342h-214v342l106-64zM854 86q34 0 59 25t25 59v512q0 34-25 60t-59 26h-512q-34 0-60-26t-26-60v-512q0-34 26-59t60-25h512zM170 256v598h598v84h-598q-34 0-59-25t-25-59v-598h84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "collections_bookmark"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 506,
+ "paths": [
+ "M214 726h596l-192-256-148 192-108-128zM896 128q32 0 59 27t27 59v596q0 32-27 59t-59 27h-768q-34 0-60-26t-26-60v-596q0-32 27-59t59-27h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "photo_size_select_actual"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 507,
+ "paths": [
+ "M128 810h426l-136-182-106 138-78-92zM42 470h598v426h-512q-34 0-60-26t-26-60v-340zM214 128h84v86h-84v-86zM384 128h86v86h-86v-86zM128 128v86h-86q0-32 27-59t59-27zM726 810h84v86h-84v-86zM726 128h84v86h-84v-86zM42 298h86v86h-86v-86zM896 128q32 0 59 27t27 59h-86v-86zM896 298h86v86h-86v-86zM554 128h86v86h-86v-86zM982 810q0 32-27 59t-59 27v-86h86zM896 470h86v84h-86v-84zM896 640h86v86h-86v-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "photo_size_select_large"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 508,
+ "paths": [
+ "M298 128v86h-84v-86h84zM470 128v86h-86v-86h86zM128 470v84h-86v-84h86zM128 128v86h-86q0-32 27-59t59-27zM810 810v86h-84v-86h84zM810 128v86h-84v-86h84zM640 810v86h-86v-86h86zM128 298v86h-86v-86h86zM128 896q-34 0-60-26t-26-60v-170h428v256h-342zM896 128q32 0 59 27t27 59h-86v-86zM982 298v86h-86v-86h86zM640 128v86h-86v-86h86zM982 810q0 32-27 59t-59 27v-86h86zM982 470v84h-86v-84h86zM982 640v86h-86v-86h86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "photo_size_select_small"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 509,
+ "paths": [
+ "M512 768q142 0 242-75t100-181-100-181-242-75-242 75-100 181 100 181 242 75zM896 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "vignette"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 510,
+ "paths": [
+ "M212 852l-60-62 76-76 60 60zM152 190l60-60 76 76-60 60zM872 792l-60 60-76-78 60-60zM554 958h-84v-126h84v126zM812 130l60 60-76 76-60-60zM470 24h84v126h-84v-126zM214 618v-256h596v256h-596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wb_iridescent"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 511,
+ "paths": [
+ "M342 682h512v86h-86v86h-86v-86h-340q-36 0-61-25t-25-61v-340h-86v-86h86v-86h86v512zM682 598v-256h-256v-86h256q36 0 61 25t25 61v256h-86zM514 0q200 0 347 136t163 334h-64q-12-120-80-216t-174-146l-58 56-162-162q6 0 14-1t14-1zM318 916l58-56 162 162q-6 0-14 1t-14 1q-200 0-347-136t-163-334h64q12 120 80 216t174 146z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "crop_rotate"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 512,
+ "paths": [
+ "M682 256q36 0 61 25t25 61h56q0-58-42-100t-100-42v56zM512 810q88 0 151-62t63-150-63-151-151-63-151 63-63 151 63 150 151 62zM726 384h212v470q0 34-25 59t-59 25h-684q-34 0-59-25t-25-59v-512q0-34 25-60t59-26h136l78-86h256v128q36 0 61 25t25 61zM682 142v-56q106 0 181 75t75 181h-56q0-82-59-141t-141-59zM376 598q0-58 40-98t96-40 96 40 40 98-40 97-96 39-96-39-40-97z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "linked_camera"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 513,
+ "paths": [
+ "M418 598q0-58 40-98t96-40q58 0 98 40t40 98q0 56-40 96t-98 40-97-39-39-97zM554 810q88 0 151-62t63-150-63-151-151-63-150 63-62 151 62 150 150 62zM256 426v-128h128v-128h298l78 86h136q34 0 60 26t26 60v512q0 34-26 59t-60 25h-682q-34 0-60-25t-26-59v-428h128zM128 170v-128h86v128h128v86h-128v128h-86v-128h-128v-86h128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "add_a_photo"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 514,
+ "paths": [
+ "M722 510l88-40-88-40-40-88-40 88-88 40 88 40 40 88zM480 650l118-52-118-54-54-118-52 118-118 54 118 52 52 118zM768 170h170v598q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-512q0-34 25-60t59-26h44l84 128h128l-84-128h84l86 128h128l-86-128h86l86 128h128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "movie_filter"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 515,
+ "paths": [
+ "M566 458l116 54-116 54-54 116-54-116-116-54 116-54 54-116zM726 426l-40-88-88-40 88-40 40-88 40 88 88 40-88 40zM812 426h84v384q0 34-25 60t-59 26h-598q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h384v86h-384v596h598v-384z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "photo_filter"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 516,
+ "paths": [
+ "M470 726h426l-136-180-108 136-76-92zM938 214q18 0 31 12t13 30v512q0 18-13 30t-31 12h-512q-18 0-30-12t-12-30v-512q0-18 12-30t30-12h512zM214 214h84v596h-84v-596zM42 214h86v596h-86v-596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "burst_mode"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 517,
+ "paths": [
+ "M568 306l-116 200-98-152q72-56 158-56 20 0 56 8zM698 730l-120-218h186q4 28 4 42v2q0 42-20 93t-50 81zM322 384l140 214h-202q-4-28-4-44 0-40 19-90t47-80zM452 804l122-210 90 166q-66 50-152 50-30 0-60-6zM754 470h-230l86-152q44 18 87 63t57 89zM498 640l-86 150q-44-18-85-62t-57-88h228zM512 854q124 0 211-88t87-212-87-211-211-87-211 87-87 211 87 212 211 88zM812 316q34 44 59 113t25 125q0 158-112 271t-272 113-272-113-112-271 112-271 272-113q54 0 125 26t115 60l60-62q32 26 60 60zM640 42v86h-256v-86h256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "shutter_speed"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 518,
+ "paths": [
+ "M214 810h512l-172-212-128 170-84-128zM682 470h128v340q0 34-25 60t-59 26h-512q-34 0-60-26t-26-60v-512q0-34 26-59t60-25h340v128h128v128zM810 298v128h-84v-128h-128v-84h128v-128h84v128h128v84h-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "add_photo_alternate"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 519,
+ "paths": [
+ "M662 384q44 0 75-31t31-75-31-76-75-32-76 32-32 76 32 75 76 31zM824 380l132 132-60 60-134-132q-50 30-102 30-80 0-135-56t-55-136 56-136 136-56 136 56 56 136q0 52-30 102zM704 768h-470l118-150 84 100 116-150zM768 554l86 86v214q0 34-26 59t-60 25h-598q-34 0-59-25t-25-59v-598q0-34 25-60t59-26h236q-20 42-22 86h-214v598h598v-300z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "image_search"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 520,
+ "paths": [
+ "M598 298v136l-86-84v-222h256v170h-170zM182 128l714 714-54 54-244-244v74q0 70-51 120t-121 50-120-50-50-120 50-121 120-51q42 0 86 24v-12l-384-384z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "music_off"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 521,
+ "paths": [
+ "M426 682l384-384-60-60-324 324-152-152-60 60zM810 42q34 0 60 26t26 60v552q0 42-38 70l-346 232-346-232q-38-28-38-70v-552q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "beenhere"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 522,
+ "paths": [
+ "M598 618l148-148-148-150v106h-214q-18 0-30 13t-12 31v170h84v-128h172v106zM926 482q12 12 12 30t-12 30l-384 384q-12 12-30 12t-30-12l-384-384q-12-12-12-30t12-30l384-384q12-12 30-12t30 12z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "directions"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 523,
+ "paths": [
+ "M810 874q62 0 106-43t44-105-44-106-106-44-105 44-43 106 43 105 105 43zM810 512q90 0 152 62t62 152-62 151-152 61-151-61-61-151 61-152 151-62zM460 448l94 98v264h-84v-212l-138-120q-24-16-24-60 0-36 24-60l120-120q16-24 60-24 38 0 68 24l82 82q64 64 152 64v86q-126 0-216-90l-34-34zM214 874q62 0 105-43t43-105-43-106-105-44-106 44-44 106 44 105 106 43zM214 512q90 0 151 62t61 152-61 151-151 61-152-61-62-151 62-152 152-62zM662 234q-34 0-60-25t-26-59 26-60 60-26 59 26 25 60-25 59-59 25z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "directions_bike"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 524,
+ "paths": [
+ "M768 470v-214h-512v214h512zM704 726q28 0 46-19t18-45-18-45-46-19-46 19-18 45 18 45 46 19zM320 726q28 0 46-19t18-45-18-45-46-19-46 19-18 45 18 45 46 19zM170 682v-426q0-102 88-136t254-34 254 34 88 136v426q0 56-44 96v76q0 18-12 30t-30 12h-42q-18 0-31-12t-13-30v-44h-340v44q0 18-13 30t-31 12h-42q-18 0-30-12t-12-30v-76q-44-40-44-96z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "directions_bus"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 525,
+ "paths": [
+ "M214 470h596l-64-192h-468zM746 682q26 0 45-19t19-45-19-45-45-19-45 19-19 45 19 45 45 19zM278 682q26 0 45-19t19-45-19-45-45-19-45 19-19 45 19 45 45 19zM808 256l88 256v342q0 18-12 30t-30 12h-44q-18 0-30-12t-12-30v-44h-512v44q0 18-12 30t-30 12h-44q-18 0-30-12t-12-30v-342l88-256q12-42 62-42h468q50 0 62 42z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "directions_car"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 526,
+ "paths": [
+ "M256 256v170l256-84 256 84v-170h-512zM168 810l-80-284q-2-4-2-14 0-28 30-40l54-18v-198q0-34 26-60t60-26h128v-128h256v128h128q34 0 60 26t26 60v198l54 18q42 14 28 54l-80 284h-2q-98 0-172-84-74 84-170 84t-170-84q-74 84-172 84h-2zM854 896h84v86h-84q-90 0-172-42-80 40-170 40t-170-40q-82 42-172 42h-84v-86h84q92 0 172-56 78 54 170 54t170-54q80 56 172 56z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "directions_ferry"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 527,
+ "paths": [
+ "M768 470v-214h-214v214h214zM704 726q28 0 46-19t18-45-18-45-46-19-46 19-18 45 18 45 46 19zM470 470v-214h-214v214h214zM320 726q28 0 46-19t18-45-18-45-46-19-46 19-18 45 18 45 46 19zM512 86q166 0 254 34t88 136v406q0 62-44 105t-106 43l64 64v22h-512v-22l64-64q-62 0-106-43t-44-105v-406q0-102 88-136t254-34z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "directions_subway",
+ "directions_transit"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 528,
+ "paths": [
+ "M768 426v-212h-512v212h512zM512 726q34 0 60-26t26-60-26-60-60-26-60 26-26 60 26 60 60 26zM170 662v-448q0-102 88-137t254-35 254 35 88 137v448q0 62-44 105t-106 43l64 64v22h-512v-22l64-64q-62 0-106-43t-44-105z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "directions_railway"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 529,
+ "paths": [
+ "M418 380l-120 602h90l78-342 88 86v256h86v-320l-90-86 26-128q92 106 234 106v-84q-124 0-182-104l-44-68q-30-42-72-42-6 0-17 2t-17 2l-222 94v200h86v-144l76-30zM576 234q-34 0-60-25t-26-59 26-60 60-26 60 26 26 60-26 59-60 25z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "directions_walk"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 530,
+ "paths": [
+ "M810 298q70 0 121 51t51 121v384h-86v-128h-768v128h-86v-640h86v384h342v-300h340zM298 554q-52 0-90-38t-38-90 38-90 90-38 90 38 38 90-38 90-90 38z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hotel",
+ "local_hotel"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 531,
+ "paths": [
+ "M512 682q-18-14-163-127t-221-171l384-298 384 298q-76 58-220 170t-164 128zM512 792l314-246 70 54-384 298-384-298 70-54z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "layers"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 532,
+ "paths": [
+ "M140 42l798 800-54 54-160-162-212 164-384-298 70-54 314 246 150-118-60-60-90 68q-18-14-163-127t-221-171l138-108-180-180zM896 384q-54 42-172 134l-336-336 124-96zM846 640l-62-62 50-38 62 60z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "layers_clear"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 533,
+ "paths": [
+ "M854 768v-512h-684v512h684zM854 170q36 0 60 25t24 61v512q0 36-24 61t-60 25h-684q-36 0-60-25t-24-61v-512q0-36 24-61t60-25h684zM470 726v-44h-86v-84h170v-44h-128q-18 0-30-12t-12-30v-128q0-18 12-30t30-12h44v-44h84v44h86v84h-170v44h128q18 0 30 12t12 30v128q0 18-12 30t-30 12h-44v44h-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "local_atm"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 534,
+ "paths": [
+ "M664 716l-46-174 140-116-180-10-66-168-66 168-182 10 142 116-46 174 152-98zM854 512q0 34 25 60t59 26v170q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-170q36 0 60-25t24-61q0-34-25-60t-59-26v-170q0-34 25-60t59-26h684q34 0 59 26t25 60v170q-34 0-59 26t-25 60z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "local_attraction",
+ "local_play"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 535,
+ "paths": [
+ "M318 298h388l76-84h-540zM896 214l-342 384v212h214v86h-512v-86h214v-212l-342-384v-86h768v86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "local_bar"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 536,
+ "paths": [
+ "M170 810h684v86h-684v-86zM854 342v-128h-86v128h86zM854 128q36 0 60 25t24 61v128q0 36-24 60t-60 24h-86v128q0 70-50 121t-120 51h-256q-70 0-121-51t-51-121v-426h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "local_cafe",
+ "free_breakfast"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 537,
+ "paths": [
+ "M214 554h596l-64-192h-468zM746 768q26 0 45-18t19-46-19-46-45-18-45 18-19 46 19 46 45 18zM278 768q26 0 45-18t19-46-19-46-45-18-45 18-19 46 19 46 45 18zM808 342l88 256v340q0 18-12 31t-30 13h-44q-18 0-30-13t-12-31v-42h-512v42q0 18-12 31t-30 13h-44q-18 0-30-13t-12-31v-340l88-256q14-44 62-44h468q48 0 62 44zM298 214q-26 0-45-19t-19-45q0-18 16-47t32-49l16-20q64 74 64 116 0 26-19 45t-45 19zM512 214q-28 0-46-19t-18-45q0-18 16-47t32-49l16-20q64 74 64 116 0 26-18 45t-46 19zM726 214q-26 0-45-19t-19-45q0-18 16-47t32-49l16-20q64 74 64 116 0 26-19 45t-45 19z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "local_car_wash"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 538,
+ "paths": [
+ "M682 512v-214h-42v86h-42v-86h-44v128h86v86h42zM470 426v-128h-128v44h84v42h-84v128h128v-42h-86v-44h86zM810 298h128v556h-340v-172h-172v172h-340v-556h128v-128h596v128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "local_convenience_store"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 539,
+ "paths": [
+ "M782 342l18-172h-576l18 172h540zM512 810q52 0 90-38t38-90q0-38-32-96t-64-96l-32-38q-128 144-128 230 0 52 38 90t90 38zM128 86h768l-86 778q-4 32-28 53t-56 21h-428q-32 0-56-21t-28-53z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "local_drink"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 540,
+ "paths": [
+ "M512 234q-44 0-75 32t-31 76 31 75 75 31 75-31 31-75-31-76-75-32zM238 438q0-66 62-96-62-30-62-96 0-44 32-76t76-32q30 0 60 20v-8q0-44 31-76t75-32 75 32 31 76v8q32-20 60-20 44 0 76 32t32 76q0 66-62 96 62 30 62 96 0 44-32 75t-76 31q-34 0-60-18v8q0 44-31 75t-75 31-75-31-31-75v-8q-28 18-60 18-44 0-76-31t-32-75zM512 938q-160 0-272-113t-112-271q160 0 272 113t112 271zM512 938q0-158 112-271t272-113q0 158-112 271t-272 113z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "local_florist"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 541,
+ "paths": [
+ "M768 426q18 0 30-12t12-30-12-30-30-12-30 12-12 30 12 30 30 12zM512 426v-212h-256v212h256zM844 308q30 30 30 76v406q0 44-31 75t-75 31-75-31-31-75v-214h-64v320h-428v-682q0-34 26-60t60-26h256q34 0 60 26t26 60v298h42q34 0 60 26t26 60v192q0 18 12 30t30 12 30-12 12-30v-308q-18 8-42 8-44 0-75-31t-31-75q0-72 68-100l-90-90 46-44z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "local_gas_station"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 542,
+ "paths": [
+ "M726 768q34 0 59 26t25 60-25 59-59 25-60-25-26-59 26-60 60-26zM42 86h140l40 84h632q18 0 30 13t12 31q0 2-6 20l-152 276q-24 44-74 44h-318l-38 70-2 6q0 10 10 10h494v86h-512q-34 0-59-26t-25-60q0-20 10-40l58-106-154-324h-86v-84zM298 768q34 0 60 26t26 60-26 59-60 25-59-25-25-59 25-60 59-26z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "local_grocery_store",
+ "shopping_cart"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 543,
+ "paths": [
+ "M768 598v-172h-170v-170h-172v170h-170v172h170v170h172v-170h170zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "local_hospital"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 544,
+ "paths": [
+ "M512 854q106 0 181-75t75-181-75-181-181-75-181 75-75 181 75 181 181 75zM298 170q-18 0-30 13t-12 31 12 30 30 12 31-12 13-30-13-31-31-13zM426 170q-18 0-30 13t-12 31 12 30 30 12 31-12 13-30-13-31-31-13zM768 86q36 0 61 24t25 60v684q0 36-25 60t-61 24h-512q-36 0-61-24t-25-60v-684q0-36 25-60t61-24h512zM392 718l240-242q50 50 50 122 0 70-50 120t-120 50-120-50z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "local_laundry_service"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 545,
+ "paths": [
+ "M512 342q-52 0-90-38t-38-90 38-90 90-38 90 38 38 90-38 90-90 38zM512 492q160-150 384-150v468q-222 0-384 152-162-152-384-152v-468q224 0 384 150z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "local_library"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 546,
+ "paths": [
+ "M512 554q88 0 151-62t63-150h-86q0 52-38 90t-90 38-90-38-38-90h-86q0 88 63 150t151 62zM512 128q-52 0-90 38t-38 90h256q0-52-38-90t-90-38zM810 256q34 0 60 26t26 60v512q0 34-26 59t-60 25h-596q-34 0-60-25t-26-59v-512q0-34 26-60t60-26h84q0-88 63-151t151-63 151 63 63 151h84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "local_mall"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 547,
+ "paths": [
+ "M768 384v-86h-86v86h86zM768 554v-84h-86v84h86zM768 726v-86h-86v86h86zM342 384v-86h-86v86h86zM342 554v-84h-86v84h86zM342 726v-86h-86v86h86zM768 128h86v768h-86v-86h-86v86h-340v-86h-86v86h-86v-768h86v86h86v-86h340v86h86v-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "local_movies",
+ "theaters"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 548,
+ "paths": [
+ "M234 298q26 0 45-19t19-45-19-45-45-19-45 19-19 45 19 45 45 19zM914 494q24 24 24 60t-24 60l-300 300q-24 24-60 24t-60-24l-384-384q-24-24-24-60v-300q0-34 25-59t59-25h300q36 0 60 24z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "local_offer"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 549,
+ "paths": [
+ "M564 470q34 0 59-26t25-60-25-60-59-26h-138v172h138zM554 128q106 0 181 75t75 181-75 181-181 75h-128v256h-170v-768h298z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "local_parking"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 550,
+ "paths": [
+ "M682 598v-86h-128v-128h-84v128h-128v86h128v128h84v-128h128zM896 214v84l-86 256 86 256v86h-768v-86l86-256-86-256v-84h542l62-172 100 38-48 134h112z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "local_pharmacy"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 551,
+ "paths": [
+ "M512 640q34 0 60-26t26-60-26-59-60-25-60 25-26 59 26 60 60 26zM298 298q0 34 26 60t60 26 60-26 26-60-26-59-60-25-60 25-26 59zM512 86q230 0 384 170l-384 682-384-682q154-170 384-170z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "local_pizza"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 552,
+ "paths": [
+ "M768 128v170h-512v-170h512zM810 512q18 0 31-12t13-30-13-31-31-13-30 13-12 31 12 30 30 12zM682 810v-212h-340v212h340zM810 342q52 0 90 38t38 90v256h-170v170h-512v-170h-170v-256q0-52 38-90t90-38h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "local_print_shop",
+ "print"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 553,
+ "paths": [
+ "M634 492l-62 62 294 294-60 60-294-294-294 294-60-60 416-416q-24-48-7-112t67-114q62-62 138-71t122 37 37 123-71 139q-50 50-114 66t-112-8zM346 570l-180-180q-50-50-50-120t50-120l300 298z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "local_restaurant",
+ "restaurant_menu"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 554,
+ "paths": [
+ "M768 790q28 0 46-19t18-45-18-45-46-19-46 19-18 45 18 45 46 19zM832 406h-106v106h190zM256 790q28 0 46-19t18-45-18-45-46-19-46 19-18 45 18 45 46 19zM854 342l128 170v214h-86q0 52-38 90t-90 38-90-38-38-90h-256q0 52-38 90t-90 38-90-38-38-90h-86v-470q0-34 26-60t60-26h598v172h128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "local_shipping"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 555,
+ "paths": [
+ "M214 470h596l-64-192h-468zM746 682q26 0 45-19t19-45-19-45-45-19-45 19-19 45 19 45 45 19zM278 682q26 0 45-19t19-45-19-45-45-19-45 19-19 45 19 45 45 19zM808 256l88 256v342q0 18-12 30t-30 12h-44q-18 0-30-12t-12-30v-44h-512v44q0 18-12 30t-30 12h-44q-18 0-30-12t-12-30v-342l88-256q12-42 62-42h106v-86h256v86h106q50 0 62 42z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "local_taxi"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 556,
+ "paths": [
+ "M512 780q70 0 144-40t112-96q-2-56-90-94t-166-38-166 37-90 95q38 56 112 96t144 40zM512 170q-52 0-90 38t-38 90 38 90 90 38 90-38 38-90-38-90-90-38zM512 86q160 0 272 113t112 271q0 132-81 234t-205 136l-98 98-98-98q-124-34-205-136t-81-234q0-158 112-271t272-113z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "location_history"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 557,
+ "paths": [
+ "M640 810v-506l-256-90v506zM874 128q22 0 22 22v644q0 16-16 20l-240 82-256-90-228 88-6 2q-22 0-22-22v-644q0-16 16-20l240-82 256 90 228-88z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "map"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 558,
+ "paths": [
+ "M512 86l320 780-30 30-290-128-290 128-30-30z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "navigation"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 559,
+ "paths": [
+ "M214 854h596v84h-596v-84zM426 342q0 36 25 60t61 24 61-24 25-60q0-34-26-60t-60-26-60 26-26 60zM768 342q0 86-64 203t-128 191l-64 74q-28-30-71-82t-114-176-71-210q0-106 75-181t181-75 181 75 75 181z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pin_drop"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 560,
+ "paths": [
+ "M768 598v-86h-234l-86 86h320zM256 598h106l294-294q16-16 0-30l-76-76q-16-14-30 0l-294 294v106zM854 86q34 0 59 25t25 59v512q0 34-25 60t-59 26h-598l-170 170v-768q0-34 25-59t59-25h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "rate_review"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 561,
+ "paths": [
+ "M214 768h596l-192-256-148 192-108-128zM214 512q124 0 211-88t87-212h-86q0 88-62 151t-150 63v86zM214 212v130q52 0 90-39t38-91h-128zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "satellite"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 562,
+ "paths": [
+ "M512 768v-170h-256v170h256zM896 598h-42v256h-86v-256h-170v256h-428v-256h-42v-86l42-214h684l42 214v86zM854 170v86h-684v-86h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "store_mall_directory",
+ "store"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 563,
+ "paths": [
+ "M512 384q36 0 61-25t25-61-25-60-61-24-61 24-25 60 25 61 61 25zM512 598q34-2 59-27t25-59-25-59-59-27h-2q-36 0-61 25t-25 61 25 61 61 25h2zM512 810q34-2 59-26t25-58-25-59-59-27h-2q-36 0-61 25t-25 61 25 60 61 24h2zM854 426q0 60-36 105t-92 61v48h128q0 60-36 104t-92 60v50q0 18-13 30t-31 12h-340q-18 0-31-12t-13-30v-50q-56-16-92-60t-36-104h128v-48q-56-16-92-61t-36-105h128v-48q-56-16-92-60t-36-104h128v-44q0-18 13-30t31-12h340q18 0 31 12t13 30v44h128q0 60-36 104t-92 60v48h128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "traffic"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 564,
+ "paths": [
+ "M422 826l-298-58 16-86 210 42 68-346-78 30v146h-84v-200l222-94q6 0 17-2t17-2q42 0 72 42l42 68q58 102 184 102v86q-142 0-234-106l-26 128 90 84v320h-86v-256l-90-84zM576 234q-34 0-60-26t-26-60 26-59 60-25 59 25 25 59-25 60-59 26z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "directions_run"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 565,
+ "paths": [
+ "M682 426v-84h-128v-128h-84v128h-128v84h128v128h84v-128h128zM512 86q124 0 211 87t87 211q0 62-31 142t-75 150-87 131-73 97l-32 34q-12-14-32-37t-72-92-91-134-71-147-32-144q0-124 87-211t211-87z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "add_location"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 566,
+ "paths": [
+ "M636 322q12-10 0-22l-40-40q-4-4-10-4-8 0-12 4l-30 30 62 62zM446 512l142-142-62-62-142 142v62h62zM512 86q124 0 211 87t87 211q0 62-31 142t-75 150-87 131-73 97l-32 34q-12-14-32-37t-72-92-91-134-71-147-32-144q0-124 87-211t211-87z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "edit_location"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 567,
+ "paths": [
+ "M896 128l-322 768h-42l-112-292-292-112v-42z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "near_me"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 568,
+ "paths": [
+ "M512 598q44 0 94-27t76-65q0-38-59-63t-111-25-111 25-59 63q60 92 170 92zM512 170q-36 0-61 25t-25 61 25 61 61 25 61-25 25-61-25-61-61-25zM512 86q124 0 211 87t87 211q0 62-31 142t-75 150-87 131-73 97l-32 34q-12-14-32-37t-72-92-91-134-71-147-32-144q0-124 87-211t211-87z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "person_pin_circle"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 569,
+ "paths": [
+ "M896 640v256h-256l98-98-124-122 62-62 122 124zM384 896h-256v-256l98 98 122-124 62 62-124 122zM128 384v-256h256l-98 98 124 122-62 62-122-124zM640 128h256v256l-98-98-122 124-62-62 124-122z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "zoom_out_map"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 570,
+ "paths": [
+ "M682 256q0-60 65-115t149-55v852h-106v-340h-108v-342zM470 384v-298h84v298q0 68-46 117t-114 53v384h-106v-384q-68-4-114-53t-46-117v-298h86v298h84v-298h86v298h86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "restaurant"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 571,
+ "paths": [
+ "M342 768l170-298h-86v-214l-170 320h86v192zM768 426q18 0 30-12t12-30-12-30-30-12-30 12-12 30 12 30 30 12zM844 308q30 30 30 76v406q0 44-31 75t-75 31-75-31-31-75v-214h-64v320h-428v-682q0-34 26-60t60-26h256q34 0 60 26t26 60v298h42q34 0 60 26t26 60v192q0 18 12 30t30 12 30-12 12-30v-308q-18 8-42 8-44 0-75-31t-31-75q0-72 68-100l-90-90 46-44z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "ev_station"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 572,
+ "paths": [
+ "M490 256q0 48 24 105t58 91l-418 418q-26-26-26-60v-596q0-34 26-60t60-26h308q-32 60-32 128zM554 256q0-88 63-151t151-63 151 63 63 151-63 151-151 63-151-63-63-151zM536 612q104-78 232-78 66 0 128 22v254q0 34-26 60t-60 26h-298v-234q0-30 24-50z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "streetview"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 573,
+ "paths": [
+ "M768 678v-294q0-76-66-102t-190-26q-118 0-187 26t-69 102v294q0 46 33 79t79 33l-48 48v16h72l64-64h120l64 64h64v-16l-48-48q46 0 79-33t33-79zM760 120q86 32 132 100t46 158v560h-852v-560q0-90 46-158t132-100q86-34 248-34t248 34zM300 384h426v214h-426v-214zM320 682q0-18 12-30t30-12 31 12 13 30-13 31-31 13-30-13-12-31zM618 682q0-18 13-30t31-12 30 12 12 30-12 31-30 13-31-13-13-31z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "subway"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 574,
+ "paths": [
+ "M704 726q28 0 46-19t18-45-18-45-46-19-46 19-18 45 18 45 46 19zM554 426h214v-170h-214v170zM470 426v-170h-214v170h214zM320 726q28 0 46-19t18-45-18-45-46-19-46 19-18 45 18 45 46 19zM512 86q166 0 254 34t88 136v406q0 62-44 105t-106 43l64 64v22h-86l-84-86h-162l-84 86h-96v-22l64-64q-62 0-106-43t-44-105v-406q0-54 28-90t81-52 106-22 127-6z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "train"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 575,
+ "paths": [
+ "M726 598v-214h-428v214h428zM512 790q28 0 46-19t18-45-18-45-46-19-46 19-18 45 18 45 46 19zM810 722q0 56-29 94t-81 38h4l64 64v20h-86l-84-84h-162l-84 84h-96v-20l68-68q-46-10-78-46t-32-82v-360q0-82 68-113t186-35l34-64h-204v-64h428v64h-140l-32 64q126 4 191 34t65 114v360z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tram"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 576,
+ "paths": [
+ "M246 380l-118 602h90l74-342 92 86v256h86v-322l-88-88 26-128q90 110 232 110v-84q-58 0-107-29t-79-77l-40-68q-22-40-72-40-18 0-32 6l-224 92v200h84v-142l76-32zM406 234q-34 0-60-25t-26-59 26-60 60-26 59 26 25 60-25 59-59 25zM832 842v-74l106 106-106 108v-76h-234v-64h234zM704 662h234v64h-234v74l-106-106 106-108v76z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "transfer_within_a_station"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 577,
+ "paths": [
+ "M896 384q18 0 30 12t12 30v214h-64v-192h-42v150h-64v-150h-42v192h-64v-214q0-18 12-30t30-12h192zM234 512v-64h-84v64h84zM256 384q18 0 30 12t12 30v214h-64v-64h-84v64h-64v-214q0-18 12-30t30-12h128zM342 384h256v64h-96v192h-64v-192h-96v-64z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "atm"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 578,
+ "paths": [
+ "M128 576h342v342h-342v-342zM554 746q0-80 56-136t136-56 136 56 56 136-56 136-136 56-136-56-56-136zM512 86l234 384h-468z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "category"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 579,
+ "paths": [
+ "M550 550q0-40 56-90t56-98q0-62-44-105t-106-43-106 43-44 105h76q0-30 22-52t52-22 52 22 22 52q0 24-17 44t-39 33-39 41-17 70h76zM550 672v-74h-76v74h76zM512 86q124 0 211 87t87 211q0 62-31 142t-75 150-87 131-73 97l-32 34q-12-14-32-37t-72-92-91-134-71-147-32-144q0-124 87-211t211-87z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "not_listed_location"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 580,
+ "paths": [
+ "M704 170v182l122 72-32 52-154-92v-214h64zM682 554q88 0 151-62t63-150-63-151-151-63-150 63-62 151 62 150 150 62zM576 810q28 0 46-19t18-45-18-45-46-19-46 19-18 45 18 45 46 19zM128 554h346q-90-86-90-212h-256v212zM192 810q28 0 46-19t18-45-18-45-46-19-46 19-18 45 18 45 46 19zM682 42q124 0 212 88t88 212q0 112-74 195t-182 99v132q0 54-44 94v76q0 18-12 31t-30 13h-42q-18 0-31-13t-13-31v-42h-340v42q0 18-13 31t-31 13h-42q-18 0-30-13t-12-31v-76q-44-40-44-94v-426q0-102 88-137t254-35q8 0 26 1t26 1q90-130 246-130z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "departure_board"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 581,
+ "paths": [
+ "M512 298q176 0 301 63t125 151q0 66-71 119t-185 77v-88q78-20 125-51t47-57q0-24-40-53t-122-52-180-23-180 23-122 52-40 53q0 30 60 65t154 51v-116l170 170-170 172v-138q-132-22-215-77t-83-127q0-88 125-151t301-63z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "360"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 582,
+ "paths": [
+ "M308 616l180-180-28-28-152 150-78-80-30 30zM752 298q76 0 131 63t55 151-55 151-131 63h-480q-76 0-131-63t-55-151 55-151 131-63h480z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "edit_attributes"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 583,
+ "paths": [
+ "M682 768h-426v-426h128v202l298-288 86 86-292 298h206v128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "transit_enterexit"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 584,
+ "paths": [
+ "M44 726h640v84h-640v-84zM684 640h-642q0-98 66-164t160-82 189 0 161 82 66 164zM42 938v-42h642v42q0 18-13 30t-31 12h-554q-18 0-31-12t-13-30zM770 980v-342q0-126-104-226-62-62-182-96l-12-100h212v-174h84v174h214l-72 702q-4 26-23 44t-45 18h-72z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fastfood"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 585,
+ "paths": [
+ "M512 768q106 0 181-75t75-181-75-181-181-75-181 75-75 181 75 181 181 75zM86 512q0-176 125-301t301-125 301 125 125 301-125 301-301 125-301-125-125-301z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "trip_origin"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 586,
+ "paths": [
+ "M512 430q-52 0-115 26t-99 62l-212-212q178-178 426-178 246 0 426 176l-212 214q-88-88-214-88zM342 726q0-70 50-121t120-51 120 51 50 121-50 120-120 50-120-50-50-120z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "compass_calibration"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 587,
+ "paths": [
+ "M170 768h684v-512h-684v512zM86 170h852v684h-852v-684zM726 598v-172h-44v172h44zM768 342q18 0 30 12t12 30v256q0 18-12 30t-30 12h-128q-18 0-30-12t-12-30v-256q0-18 12-30t30-12h128zM470 598v-172h-44v172h44zM512 342q18 0 30 12t12 30v256q0 18-12 30t-30 12h-128q-18 0-30-12t-12-30v-256q0-18 12-30t30-12h128zM214 342h84v340h-84v-340z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "money"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 588,
+ "paths": [
+ "M682 854v-172h172v172h-172zM682 598v-172h172v172h-172zM426 342v-172h172v172h-172zM682 170h172v172h-172v-172zM426 598v-172h172v172h-172zM170 598v-172h172v172h-172zM170 854v-172h172v172h-172zM426 854v-172h172v172h-172zM170 342v-172h172v172h-172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "apps"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 589,
+ "paths": [
+ "M854 470v84h-520l238 240-60 60-342-342 342-342 60 60-238 240h520z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow_back"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 590,
+ "paths": [
+ "M298 426h428l-214 214z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow_drop_down"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 591,
+ "paths": [
+ "M512 598l170-172h-340zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow_drop_down_circle"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 592,
+ "paths": [
+ "M298 598l214-214 214 214h-428z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow_drop_up"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 593,
+ "paths": [
+ "M512 170l342 342-342 342-60-60 238-240h-520v-84h520l-238-240z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow_forward"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 594,
+ "paths": [
+ "M726 666l-154-154 154-154-60-60-154 154-154-154-60 60 154 154-154 154 60 60 154-154 154 154zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cancel"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 595,
+ "paths": [
+ "M384 690l452-452 60 60-512 512-238-238 60-60z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "check"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 596,
+ "paths": [
+ "M512 342l256 256-60 60-196-196-196 196-60-60z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "expand_less"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 597,
+ "paths": [
+ "M708 366l60 60-256 256-256-256 60-60 196 196z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "expand_more"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 598,
+ "paths": [
+ "M598 214h212v212h-84v-128h-128v-84zM726 726v-128h84v212h-212v-84h128zM214 426v-212h212v84h-128v128h-84zM298 598v128h128v84h-212v-212h84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fullscreen"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 599,
+ "paths": [
+ "M682 342h128v84h-212v-212h84v128zM598 810v-212h212v84h-128v128h-84zM342 342v-128h84v212h-212v-84h128zM214 682v-84h212v212h-84v-128h-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fullscreen_exit"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 600,
+ "paths": [
+ "M128 256h768v86h-768v-86zM128 554v-84h768v84h-768zM128 768v-86h768v86h-768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "menu"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 601,
+ "paths": [
+ "M512 426q34 0 60 26t26 60-26 60-60 26-60-26-26-60 26-60 60-26zM768 426q34 0 60 26t26 60-26 60-60 26-60-26-26-60 26-60 60-26zM256 426q34 0 60 26t26 60-26 60-60 26-60-26-26-60 26-60 60-26z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "keyboard_control"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 602,
+ "paths": [
+ "M512 682q34 0 60 26t26 60-26 60-60 26-60-26-26-60 26-60 60-26zM512 426q34 0 60 26t26 60-26 60-60 26-60-26-26-60 26-60 60-26zM512 342q-34 0-60-26t-26-60 26-60 60-26 60 26 26 60-26 60-60 26z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "more_vert"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 603,
+ "paths": [
+ "M754 270l100-100v300h-300l138-138q-76-76-180-76-106 0-181 75t-75 181 75 181 181 75q74 0 145-50t97-120h88q-28 112-120 184t-210 72q-140 0-240-100t-100-242 100-242 240-100q60 0 131 29t111 71z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "refresh"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 604,
+ "paths": [
+ "M708 230l-196 196-196-196 60-60 136 136 136-136zM316 794l196-196 196 196-60 60-136-136-136 136z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "unfold_less"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 605,
+ "paths": [
+ "M512 776l136-136 60 60-196 196-196-196 60-60zM512 248l-136 136-60-60 196-196 196 196-60 60z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "unfold_more"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 606,
+ "paths": [
+ "M170 512l342-342 342 342-62 60-238-238v520h-84v-520l-240 238z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow_upward"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 607,
+ "paths": [
+ "M470 384l60 60-154 154h392v-428h86v512h-478l154 154-60 60-256-256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "subdirectory_arrow_left"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 608,
+ "paths": [
+ "M810 640l-256 256-60-60 154-154h-478v-512h86v428h392l-154-154 60-60z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "subdirectory_arrow_right"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 609,
+ "paths": [
+ "M854 512l-342 342-342-342 62-60 238 238v-520h84v520l240-238z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow_downward"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 610,
+ "paths": [
+ "M256 256h86v512h-86v-512zM786 708l-60 60-256-256 256-256 60 60-196 196z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "first_page"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 611,
+ "paths": [
+ "M682 256h86v512h-86v-512zM238 316l60-60 256 256-256 256-60-60 196-196z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "last_page"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 612,
+ "paths": [
+ "M598 298v428l-214-214z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow_left"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 613,
+ "paths": [
+ "M426 726v-428l214 214z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow_right"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 614,
+ "paths": [
+ "M498 166l-346 346 346 346-76 76-422-422 422-422z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow_back_ios"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 615,
+ "paths": [
+ "M250 176l92-90 426 426-426 426-92-90 338-336z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow_forward_ios"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 616,
+ "paths": [
+ "M640 384q18 0 30-12t12-30-12-31-30-13-30 13-12 31 12 30 30 12zM384 384q18 0 30-12t12-30-12-31-30-13-30 13-12 31 12 30 30 12zM688 186q122 90 122 240v44h-596v-44q0-150 122-240l-90-90 36-34 98 98q64-32 132-32t132 32l98-98 36 34zM214 682v-170h596v170q0 124-87 212t-211 88-211-88-87-212z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "adb"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 617,
+ "paths": [
+ "M426 598q34 0 60-26t26-60-26-60-60-26-59 26-25 60 25 60 59 26zM426 170q142 0 242 101t100 241-100 241-242 101q-140 0-240-100t-100-242 100-242 240-100zM854 298h84v214h-84v-214zM854 682v-84h84v84h-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "disc_full"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 618,
+ "paths": [
+ "M512 854q140 0 241-101t101-241q0-114-74-210l-478 478q96 74 210 74zM170 512q0 114 74 210l478-478q-96-74-210-74-140 0-241 101t-101 241zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "do_not_disturb_alt"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 619,
+ "paths": [
+ "M214 426h596l-64-192h-468zM746 640q26 0 45-18t19-46-19-46-45-18-45 18-19 46 19 46 45 18zM278 640q26 0 45-18t19-46-19-46-45-18-45 18-19 46 19 46 45 18zM808 214l88 256v340q0 18-12 31t-30 13h-44q-18 0-30-13t-12-31v-42h-512v42q0 18-12 31t-30 13h-44q-18 0-30-13t-12-31v-340l88-256q14-44 62-44h468q48 0 62 44z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "drive_eta",
+ "time_to_leave"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 620,
+ "paths": [
+ "M810 810v-468h-596v468h596zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-36 0-61-25t-25-61v-596q0-34 25-60t61-26h42v-86h86v86h340v-86h86v86h42zM706 472l-254 254-136-136 46-46 90 90 208-208z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "event_available"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 621,
+ "paths": [
+ "M810 810v-468h-596v468h596zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-36 0-61-25t-25-61v-596q0-34 25-60t61-26h42v-86h86v86h340v-86h86v86h42zM398 726l-46-46 104-104-104-104 46-46 104 104 104-104 44 46-104 104 104 104-44 46-104-104z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "event_busy"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 622,
+ "paths": [
+ "M598 598v84h-300v-84h300zM810 810v-468h-596v468h596zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-36 0-61-25t-25-61v-596q0-34 25-60t61-26h42v-86h86v86h340v-86h86v86h42zM726 426v86h-428v-86h428z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "event_note"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 623,
+ "paths": [
+ "M766 726l-34-142 110-96-144-12-58-134-58 134-144 12 110 96-34 142 126-74zM854 256q34 0 59 26t25 60v426q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-512q0-34 25-60t59-26h256l86 86h342z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "folder_special"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 624,
+ "paths": [
+ "M214 598h596l-192-256-148 192-108-128zM854 86q34 0 59 25t25 59v512q0 34-25 60t-59 26h-598l-170 170v-768q0-34 25-59t59-25h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mms"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 625,
+ "paths": [
+ "M810 576q26 0 45-18t19-46-19-46-45-18-45 18-19 46 19 46 45 18zM598 576q26 0 45-18t19-46-19-46-45-18-45 18-19 46 19 46 45 18zM384 576q28 0 46-18t18-46-18-46-46-18-46 18-18 46 18 46 46 18zM938 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-636q-44 0-72-38l-230-346 230-346q28-38 68-38h640z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "more"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 626,
+ "paths": [
+ "M896 682v-64q0-26-18-45t-46-19-46 19-18 45v64h128zM938 682q18 0 31 13t13 31v170q0 18-13 30t-31 12h-212q-18 0-31-12t-13-30v-170q0-18 13-31t31-13v-64q0-44 31-75t75-31 75 31 31 75v64zM832 426q-80 0-136 56t-56 136v12q-42 38-42 96v128h-556l812-812v386q-4 0-11-1t-11-1z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "network_locked"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 627,
+ "paths": [
+ "M854 662q18 0 30 12t12 30v150q0 18-12 30t-30 12q-300 0-513-213t-213-513q0-18 12-30t30-12h150q18 0 30 12t12 30v2q0 82 24 150 4 8 4 14 0 20-14 30l-94 94q40 76 123 159t159 123l94-94q14-14 30-14 6 0 14 4 72 24 152 24zM768 308v80l40-40zM768 124v80l40-40zM628 406l-30-30 118-120-118-120 30-30 98 98v-162h20l122 122-92 92 92 92-122 122h-20v-162z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "phone_bluetooth_speaker"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 628,
+ "paths": [
+ "M854 662q18 0 30 12t12 30v150q0 18-12 30t-30 12q-300 0-513-213t-213-513q0-18 12-30t30-12h150q18 0 30 12t12 30v2q0 82 24 150 4 8 4 14 0 20-14 30l-94 94q40 76 123 159t159 123l94-94q14-14 30-14 6 0 14 4 72 24 152 24zM768 470v-128h-170v-172h170v-128l214 214z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "phone_forwarded"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 629,
+ "paths": [
+ "M640 512q0-52-38-90t-90-38v-86q88 0 151 63t63 151h-86zM810 512q0-124-87-211t-211-87v-86q160 0 272 112t112 272h-86zM854 662q18 0 30 12t12 30v150q0 18-12 30t-30 12q-300 0-513-213t-213-513q0-18 12-30t30-12h150q18 0 30 12t12 30v2q0 82 24 150 4 8 4 14 0 20-14 30l-94 94q40 76 123 159t159 123l94-94q14-14 30-14 6 0 14 4 72 24 152 24z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "phone_in_talk"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 630,
+ "paths": [
+ "M820 170v-20q0-30-22-52t-52-22-51 22-21 52v20h146zM854 170q18 0 30 13t12 31v170q0 18-12 30t-30 12h-214q-18 0-30-12t-12-30v-170q0-18 12-31t30-13v-20q0-44 31-76t75-32 76 32 32 76v20zM854 662q18 0 30 12t12 30v150q0 18-12 30t-30 12q-300 0-513-213t-213-513q0-18 12-30t30-12h150q18 0 30 12t12 30v2q0 82 24 150 4 8 4 14 0 20-14 30l-94 94q40 76 123 159t159 123l94-94q14-14 30-14 6 0 14 4 72 24 152 24z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "phone_locked"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 631,
+ "paths": [
+ "M1012 712q12 12 12 30t-12 30l-106 106q-12 12-30 12t-30-12q-56-52-114-80-24-10-24-38v-132q-92-30-196-30t-196 30v132q0 30-24 40-64 30-114 78-12 12-30 12t-30-12l-106-106q-12-12-12-30t12-30q210-200 500-200 120 0 266 59t234 141zM278 234v150h-64v-256h256v64h-150l192 192 256-256 42 42-298 300z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "phone_missed"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 632,
+ "paths": [
+ "M810 128h86v298h-86v-298zM854 662q18 0 30 12t12 30v150q0 18-12 30t-30 12q-300 0-513-213t-213-513q0-18 12-30t30-12h150q18 0 30 12t12 30v2q0 82 24 150 4 8 4 14 0 20-14 30l-94 94q40 76 123 159t159 123l94-94q14-14 30-14 6 0 14 4 72 24 152 24zM726 128v298h-86v-298h86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "phone_paused"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 633,
+ "paths": [
+ "M554 554v-212h-84v212h84zM554 726v-86h-84v86h84zM768 86q34 0 60 25t26 59v684q0 34-26 59t-60 25h-512q-34 0-60-25t-26-59l2-512 254-256h342z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sim_card_alert"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 634,
+ "paths": [
+ "M554 426v-170h-84v170h84zM554 598v-86h-84v86h84zM854 86q34 0 59 25t25 59v512q0 34-25 60t-59 26h-598l-170 170v-768q0-34 25-59t59-25h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sms_failed",
+ "feedback"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 635,
+ "paths": [
+ "M854 170l-102 102q42 40 72 111t30 129q0 94-52 180l-64-62q30-60 30-118 0-44-22-96t-54-84l-94 94v-256h256zM122 230l54-54 670 672-54 54-100-100q-48 28-96 40v-88q16-6 34-16l-344-344q-30 60-30 118 0 44 22 96t54 84l94-94v256h-256l102-102q-42-40-72-111t-30-129q0-94 52-180zM426 270q-12 4-32 16l-62-64q50-30 94-40v88z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sync_disabled"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 636,
+ "paths": [
+ "M470 554v-256h84v256h-84zM896 170l-100 102q100 100 100 240 0 118-72 210t-184 120v-88q70-26 120-97t50-145q0-44-21-96t-53-84l-96 94v-256h256zM470 726v-86h84v86h-84zM128 512q0-118 72-210t184-120v88q-70 26-120 97t-50 145q0 44 21 96t53 84l96-94v256h-256l100-102q-100-100-100-240z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sync_problem"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 637,
+ "paths": [
+ "M682 554l-170 172-170-172h128v-212h84v212h128zM726 810v-596h-428v596h428zM726 44q34 0 59 25t25 59v768q0 34-25 60t-59 26h-428q-34 0-59-26t-25-60v-768q0-34 25-60t59-26z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "system_update"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 638,
+ "paths": [
+ "M726 44q34 0 59 25t25 59v726q0 34-25 59t-59 25h-90q-6-86-40-170h130v-554h-428v256q-50-22-84-28v-314q0-34 25-60t59-26zM86 512q194 0 331 137t137 333h-84q0-158-113-271t-271-113v-86zM86 854q52 0 90 38t38 90h-128v-128zM86 682q124 0 211 88t87 212h-86q0-88-62-151t-150-63v-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tap_and_play"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 639,
+ "paths": [
+ "M682 810v-596h-340v596h340zM704 128q28 0 46 18t18 46v640q0 28-18 46t-46 18h-384q-28 0-46-18t-18-46v-640q0-28 18-46t46-18h384zM810 726v-428h86v428h-86zM938 384h86v256h-86v-256zM128 726v-428h86v428h-86zM0 640v-256h86v256h-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "vibration"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 640,
+ "paths": [
+ "M768 598v-342l-170 136v-136h-342v342h342v-138zM854 86q34 0 59 25t25 59v512q0 34-25 60t-59 26h-598l-170 170v-768q0-34 25-59t59-25h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "voice_chat"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 641,
+ "paths": [
+ "M426 894v-84q-34 0-59-25t-25-59v-44l-206-204q-8 32-8 76 0 130 86 227t212 113zM808 512h86q2 14 2 42 0 178-125 303t-301 125q-178 0-303-125t-125-303q0-176 125-301t303-125q62 0 128 20v108q0 34-26 60t-60 26h-86v84q0 18-12 31t-30 13h-86v84h256q18 0 31 13t13 31v128h42q62 0 82 58 88-94 88-230 0-28-2-42zM904 170v-20q0-30-21-52t-51-22-51 22-21 52v20h144zM938 170q18 0 31 13t13 31v170q0 18-13 30t-31 12h-212q-18 0-31-12t-13-30v-170q0-18 13-31t31-13v-20q0-44 31-76t75-32 75 32 31 76v20z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "vpn_lock"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 642,
+ "paths": [
+ "M304 516q-34 38-90 38-54 0-90-36-38-34-38-92 0-52 36-88 36-40 92-40 50 0 88 38 40 36 40 90 0 52-38 90zM86 598h852v84h-256v86h-340v-86h-256v-84zM938 470v84h-554v-256h384q70 0 120 51t50 121z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "airline_seat_flat"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 643,
+ "paths": [
+ "M312 436q-20 12-56 12-34 0-68-21t-48-51q-12-20-12-56 0-34 21-68t51-48q20-12 56-12 34 0 68 21t48 51q12 28 12 56 0 34-21 68t-51 48zM64 518l30-80 810 292-28 80-194-68v68h-340v-192zM950 610l-30 80-528-190 90-242 364 132q46 16 80 63t34 97q0 34-10 60z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "airline_seat_flat_angled"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 644,
+ "paths": [
+ "M810 298q70 0 121 51t51 121v256h-940v-428h86v300h342v-300h340zM298 554q-52 0-90-38t-38-90 38-90 90-38 90 38 38 90-38 90-90 38z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "airline_seat_individual_suite"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 645,
+ "paths": [
+ "M974 736q14 24 4 50t-34 38l-158 72-146-298h-298q-52 0-90-38t-38-90v-342h256v256h150q22 0 44 14t32 34l144 298 48-22q24-10 49-2t37 30zM170 512q0 52 38 90t90 38h256v86h-256q-88 0-150-63t-62-151v-384h84v384z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "airline_seat_legroom_extra"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 646,
+ "paths": [
+ "M874 768q26 0 45 18t19 46-19 46-45 18h-192v-298h-298q-52 0-90-38t-38-90v-342h256v256h214q34 0 59 26t25 60v298h64zM214 512q0 52 38 90t90 38h256v86h-256q-88 0-151-63t-63-151v-384h86v384z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "airline_seat_legroom_normal"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 647,
+ "paths": [
+ "M214 512q0 52 38 90t90 38h170v86h-170q-88 0-151-63t-63-151v-384h86v384zM852 820q6 30-13 53t-49 23h-192v-128l42-170h-256q-52 0-90-38t-38-90v-342h256v256h214q34 0 59 26t25 60l-84 298h60q24 0 43 15t23 37z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "airline_seat_legroom_reduced"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 648,
+ "paths": [
+ "M692 640l246 192-64 64-162-128h-292q-44 0-81-30t-45-74l-58-252q0-2-1-8t-1-8q0-34 24-62t56-34h2q2 0 7-1t7-1q34 0 60 20l70 54q96 74 200 54v92q-96 16-220-52l44 174h208zM682 810v86h-300q-76 0-138-52t-74-128l-84-418h84l84 404q8 46 44 77t84 31h300zM228 240q-28-20-34-55t14-63 55-35 63 13q28 22 35 57t-13 63-56 34-64-14z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "airline_seat_recline_extra"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 649,
+ "paths": [
+ "M854 856l-62 62-150-150h-216q-52 0-90-38t-38-90v-246q0-38 29-67t67-29h2q38 0 70 32l60 66q34 38 91 62t109 24v94q-124 0-236-94v158h148zM256 682q0 52 38 90t90 38h256v86h-256q-88 0-151-63t-63-151v-384h86v384zM324 230q-26-26-26-60t26-60 60-26 60 26 26 60-26 60-60 26-60-26z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "airline_seat_recline_normal"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 650,
+ "paths": [
+ "M554 362v-84h-84v84h84zM554 554v-84h-84v84h84zM554 746v-84h-84v84h84zM938 426q-34 0-59 26t-25 60 25 60 59 26v170q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-170q36 0 60-25t24-61q0-34-25-60t-59-26v-170q0-36 25-61t59-25h684q36 0 60 25t24 61v170z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "confirmation_number"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 651,
+ "paths": [
+ "M384 426l298 172-298 170v-342zM896 854v-512h-768v512h768zM896 256q36 0 61 25t25 61v512q0 34-26 59t-60 25h-768q-34 0-60-25t-26-59v-512q0-36 25-61t61-25h324l-140-140 30-30 170 170 170-170 30 30-140 140h324z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "live_tv"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 652,
+ "paths": [
+ "M682 470l-298 170v-342zM896 726v-512h-768v512h768zM896 128q36 0 61 25t25 61l-2 512q0 34-25 59t-59 25h-214v86h-340v-86h-214q-36 0-61-24t-25-60v-512q0-36 25-61t61-25h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "ondemand_video"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 653,
+ "paths": [
+ "M896 726v-512h-768v512h768zM896 128q36 0 61 25t25 61l-2 512q0 34-25 59t-59 25h-214v86h-340v-86h-214q-36 0-61-24t-25-60v-512q0-36 25-61t61-25h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "personal_video"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 654,
+ "paths": [
+ "M684 298q32 0 58 27t26 59v234l-150 150v128h-212v-128l-150-150v-234q0-32 26-59t58-27h2v-170h84v170h172v-170h84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "power"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 655,
+ "paths": [
+ "M704 256q-36 0-61-25t-25-61 25-60 61-24 61 24 25 60-25 61-61 25zM320 256q-36 0-61-25t-25-61 25-60 61-24 61 24 25 60-25 61-61 25zM768 938h-128v-256h-128l108-324q8-24 32-42t50-18h4q26 0 50 18t32 42l108 324h-128v256zM234 938v-320h-64v-234q0-34 26-60t60-26h128q34 0 60 26t26 60v234h-64v320h-172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wc"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 656,
+ "paths": [
+ "M214 554q124-122 299-122t297 122l-84 86q-36-36-99-62t-115-26-115 26-99 62zM384 726q54-54 128-54t128 54l-128 128zM42 384q196-194 471-194t469 194l-86 86q-160-158-384-158t-384 158z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wifi"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 657,
+ "paths": [
+ "M682 682v-84h-128v-128h-84v128h-128v84h128v128h84v-128h128zM380 256v86h264v-86q0-54-39-93t-93-39-93 39-39 93zM768 342q34 0 60 25t26 59v428q0 34-26 59t-60 25h-512q-34 0-60-25t-26-59v-428q0-34 26-59t60-25h42v-86q0-88 63-151t151-63 151 63 63 151v86h42z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "enhanced_encryption"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 658,
+ "paths": [
+ "M214 554q128-128 312-122l-56 122q-42 6-92 31t-80 55zM726 640q-22-22-52-42l24-124q64 32 112 80zM896 470q-78-78-176-118l22-120q58 22 128 66t112 86zM42 384q118-118 273-165t313-19l-50 114q-122-16-241 25t-209 131zM678 214q22 0 22 20l-104 550v2q-6 28-30 48t-54 20q-36 0-61-25t-25-61q0-22 10-42l222-496q6-16 20-16z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "network_check"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 659,
+ "paths": [
+ "M380 256v52l-78-78q10-80 69-134t141-54q88 0 151 63t63 151v86h42q34 0 60 25t26 59v356l-442-440h232v-86q0-54-39-93t-93-39-93 39-39 93zM896 930l-52 52-48-48q-16 4-28 4h-512q-34 0-60-25t-26-59v-428q0-50 46-74l-88-86 52-52z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "no_encryption"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 660,
+ "paths": [
+ "M726 86l128 128-128 128v-86h-342v-86h342v-84zM768 598v-128h-170v128h170zM470 854q18 0 30-13t12-31-12-30-30-12-31 12-13 30 13 31 31 13zM854 726h84v84h-340q0 52-38 90t-90 38-90-38-38-90h-86q-34 0-60-25t-26-59v-128h300v-128h-172v84l-128-128 128-128v86h470q34 0 60 26t26 60v256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "rv_hookup"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 661,
+ "paths": [
+ "M298 554h148l-86-84h-62v84zM96 96l832 832-56 54-118-120q-108 76-242 76-176 0-301-125t-125-301q0-56 22-126t54-116l-120-118zM726 470h-148l-308-308q108-76 242-76 176 0 301 125t125 301q0 56-22 126t-54 116l-198-200h62v-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "do_not_disturb_off"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 662,
+ "paths": [
+ "M426 128h172v512h-172v-512zM426 810q0-36 25-60t61-24 61 24 25 60-25 61-61 25-61-25-25-61z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "priority_high"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 663,
+ "paths": [
+ "M308 308q474 476 576 576l-54 54-190-190-22 20v128h-212v-128l-150-150v-234q0-10 2-16l-142-144 54-54 136 138h2zM768 618l-20 22-406-406v-106h84v170h172v-170h84v170q32 0 59 27t27 59v234z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "power_off"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 664,
+ "paths": [
+ "M896 214q36 0 61 24t25 60v512q0 26-16 48l-70-70v-490h-490l-86-84h132l-140-142 30-30 170 172 170-172 30 30-140 142h324zM128 810h574l-512-512h-62v512zM42 152l54-56 830 832-54 54-84-86h-660q-34 0-60-26t-26-60v-512q0-30 19-53t47-29z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tv_off"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 665,
+ "paths": [
+ "M384 726q54-54 128-54t128 54l-128 128zM86 130l54-54 724 724-54 54-302-302q-50 0-112 26t-98 62l-84-84v-2q78-78 188-108l-96-94q-98 40-178 118l-86-86q78-78 174-124zM810 554l-40 42-152-150q114 30 192 108zM980 384l-84 86q-168-172-412-158l-106-108q162-34 321 12t281 168z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wifi_off"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 666,
+ "paths": [
+ "M860 158l-270 268h178v44h-256v-256h42v182l276-268zM282 460q96 186 282 282l94-94q20-20 44-10 72 24 152 24 18 0 30 12t12 30v150q0 18-12 30t-30 12q-300 0-513-213t-213-513q0-18 12-30t30-12h150q18 0 30 12t12 30q0 80 24 152 8 26-10 44z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "phone_callback"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 667,
+ "paths": [
+ "M556 556h382q-14 152-122 260t-260 122v-382zM556 86q152 14 260 122t122 260h-382v-382zM470 86v852q-162-16-273-138t-111-288 111-288 273-138z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pie_chart"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 668,
+ "paths": [
+ "M554 850q108-14 195-101t101-195h-296v296zM170 512q0 130 86 226t214 112v-676q-126 16-213 112t-87 226zM554 174v296h296q-14-116-97-199t-199-97zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pie_chart_outlined"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 669,
+ "paths": [
+ "M444 376q0-86 59-146t145-60 146 60 60 146-60 145-146 59-145-59-59-145zM546 768q0-36 25-61t61-25 60 25 24 61-24 61-60 25-61-25-25-61zM170 614q0-56 40-96t98-40q56 0 96 39t40 97-40 97-96 39q-58 0-98-40t-40-96z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bubble_chart"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 670,
+ "paths": [
+ "M938 296l-130 146q74 118 88 262h-86q-12-102-62-194l-172 194-170-172-256 256-64-64 320-320 170 172 122-140q-118-138-288-138-146 0-264 104l-60-60q144-128 324-128 204 0 346 158l122-136z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "multiline_chart"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 671,
+ "paths": [
+ "M150 788l-64-64 320-320 170 172 302-340 60 60-362 408-170-172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "show_chart"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 672,
+ "paths": [
+ "M768 384q52 0 90 38t38 90v66q0 34-25 59t-59 25-58-24l-92-92-92 92q-24 24-59 24t-59-24l-90-92-92 92q-24 24-58 24t-59-25-25-59v-66q0-52 38-90t90-38h214v-86h84v86h214zM708 682q44 44 104 44 44 0 84-26v196q0 18-12 30t-30 12h-684q-18 0-30-12t-12-30v-196q38 26 84 26 60 0 104-44l46-46 46 46q42 42 104 42t104-42l46-46zM512 256q-34 0-60-26t-26-60q0-22 14-44l72-126 72 126q14 22 14 44 0 36-25 61t-61 25z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cake"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 673,
+ "paths": [
+ "M682 554q56 0 122 16t122 52 56 82v106h-256v-106q0-88-84-148 14-2 40-2zM342 554q56 0 122 16t121 52 55 82v106h-598v-106q0-46 56-82t122-52 122-16zM342 470q-52 0-90-38t-38-90 38-90 90-38 89 38 37 90-37 90-89 38zM682 470q-52 0-90-38t-38-90 38-90 90-38 90 38 38 90-38 90-90 38z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "group",
+ "people"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 674,
+ "paths": [
+ "M554 554q80 0 168 35t88 93v86h-512v-86q0-58 88-93t168-35zM838 562q74 12 130 43t56 77v86h-128v-86q0-68-58-120zM554 470q-52 0-90-38t-38-90 38-90 90-38 90 38 38 90-38 90-90 38zM768 470q-20 0-38-6 38-54 38-122t-38-122q18-6 38-6 52 0 90 38t38 90-38 90-90 38zM342 426v86h-128v128h-86v-128h-128v-86h128v-128h86v128h128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "group_add"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 675,
+ "paths": [
+ "M810 640v-86h-84v86h84zM810 810v-84h-84v84h84zM554 298v-84h-84v84h84zM554 470v-86h-84v86h84zM554 640v-86h-84v86h84zM554 810v-84h-84v84h84zM298 470v-86h-84v86h84zM298 640v-86h-84v86h84zM298 810v-84h-84v84h84zM640 470h256v426h-768v-598h256v-84l128-128 128 128v256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "location_city"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 676,
+ "paths": [
+ "M512 598q74 0 133 41t85 107h-436q26-66 85-107t133-41zM362 470q-26 0-45-19t-19-45 19-45 45-19 45 19 19 45-19 45-45 19zM662 470q-26 0-45-19t-19-45 19-45 45-19 45 19 19 45-19 45-45 19zM512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mood_bad"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 677,
+ "paths": [
+ "M768 682l86 86v42h-684v-42l86-86v-212q0-100 51-174t141-96v-30q0-26 18-45t46-19 46 19 18 45v30q90 22 141 96t51 174v212zM512 938q-36 0-61-24t-25-60h172q0 34-26 59t-60 25z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "notifications"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 678,
+ "paths": [
+ "M682 726v-256q0-82-46-137t-124-55-124 55-46 137v256h340zM768 682l86 86v42h-684v-42l86-86v-212q0-100 51-174t141-96v-30q0-26 18-45t46-19 46 19 18 45v30q90 22 141 96t51 174v212zM512 938q-34 0-60-25t-26-59h172q0 34-26 59t-60 25z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "notifications_none"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 679,
+ "paths": [
+ "M768 626l-382-402q6-2 16-7l14-7h2l12-6q2 0 8-2t10-2v-30q0-26 18-45t46-19 46 19 18 45v30q90 22 141 96t51 174v156zM512 938q-36 0-61-24t-25-60h172q0 36-25 60t-61 24zM334 262q48 50 251 258t311 322l-54 54-86-86h-586v-42l86-86v-214q0-82 34-146l-120-118 54-56z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "notifications_off"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 680,
+ "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_active"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 681,
+ "paths": [
+ "M618 418v-76h-212v76h118l-118 146v76h212v-76h-118zM768 682l86 86v42h-684v-42l86-86v-212q0-100 51-174t141-96v-30q0-26 18-45t46-19 46 19 18 45v30q90 22 141 96t51 174v212zM512 938q-36 0-61-24t-25-60h172q0 34-26 59t-60 25z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "notifications_paused"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 682,
+ "paths": [
+ "M810 128q34 0 60 26t26 60v256h-214l44-172-172 44v-214h256zM726 726l-44-172h214v256q0 34-26 60t-60 26h-256v-214zM342 554l-44 172 172-44v214h-256q-34 0-60-26t-26-60v-256h214zM128 214q0-34 26-60t60-26h256v214l-172-44 44 172h-214v-256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pages"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 683,
+ "paths": [
+ "M512 726q88 0 151-63t63-151q0-18-4-42h-90q8 28 8 42 0 52-38 90t-90 38h-170q66 86 170 86zM512 298q-88 0-151 63t-63 151q0 18 4 42h90q-8-28-8-42 0-52 38-90t90-38h170q-66-86-170-86zM854 170q34 0 59 26t25 60v512q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-512q0-34 25-60t59-26h136l78-84h256l78 84h136z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "party_mode"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 684,
+ "paths": [
+ "M704 278q-34 0-60 25t-26 59 26 60 60 26 60-26 26-60-26-59-60-25zM704 512q-62 0-106-44t-44-106 44-105 106-43 106 43 44 105-44 106-106 44zM320 278q-34 0-60 25t-26 59 26 60 60 26 60-26 26-60-26-59-60-25zM320 512q-62 0-106-44t-44-106 44-105 106-43 106 43 44 105-44 106-106 44zM918 746v-52q0-20-71-48t-143-28q-52 0-128 24 22 26 22 52v52h320zM534 746v-52q0-20-71-48t-143-28-143 28-71 48v52h428zM704 554q86 0 182 39t96 101v116h-940v-116q0-62 96-101t182-39q94 0 192 44 98-44 192-44z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "people_outline"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 685,
+ "paths": [
+ "M512 598q108 0 225 47t117 123v86h-684v-86q0-76 117-123t225-47zM512 512q-70 0-120-50t-50-120 50-121 120-51 120 51 50 121-50 120-120 50z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "person"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 686,
+ "paths": [
+ "M640 598q108 0 225 47t117 123v86h-684v-86q0-76 117-123t225-47zM256 426h128v86h-128v128h-86v-128h-128v-86h128v-128h86v128zM640 512q-70 0-120-50t-50-120 50-121 120-51 120 51 50 121-50 120-120 50z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "person_add"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 687,
+ "paths": [
+ "M512 554q64 0 140 18t139 60 63 94v128h-684v-128q0-52 63-94t139-60 140-18zM512 170q70 0 120 51t50 121-50 120-120 50-120-50-50-120 50-121 120-51zM512 636q-88 0-174 33t-86 57v46h520v-46q0-24-86-57t-174-33zM512 252q-38 0-64 26t-26 64 26 63 64 25 64-25 26-63-26-64-64-26z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "person_outline",
+ "perm_identity"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 688,
+ "paths": [
+ "M618 260l192-46v554h-84v-452l-108 22v-78zM426 342v170h172v86h-172v170h-84v-170h-172v-86h172v-170h84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "plus_one"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 689,
+ "paths": [
+ "M764 742q90-96 90-230 0-106-59-192t-155-124v18q0 34-26 59t-60 25h-84v86q0 18-13 30t-31 12h-84v86h256q18 0 30 12t12 30v128h42q60 0 82 60zM470 850v-82q-34 0-60-26t-26-60v-42l-204-204q-10 40-10 76 0 130 87 226t213 112zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "public"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 690,
+ "paths": [
+ "M512 128l470 256v342h-86v-296l-384 210-470-256zM214 562l298 164 298-164v172l-298 162-298-162v-172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "school"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 691,
+ "paths": [
+ "M768 686q52 0 88 37t36 87q0 52-37 89t-87 37-87-37-37-89q0-20 2-28l-302-176q-38 34-88 34-52 0-90-38t-38-90 38-90 90-38q50 0 88 34l300-174q-4-20-4-30 0-52 38-90t90-38 90 38 38 90-38 90-90 38q-48 0-88-36l-300 176q4 20 4 30t-4 30l304 176q36-32 84-32z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "share"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 692,
+ "paths": [
+ "M500 810q86 0 145-59t59-145q0-88-24-172-62 82-198 110-120 26-120 132 0 56 40 95t98 39zM576 28q128 104 203 253t75 317q0 140-100 240t-242 100-242-100-100-240q0-216 138-380v16q0 66 44 112t110 46q64 0 105-45t41-113q0-40-8-92t-16-82z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "whatshot"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 693,
+ "paths": [
+ "M512 704q-44 0-84 22l-22-24q-2-2-22-24 56-38 128-38 68 0 128 38-4 2-23 23t-21 25q-38-22-84-22zM512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125zM298 406q0-26 19-45t45-19 45 19 19 45-19 45-45 19-45-19-19-45zM598 406q0-26 19-45t45-19 45 19 19 45-19 45-45 19-45-19-19-45z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sentiment_dissatisfied"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 694,
+ "paths": [
+ "M512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125zM298 406q0-26 19-45t45-19 45 19 19 45-19 45-45 19-45-19-19-45zM598 406q0-26 19-45t45-19 45 19 19 45-19 45-45 19-45-19-19-45zM384 662h256v42h-256v-42z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sentiment_neutral"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 695,
+ "paths": [
+ "M512 682q44 0 84-22 38 44 44 50-58 36-128 36-68 0-126-36 24-32 42-50 38 22 84 22zM512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125zM298 406q0-26 19-45t45-19 45 19 19 45-19 45-45 19-45-19-19-45zM598 406q0-26 19-45t45-19 45 19 19 45-19 45-45 19-45-19-19-45z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sentiment_satisfied"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 696,
+ "paths": [
+ "M512 598q74 0 133 41t85 107h-70q-50-84-148-84t-148 84h-70q26-66 85-107t133-41zM512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125zM298 406q0-26 19-45t45-19 45 19 19 45-19 45-45 19-45-19-19-45zM598 406q0-26 19-45t45-19 45 19 19 45-19 45-45 19-45-19-19-45z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sentiment_very_dissatisfied"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 697,
+ "paths": [
+ "M298 598h428q-26 76-84 123t-130 47-130-47-84-123zM512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125zM298 406q0-26 19-45t45-19 45 19 19 45-19 45-45 19-45-19-19-45zM598 406q0-26 19-45t45-19 45 19 19 45-19 45-45 19-45-19-19-45z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sentiment_very_satisfied"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 698,
+ "paths": [
+ "M92 474l114-262q26-42 74-42h346q42 0 71 29t29 71v334q0 36-26 62l-274 272-18-20q-24-24-38-52-6-14-4-28l40-198h-236q-34 0-59-26t-25-60v-46q0-20 6-34zM938 170v470h-84q-18 0-31-12t-13-30v-384q0-18 13-31t31-13h84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "thumb_down_alt"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 699,
+ "paths": [
+ "M932 550l-114 262q-26 42-74 42h-346q-40 0-70-30t-30-70v-334q0-36 26-62l274-272 18 20q24 24 38 52 6 14 4 28l-40 198h236q34 0 59 26t25 60v46q0 18-6 34zM86 854v-470h84q18 0 31 12t13 30v384q0 18-13 31t-31 13h-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "thumb_up_alt"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 700,
+ "paths": [
+ "M426 726l384-384-60-62-324 324-152-152-60 60zM810 128q36 0 61 25t25 61v596q0 36-25 61t-61 25h-596q-36 0-61-25t-25-61v-596q0-36 25-61t61-25h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "check_box"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 701,
+ "paths": [
+ "M810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596zM810 214h-596v596h596v-596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "check_box_outline_blank"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 702,
+ "paths": [
+ "M512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125zM512 298q88 0 151 63t63 151-63 151-151 63-151-63-63-151 63-151 151-63z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "radio_button_checked"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 703,
+ "paths": [
+ "M512 736l-264 160 70-300-232-202 306-26 120-282 120 282 306 26-232 202 70 300z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "star",
+ "grade"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 704,
+ "paths": [
+ "M512 658l160 96-42-182 142-124-188-16-72-172v398zM938 394l-232 202 70 300-264-160-264 160 70-300-232-202 306-26 120-282 120 282z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "star_half"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 705,
+ "paths": [
+ "M512 658l160 96-42-182 142-124-188-16-72-172-72 172-188 16 142 124-42 182zM938 394l-232 202 70 300-264-160-264 160 70-300-232-202 306-26 120-282 120 282z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "star_outline"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 706,
+ "paths": [
+ "M512 0q200 0 347 135t163 333h-64q-10-118-79-214t-175-146l-58 56-162-162zM706 504q0-114-94-114h-40v246h38q72 0 92-68 4-14 4-48v-16zM612 342q106 0 144 94 10 24 10 68v16q0 76-42 118-44 44-114 44h-98v-340h100zM414 508q56 22 56 78 0 20-10 40-12 24-22 32-30 24-80 24-48 0-78-24t-30-70h54q0 22 15 36t39 14q56 0 56-54t-62-54h-32v-44h32q58 0 58-50t-52-50q-50 0-50 46h-56q0-34 30-64 32-26 76-26 48 0 77 24t29 70q0 50-50 72zM320 916l58-56 162 162-28 2q-200 0-347-136t-163-334h64q10 106 84 212t170 150z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "3d_rotation"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 707,
+ "paths": [
+ "M896 384h-256v554h-86v-256h-84v256h-86v-554h-256v-86h768v86zM512 86q34 0 60 25t26 59-26 60-60 26-60-26-26-60 26-59 60-25z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "accessibility"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 708,
+ "paths": [
+ "M490 42l406 214v86h-810v-86zM682 426h128v300h-128v-300zM86 938v-128h810v128h-810zM426 426h128v300h-128v-300zM170 426h128v300h-128v-300z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "account_balance"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 709,
+ "paths": [
+ "M682 576q26 0 45-18t19-46-19-46-45-18-45 18-19 46 19 46 45 18zM512 682v-340h426v340h-426zM896 768v42q0 34-26 60t-60 26h-596q-36 0-61-25t-25-61v-596q0-36 25-61t61-25h596q34 0 60 26t26 60v42h-384q-36 0-61 25t-25 61v340q0 36 25 61t61 25h384z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "account_balance_wallet"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 710,
+ "paths": [
+ "M256 726v42h512v-42q0-58-88-95t-168-37-168 37-88 95zM640 384q0-52-38-90t-90-38-90 38-38 90 38 90 90 38 90-38 38-90zM128 214q0-36 25-61t61-25h596q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-36 0-61-25t-25-61v-596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "account_box"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 711,
+ "paths": [
+ "M512 820q68 0 143-40t113-98q-2-56-90-94t-166-38-166 37-90 95q38 58 113 98t143 40zM512 214q-52 0-90 38t-38 90 38 90 90 38 90-38 38-90-38-90-90-38zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "account_circle"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 712,
+ "paths": [
+ "M306 630q0 10 10 10h494v86h-512q-34 0-59-26t-25-60q0-20 10-40l58-106-154-324h-86v-84h140q40 84 80 170 10 18 46 95t56 119h300q150-272 164-300l74 42-164 298q-24 44-74 44h-318l-38 70zM726 768q34 0 59 26t25 60-25 59-59 25-60-25-26-59 26-60 60-26zM298 768q34 0 60 26t26 60-26 59-60 25-59-25-25-59 25-60 59-26zM470 384v-128h-128v-86h128v-128h84v128h128v86h-128v128h-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "add_shopping_cart"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 713,
+ "paths": [
+ "M342 140l-36 30-62-60 38-30zM702 784l-420-420q-68 84-68 190 0 124 87 212t211 88q104 0 190-70zM124 98q152 152 433 432t355 354l-54 54-94-94q-110 94-252 94-160 0-272-113t-112-271q0-58 28-132t66-118l-34-34-48 40-60-62 48-38-58-58zM938 244l-54 66-196-166 54-64zM512 256q-54 0-102 18l-66-64q84-40 168-40 160 0 272 113t112 271q0 88-38 168l-66-64q18-48 18-104 0-124-87-211t-211-87z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "alarm_off"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 714,
+ "paths": [
+ "M450 620l210-212 46 46-256 256-136-136 44-44zM512 854q124 0 211-88t87-212-87-211-211-87-211 87-87 211 87 212 211 88zM512 170q160 0 272 113t112 271-112 271-272 113-272-113-112-271 112-271 272-113zM336 144l-196 164-54-64 196-164zM938 244l-54 66-196-166 54-64z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "alarm_on"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 715,
+ "paths": [
+ "M640 214v-44h-42v44h42zM426 214v-44h-42v44h42zM662 92q106 76 106 206h-512q0-54 30-114t74-92l-56-56q-16-16 0-30t30 0l64 64q52-28 114-28 52 0 112 28l64-64q16-14 30 0t0 30zM874 342q26 0 45 19t19 45v298q0 28-19 46t-45 18-45-18-19-46v-298q0-26 19-45t45-19zM150 342q26 0 45 19t19 45v298q0 28-19 46t-45 18-45-18-19-46v-298q0-26 19-45t45-19zM256 768v-426h512v426q0 18-12 30t-30 12h-44v150q0 28-19 46t-45 18-45-18-19-46v-150h-84v150q0 28-19 46t-45 18-45-18-19-46v-150h-44q-18 0-30-12t-12-30z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "android"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 716,
+ "paths": [
+ "M554 640v-86h-84v86h84zM554 470v-256h-84v256h84zM854 86q34 0 59 25t25 59v512q0 34-25 60t-59 26h-598l-170 170v-768q0-34 25-59t59-25h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "announcement"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 717,
+ "paths": [
+ "M896 812v-600h-768v600h768zM896 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h768zM298 384v128h-84v-214h212v86h-128zM810 512v214h-212v-86h128v-128h84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "aspect_ratio"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 718,
+ "paths": [
+ "M726 384v-86h-428v86h428zM726 554v-84h-428v84h428zM598 726v-86h-300v86h300zM512 128q-18 0-30 12t-12 30 12 31 30 13 30-13 12-31-12-30-30-12zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h178q14-38 46-62t74-24 74 24 46 62h178z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "assignment"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 719,
+ "paths": [
+ "M768 810v-60q0-58-88-95t-168-37-168 37-88 95v60h512zM512 298q-52 0-90 38t-38 90 38 90 90 38 90-38 38-90-38-90-90-38zM512 128q-18 0-30 12t-12 30 12 31 30 13 30-13 12-31-12-30-30-12zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h178q14-38 46-62t74-24 74 24 46 62h178z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "assignment_ind"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 720,
+ "paths": [
+ "M512 214q18 0 30-13t12-31-12-30-30-12-30 12-12 30 12 31 30 13zM554 598v-256h-84v256h84zM554 768v-86h-84v86h84zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h178q14-38 46-62t74-24 74 24 46 62h178z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "assignment_late"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 721,
+ "paths": [
+ "M682 640v-170h-170v-128l-214 212 214 214v-128h170zM512 128q-18 0-30 12t-12 30 12 31 30 13 30-13 12-31-12-30-30-12zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h178q14-38 46-62t74-24 74 24 46 62h178z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "assignment_return"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 722,
+ "paths": [
+ "M512 768l214-214h-128v-170h-172v170h-128zM512 128q-18 0-30 12t-12 30 12 31 30 13 30-13 12-31-12-30-30-12zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h178q14-38 46-62t74-24 74 24 46 62h178z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "assignment_returned"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 723,
+ "paths": [
+ "M426 726l342-342-60-60-282 280-110-110-60 60zM512 128q-18 0-30 12t-12 30 12 31 30 13 30-13 12-31-12-30-30-12zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h178q14-38 46-62t74-24 74 24 46 62h178z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "assignment_turned_in"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 724,
+ "paths": [
+ "M800 330q54 82 54 182 0 140-101 241t-241 101v128l-170-172 170-170v128q106 0 181-75t75-181q0-60-30-120zM512 256q-106 0-181 75t-75 181q0 64 30 120l-62 62q-54-82-54-182 0-140 101-241t241-101v-128l170 172-170 170v-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "autorenew"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 725,
+ "paths": [
+ "M256 170v342l106-64 108 64v-342h-214zM768 86q34 0 60 25t26 59v684q0 34-26 59t-60 25h-512q-34 0-60-25t-26-59v-684q0-34 26-59t60-25h512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "book",
+ "class"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 726,
+ "paths": [
+ "M726 128q34 0 59 26t25 60v682l-298-128-298 128v-682q0-34 25-60t59-26h428z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bookmark",
+ "turned_in"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 727,
+ "paths": [
+ "M726 768v-554h-428v554l214-94zM726 128q34 0 59 26t25 60v682l-298-128-298 128v-682q0-34 25-60t59-26h428z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bookmark_outline",
+ "turned_in_not"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 728,
+ "paths": [
+ "M598 512v-86h-172v86h172zM598 682v-84h-172v84h172zM854 342v84h-90q4 28 4 44v42h86v86h-86v42q0 14-4 42h90v86h-120q-34 58-93 93t-129 35-129-35-93-93h-120v-86h90q-4-28-4-42v-42h-86v-86h86v-42q0-16 4-44h-90v-84h120q30-50 78-84l-70-70 60-60 94 92q30-6 60-6t60 6l94-92 60 60-70 70q50 34 78 84h120z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bug_report"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 729,
+ "paths": [
+ "M968 810q14 8 13 27t-17 33l-98 98q-30 30-60 0l-388-388q-72 30-153 13t-141-77q-64-64-80-152t24-164l188 184 128-128-184-184q76-36 164-22t152 78q60 60 77 141t-13 153z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "build"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 730,
+ "paths": [
+ "M256 512h128l-170 170-172-170h128q0-140 101-241t241-101q100 0 182 54l-62 62q-54-30-120-30-106 0-181 75t-75 181zM810 342l172 170h-128q0 140-101 241t-241 101q-100 0-182-54l62-62q56 30 120 30 106 0 181-75t75-181h-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cached"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 731,
+ "paths": [
+ "M512 170l426 684h-852zM512 332l-272 436h544z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "change_history"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 732,
+ "paths": [
+ "M426 726l384-384-60-62-324 324-152-152-60 60zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "check_circle"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 733,
+ "paths": [
+ "M896 810v-554h-384v554h384zM896 170q34 0 60 26t26 60v554q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-554q0-34 26-60t60-26h768zM554 618h300v64h-300v-64zM554 406h300v64h-300v-64zM554 512h300v64h-300v-64z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chrome_reader_mode"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 734,
+ "paths": [
+ "M622 708l198-196-198-196 60-60 256 256-256 256zM402 708l-60 60-256-256 256-256 60 60-198 196z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "code"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 735,
+ "paths": [
+ "M854 342v-86h-684v86h684zM854 768v-256h-684v256h684zM854 170q36 0 60 25t24 61v512q0 36-24 61t-60 25h-684q-36 0-60-25t-24-61v-512q0-36 24-61t60-25h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "credit_card",
+ "payment"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 736,
+ "paths": [
+ "M554 128h342v256h-342v-256zM554 896v-426h342v426h-342zM128 896v-256h342v256h-342zM128 554v-426h342v426h-342z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "dashboard"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 737,
+ "paths": [
+ "M810 170v86h-596v-86h148l44-42h212l44 42h148zM256 810v-512h512v512q0 34-26 60t-60 26h-340q-34 0-60-26t-26-60z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "delete"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 738,
+ "paths": [
+ "M554 384h236l-236-234v234zM682 598v-86h-340v86h340zM682 768v-86h-340v86h340zM598 86l256 256v512q0 34-26 59t-60 25h-512q-34 0-60-25t-26-59l2-684q0-34 25-59t59-25h342z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "description"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 739,
+ "paths": [
+ "M298 384q34 0 60-26t26-60-26-59-60-25-59 25-25 59 25 60 59 26zM854 128q18 0 30 12t12 30v256q0 18-12 31t-30 13h-684q-18 0-30-13t-12-31v-256q0-18 12-30t30-12h684zM298 810q34 0 60-25t26-59-26-60-60-26-59 26-25 60 25 59 59 25zM854 554q18 0 30 13t12 31v256q0 18-12 30t-30 12h-684q-18 0-30-12t-12-30v-256q0-18 12-31t30-13h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "dns"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 740,
+ "paths": [
+ "M384 692l452-454 60 60-512 512-238-238 58-60z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "done"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 741,
+ "paths": [
+ "M18 572l60-60 238 238-60 60zM948 238l62 60-512 512-240-238 62-60 178 178zM768 298l-270 272-60-60 270-272z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "done_all"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 742,
+ "paths": [
+ "M810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-36 0-61-25t-25-61v-170h86v170h596v-596h-596v170h-86v-170q0-36 25-61t61-25h596zM430 666l110-112h-412v-84h412l-110-112 60-60 214 214-214 214z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "exit_to_app"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 743,
+ "paths": [
+ "M606 606l162-350-350 162-162 350zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125zM512 466q20 0 33 13t13 33-13 33-33 13-33-13-13-33 13-33 33-13z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "explore"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 744,
+ "paths": [
+ "M874 470q44 0 76 31t32 75-32 75-76 31h-64v172q0 34-25 59t-59 25h-162v-64q0-48-34-81t-82-33-82 33-34 81v64h-162q-34 0-59-25t-25-59v-162h64q48 0 81-34t33-82-33-82-81-34h-64v-162q0-34 25-59t59-25h172v-64q0-44 31-76t75-32 75 32 31 76v64h172q34 0 59 25t25 59v172h64z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "extension"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 745,
+ "paths": [
+ "M512 854q140 0 241-101t101-241q0-44-14-96-44 10-98 10-92 0-193-53t-153-127q-66 160-224 230-2 12-2 36 0 140 101 241t241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125zM640 502q22 0 38 15t16 37-16 38-38 16-38-16-16-38 16-37 38-15zM384 502q22 0 38 15t16 37-16 38-38 16-38-16-16-38 16-37 38-15z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "face"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 746,
+ "paths": [
+ "M512 910l-62-56q-106-96-154-142t-107-114-81-123-22-113q0-98 67-166t167-68q116 0 192 90 76-90 192-90 100 0 167 68t67 166q0 78-52 162t-113 146-199 186z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "favorite"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 747,
+ "paths": [
+ "M516 792q96-86 142-130t100-104 75-106 21-90q0-64-43-106t-107-42q-50 0-93 28t-59 72h-80q-16-44-59-72t-93-28q-64 0-107 42t-43 106q0 44 21 90t75 106 100 104 142 130l4 4zM704 128q100 0 167 68t67 166q0 58-22 113t-81 123-107 114-154 142l-62 56-62-54q-138-124-199-186t-113-146-52-162q0-98 67-166t167-68q116 0 192 90 76-90 192-90z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "favorite_outline"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 748,
+ "paths": [
+ "M384 554q0-52 38-90t90-38 90 38 38 90-38 90-90 38-90-38-38-90zM854 836l-164-164q36-56 36-118 0-88-63-150t-151-62-151 62-63 150 63 151 151 63q62 0 118-36l188 190q-22 16-50 16h-512q-34 0-60-25t-26-59l2-684q0-34 25-59t59-25h342l256 256v494z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "find_in_page"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 749,
+ "paths": [
+ "M710 646l206 208-62 62-208-206q-80 58-176 58h-2q-50 0-112-26t-98-62l-88 88v-256h256l-108 108q62 62 152 62 72 0 132-50t76-120h86q-10 74-54 134zM470 256q-72 0-134 50t-76 120h-86q16-108 100-182t196-74q50 0 112 26t98 62l88-88v256h-256l108-108q-62-62-150-62z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "find_replace"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 750,
+ "paths": [
+ "M640 726v-86h86v86h-86zM640 214v-86h86v86h-86zM214 298v512h512v86h-512q-36 0-61-25t-25-61v-512h86zM810 726v-86h86q0 34-26 60t-60 26zM810 384v-86h86v86h-86zM810 554v-84h86v84h-86zM384 726q-36 0-61-25t-25-61h86v86zM554 128v86h-84v-86h84zM810 128q34 0 60 26t26 60h-86v-86zM554 640v86h-84v-86h84zM384 128v86h-86q0-36 25-61t61-25zM384 470v84h-86v-84h86zM384 298v86h-86v-86h86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "flip_to_back"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 751,
+ "paths": [
+ "M298 896v-86h86v86h-86zM470 896v-86h84v86h-84zM810 640v-426h-426v426h426zM810 128q34 0 60 26t26 60v426q0 34-26 60t-60 26h-426q-36 0-61-25t-25-61v-426q0-36 25-61t61-25h426zM640 896v-86h86v86h-86zM128 384v-86h86v86h-86zM214 896q-36 0-61-25t-25-61h86v86zM128 726v-86h86v86h-86zM128 554v-84h86v84h-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "flip_to_front"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 752,
+ "paths": [
+ "M682 746q44 0 76-31t32-75-32-75-76-31-75 31-31 75 31 75 75 31zM406 342q0 44 31 75t75 31 75-31 31-75-31-76-75-32-75 32-31 76zM342 746q44 0 75-31t31-75-31-75-75-31-76 31-32 75 32 75 76 31zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "group_work"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 753,
+ "paths": [
+ "M642 480q40-40 40-96 0-70-50-120t-120-50-120 50-50 120h84q0-34 26-60t60-26 60 26 26 60-26 60l-52 54q-50 54-50 120v22h84q0-66 50-120zM554 810v-84h-84v84h84zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "help"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 754,
+ "paths": [
+ "M512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125zM622 342l60 60-110 110 110 110-60 60-110-110-110 110-60-60 110-110-110-110 60-60 110 110z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "highlight_remove"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 755,
+ "paths": [
+ "M512 342h64v180l150 90-32 52-182-110v-212zM554 128q158 0 271 112t113 272-113 272-271 112q-66 0-145-33t-125-79l60-62q88 88 210 88 124 0 212-87t88-211-88-211-212-87-211 87-87 211h128l-172 172-4-6-166-166h128q0-160 113-272t271-112z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "history",
+ "restore"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 756,
+ "paths": [
+ "M426 854h-212v-342h-128l426-384 426 384h-128v342h-212v-256h-172v256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "home"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 757,
+ "paths": [
+ "M512 490l170-170v-150h-340v150zM682 704l-170-170-170 170v150h340v-150zM256 86h512v256l-170 170 170 170v256h-512v-256l170-170-170-170v-256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hourglass_empty"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 758,
+ "paths": [
+ "M256 86h512v256l-170 170 170 170v256h-512v-256l170-170-170-170v-256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hourglass_full"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 759,
+ "paths": [
+ "M644 342v-86q0-54-39-93t-93-39-93 39-39 93v86h264zM512 726q34 0 60-26t26-60-26-60-60-26-60 26-26 60 26 60 60 26zM768 342q34 0 60 25t26 59v428q0 34-26 59t-60 25h-512q-34 0-60-25t-26-59v-428q0-34 26-59t60-25h42v-86q0-88 63-151t151-63 151 63 63 151v86h42z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "https",
+ "lock"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 760,
+ "paths": [
+ "M554 384v-86h-84v86h84zM554 726v-256h-84v256h84zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "info"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 761,
+ "paths": [
+ "M470 384v-86h84v86h-84zM512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125zM470 726v-256h84v256h-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "info_outline"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 762,
+ "paths": [
+ "M470 682v-128h-428v-84h428v-128l170 170zM896 128q36 0 61 25t25 61v598q0 34-26 59t-60 25h-768q-34 0-60-25t-26-59v-172h86v172h768v-600h-768v172h-86v-170q0-34 26-60t60-26h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "input"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 763,
+ "paths": [
+ "M512 836v-618l-180 180q-76 76-76 182 0 104 76 180t180 76zM754 338q100 100 100 241t-100 241-242 100q-58 0-129-29t-113-71q-100-100-100-241t100-241l242-242z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "invert_colors_on"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 764,
+ "paths": [
+ "M752 250l186 262-186 262q-26 36-70 36h-468q-34 0-60-25t-26-59v-428q0-34 26-59t60-25h468q44 0 70 36z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "label"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 765,
+ "paths": [
+ "M682 726l152-214-152-214h-468v428h468zM752 250l186 262-186 262q-26 36-70 36h-468q-34 0-60-25t-26-59v-428q0-34 26-59t60-25h468q44 0 70 36z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "label_outline"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 766,
+ "paths": [
+ "M698 598h144q12-56 12-86t-12-86h-144q6 42 6 86t-6 86zM622 834q50-16 104-61t82-91h-126q-20 80-60 152zM612 598q6-42 6-86t-6-86h-200q-6 42-6 86t6 86h200zM512 852q56-82 82-170h-164q26 88 82 170zM342 342q24-86 60-152-50 16-105 61t-81 91h126zM216 682q26 46 81 91t105 61q-40-72-60-152h-126zM182 598h144q-6-42-6-86t6-86h-144q-12 56-12 86t12 86zM512 172q-56 82-82 170h164q-26-88-82-170zM808 342q-28-46-82-91t-104-61q36 66 60 152h126zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "language"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 767,
+ "paths": [
+ "M598 128h298v298h-86v-152l-418 418-60-60 418-418h-152v-86zM810 810v-298h86v298q0 34-26 60t-60 26h-596q-36 0-61-25t-25-61v-596q0-36 25-61t61-25h298v86h-298v596h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "launch",
+ "open_in_new"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 768,
+ "paths": [
+ "M298 298h598v86h-598v-86zM298 726v-86h598v86h-598zM298 554v-84h598v84h-598zM128 384v-86h86v86h-86zM128 726v-86h86v86h-86zM128 554v-84h86v84h-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "list"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 769,
+ "paths": [
+ "M768 854v-428h-512v428h512zM768 342q34 0 60 25t26 59v428q0 34-26 59t-60 25h-512q-34 0-60-25t-26-59v-428q0-34 26-59t60-25h388v-86q0-54-39-93t-93-39-93 39-39 93h-82q0-88 63-151t151-63 151 63 63 151v86h42zM512 726q-34 0-60-26t-26-60 26-60 60-26 60 26 26 60-26 60-60 26z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "lock_open"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 770,
+ "paths": [
+ "M768 854v-428h-512v428h512zM380 256v86h264v-86q0-54-39-93t-93-39-93 39-39 93zM768 342q34 0 60 25t26 59v428q0 34-26 59t-60 25h-512q-34 0-60-25t-26-59v-428q0-34 26-59t60-25h42v-86q0-88 63-151t151-63 151 63 63 151v86h42zM512 726q-34 0-60-26t-26-60 26-60 60-26 60 26 26 60-26 60-60 26z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "lock_outline"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 771,
+ "paths": [
+ "M736 652q32-32 32-76t-31-75-75-31q-46 0-76 30l-32 32-30-32q-30-30-76-30-44 0-75 31t-31 75q0 46 30 76l182 182zM234 298q26 0 45-19t19-45-19-45-45-19-45 19-19 45 19 45 45 19zM914 494q24 24 24 60t-24 60l-300 300q-24 24-60 24t-60-24l-384-384q-24-24-24-60v-300q0-34 25-59t59-25h300q36 0 60 24z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "loyalty"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 772,
+ "paths": [
+ "M854 256q34 0 59 26t25 60v512q0 34-25 59t-59 25h-684q-34 0-59-25t-25-59v-512q0-34 25-60t59-26h86v-256h342v170h-256v342h84v-256h428z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "markunread_mailbox"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 773,
+ "paths": [
+ "M554 384h236l-236-234v234zM682 682v-84h-128v-128h-84v128h-128v84h128v128h84v-128h128zM598 86l256 256v512q0 34-26 59t-60 25h-512q-34 0-60-25t-26-59l2-684q0-34 25-59t59-25h342z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "note_add"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 774,
+ "paths": [
+ "M512 426l170 172h-128v256h-84v-256h-128zM810 170q36 0 61 25t25 61v512q0 34-26 60t-60 26h-170v-86h170v-426h-596v426h170v86h-170q-36 0-61-25t-25-61v-512q0-36 25-61t61-25h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "open_in_browser"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 775,
+ "paths": [
+ "M598 640v128h128l-214 214-214-214h128v-128h172zM982 512l-214 214v-128h-128v-172h128v-128zM384 426v172h-128v128l-214-214 214-214v128h128zM426 384v-128h-128l214-214 214 214h-128v128h-172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "open_with"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 776,
+ "paths": [
+ "M716 776l60-60-124-124q30-50 30-102 0-80-56-136t-136-56-136 56-56 136 56 136 136 56q52 0 102-30zM854 170q34 0 59 26t25 60v512q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-512q0-34 25-60t59-26h684zM490 384q44 0 76 31t32 75-32 76-76 32-75-32-31-76 31-75 75-31z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pageview"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 777,
+ "paths": [
+ "M598 554v-170q0-34-26-60t-60-26-60 26-26 60v170q0 34 26 60t60 26 60-26 26-60zM854 214q34 0 59 25t25 59v512q0 34-25 60t-59 26h-300v-90q90-16 152-87t62-165h-86q0 70-50 121t-120 51-120-51-50-121h-86q0 94 62 165t152 87v90h-300q-34 0-59-26t-25-60v-512q0-34 25-59t59-25h136l78-86h256l78 86h136z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "perm_camera_mic"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 778,
+ "paths": [
+ "M768 768v-42q0-58-88-95t-168-37-168 37-88 95v42h512zM512 256q-52 0-90 38t-38 90 38 90 90 38 90-38 38-90-38-90-90-38zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-36 0-61-25t-25-61v-596q0-36 25-61t61-25h42v-86h86v86h340v-86h86v86h42z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "perm_contact_calendar"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 779,
+ "paths": [
+ "M810 874q26 0 45-19t19-45-19-45-45-19-45 19-19 45 19 45 45 19zM968 832l46 34q4 4 4 10l-2 2v2l-42 74q-6 10-14 6l-52-22q-6 6-36 20l-8 58q0 8-12 8h-84q-12 0-12-8l-8-58q-16-8-36-20l-52 22q-10 4-14-6l-42-74v-2l-2-2q0-6 4-10l46-34q0-4-1-12t-1-10 1-10 1-10l-46-36q-6-6-2-14l42-74q4-8 14-4l52 22q24-16 36-22l8-56q0-8 12-8h84q12 0 12 8l8 56q8 4 36 22l52-22q10-4 14 4l42 74v2q2 2 2 4 0 4-4 8l-46 36q2 6 2 20 0 4-1 12t-1 10zM810 490q-132 0-226 94t-94 226q0 16 4 44h-494l854-854-2 494q-28-4-42-4z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "perm_data_setting"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 780,
+ "paths": [
+ "M726 810v-596h-428v596h428zM726 44q34 0 59 25t25 59v768q0 34-25 60t-59 26h-428q-34 0-59-26t-25-60v-768q0-34 25-60t59-26zM554 470v256h-84v-256h84zM554 298v86h-84v-86h84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "perm_device_information"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 781,
+ "paths": [
+ "M298 640h598l-150-192-106 128-150-192zM938 170q34 0 60 26t26 60v426q0 34-26 60t-60 26h-682q-34 0-60-26t-26-60l2-512q0-34 25-59t59-25h256l86 84h340zM86 256v598h768v84h-768q-34 0-60-25t-26-59v-598h86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "perm_media"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 782,
+ "paths": [
+ "M512 128h384v298h-256l-128 128v-426zM854 662q18 0 30 12t12 30v150q0 18-12 30t-30 12q-300 0-513-213t-213-513q0-18 12-30t30-12h150q18 0 30 12t12 30v2q0 82 24 150 8 26-10 44l-94 94q40 76 123 159t159 123l94-94q14-14 30-14 6 0 14 4 72 24 152 24z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "perm_phone_msg"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 783,
+ "paths": [
+ "M470 342h84v-86h-84v86zM554 682v-256h-84v256h84zM512 128q272 0 512 182l-512 628-512-630q236-180 512-180z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "perm_scan_wifi"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 784,
+ "paths": [
+ "M896 812v-600h-768v600h768zM896 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h768zM810 298v256h-340v-256h340z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "picture_in_picture"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 785,
+ "paths": [
+ "M810 170l192 342-192 342h-170l192-342-112-198-336 540h-170l-192-342 192-342h170l-192 342 112 198 336-540h170z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "polymer"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 786,
+ "paths": [
+ "M760 220q136 116 136 292 0 160-112 272t-272 112-272-112-112-272q0-72 40-158t96-134l60 60q-46 38-78 106t-32 126q0 124 87 211t211 87 211-87 87-211q0-58-32-126t-78-104zM554 128v426h-84v-426h84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "power_settings_new"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 787,
+ "paths": [
+ "M128 938v-852l64 64 64-64 64 64 64-64 64 64 64-64 64 64 64-64 64 64 64-64 64 64 64-64v852l-64-64-64 64-64-64-64 64-64-64-64 64-64-64-64 64-64-64-64 64-64-64zM768 384v-86h-512v86h512zM768 554v-84h-512v84h512zM768 726v-86h-512v86h512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "receipt"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 788,
+ "paths": [
+ "M854 598v-256h-218l90 120-70 50q-128-174-144-196-16 22-144 196l-70-50 90-120h-218v256h684zM854 810v-84h-684v84h684zM384 170q-18 0-30 13t-12 31 12 30 30 12 30-12 12-30-12-31-30-13zM640 170q-18 0-30 13t-12 31 12 30 30 12 30-12 12-30-12-31-30-13zM854 256q36 0 60 25t24 61v468q0 36-24 61t-60 25h-684q-36 0-60-25t-24-61v-468q0-36 24-61t60-25h94q-8-28-8-42 0-52 38-90t90-38q66 0 106 56l22 30 22-30q14-24 46-40t60-16q52 0 90 38t38 90q0 14-8 42h94z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "redeem",
+ "card_giftcard"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 789,
+ "paths": [
+ "M406 598q80 0 136-56t56-136-56-136-136-56-136 56-56 136 56 136 136 56zM662 598l212 212-64 64-212-212v-34l-12-12q-76 66-180 66-116 0-197-80t-81-196 81-197 197-81 196 81 80 197q0 42-20 95t-46 85l12 12h34z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "search"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 790,
+ "paths": [
+ "M512 662q62 0 106-44t44-106-44-106-106-44-106 44-44 106 44 106 106 44zM830 554l90 70q14 10 4 28l-86 148q-8 14-26 8l-106-42q-42 30-72 42l-16 112q-4 18-20 18h-172q-16 0-20-18l-16-112q-38-16-72-42l-106 42q-18 6-26-8l-86-148q-10-18 4-28l90-70q-2-14-2-42t2-42l-90-70q-14-10-4-28l86-148q8-14 26-8l106 42q42-30 72-42l16-112q4-18 20-18h172q16 0 20 18l16 112q38 16 72 42l106-42q18-6 26 8l86 148q10 18-4 28l-90 70q2 14 2 42t-2 42z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "settings"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 791,
+ "paths": [
+ "M736 512q0-20-2-30l64-48q10-8 2-20l-60-104q-6-10-18-6l-74 30q-26-20-50-30l-12-78q-4-12-14-12h-120q-12 0-14 12l-12 80q-32 14-50 28l-74-30q-10-4-18 8l-60 102q-2 2-2 8 0 10 4 12l64 48q-2 10-2 30t2 30l-64 48q-4 2-4 12 0 6 2 8l60 104q6 10 18 6l74-30q26 20 50 30l12 78q4 12 14 12h120q12 0 14-12l12-80q32-14 50-28l74 30q10 4 18-8l60-102q8-12-2-20l-64-48q2-10 2-30zM810 128q36 0 61 25t25 61v596q0 36-25 61t-61 25h-596q-36 0-61-25t-25-61v-596q0-36 25-61t61-25h596zM512 426q34 0 60 26t26 60-26 60-60 26-60-26-26-60 26-60 60-26z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "settings_applications"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 792,
+ "paths": [
+ "M512 128q160 0 272 112t112 272-112 272-272 112q-54 0-122-23t-112-57l60-60q76 54 174 54 124 0 211-87t87-211-87-211-211-87-211 87-87 211h128l-172 170-170-170h128q0-160 112-272t272-112zM598 512q0 34-26 60t-60 26-60-26-26-60 26-60 60-26 60 26 26 60z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "settings_backup_restore"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 793,
+ "paths": [
+ "M634 610l-80-80v160zM554 164v160l80-80zM756 244l-184 182 184 184-244 244h-42v-324l-196 196-60-60 238-240-238-238 60-60 196 196v-324h42zM640 1024v-86h86v86h-86zM298 1024v-86h86v86h-86zM470 1024v-86h84v86h-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "settings_bluetooth"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 794,
+ "paths": [
+ "M682 682v-512h-340v512h340zM682 0q34 0 60 26t26 60v682q0 34-26 60t-60 26h-340q-34 0-60-26t-26-60v-682q0-34 26-60t60-26h340zM640 1024v-86h86v86h-86zM470 1024v-86h84v86h-84zM298 1024v-86h86v86h-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "settings_cell"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 795,
+ "paths": [
+ "M512 384v256q52 0 90-38t38-90-38-90-90-38zM342 682v-106l-64-64 64-64v-106h106l64-64 64 64h106v106l64 64-64 64v106h-106l-64 64-64-64h-106zM896 812v-600h-768v600h768zM896 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "settings_brightness"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 796,
+ "paths": [
+ "M758 234l232 278-232 278-66-54 186-224-186-224zM470 554v-84h84v84h-84zM726 470v84h-86v-84h86zM298 554v-84h86v84h-86zM332 288l-186 224 186 224-66 54-232-278 232-278z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "settings_ethernet"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 797,
+ "paths": [
+ "M512 42q194 0 332 138t138 332h-86q0-160-112-272t-272-112-272 112-112 272h-86q0-194 138-332t332-138zM554 610v140l146 146-60 60-128-128-128 128-60-60 146-146v-140q-64-26-64-98 0-44 31-75t75-31 75 31 31 75q0 72-64 98zM512 214q124 0 211 87t87 211h-84q0-88-63-151t-151-63-151 63-63 151h-84q0-124 87-211t211-87z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "settings_input_antenna"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 798,
+ "paths": [
+ "M726 682v-84h256v84q0 42-24 74t-62 46v180h-86v-180q-84-30-84-120zM554 86v170h86v256h-256v-256h86v-170q0-18 12-31t30-13 30 13 12 31zM896 256h86v256h-256v-256h84v-170q0-18 13-31t31-13 30 13 12 31v170zM42 682v-84h256v84q0 90-84 120v180h-86v-180q-38-14-62-46t-24-74zM384 682v-84h256v84q0 42-24 74t-62 46v180h-84v-180q-38-14-62-46t-24-74zM214 86v170h84v256h-256v-256h86v-170q0-18 12-31t30-13 31 13 13 31z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "settings_input_component",
+ "settings_input_composite"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 799,
+ "paths": [
+ "M342 170v128h84v-84h44v84h84v-84h44v84h84v-128h-340zM768 298h42v256l-128 256v128h-340v-128l-128-256v-256h42v-128q0-34 26-59t60-25h340q34 0 60 25t26 59v128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "settings_input_hdmi"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 800,
+ "paths": [
+ "M662 640q26 0 45 18t19 46-19 46-45 18-45-18-19-46 19-46 45-18zM746 426q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM512 896q160 0 272-112t112-272-112-272-272-112-272 112-112 272 112 272 272 112zM512 42q194 0 332 138t138 332-138 332-332 138-332-138-138-332 138-332 332-138zM362 640q26 0 45 18t19 46-19 46-45 18-45-18-19-46 19-46 45-18zM640 278q0 26-18 45t-46 19h-128q-28 0-46-19t-18-45 18-45 46-19h128q28 0 46 19t18 45zM342 490q0 26-19 45t-45 19-45-19-19-45 19-45 45-19 45 19 19 45z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "settings_input_svideo"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 801,
+ "paths": [
+ "M896 812v-600h-768v600h768zM896 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h768zM598 682l-86 108-86-108h172zM256 426v172l-106-86zM768 426l106 86-106 86v-172zM512 234l86 108h-172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "settings_overscan"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 802,
+ "paths": [
+ "M810 384h86v86h-86v-86zM854 662q18 0 30 12t12 30v150q0 18-12 30t-30 12q-300 0-513-213t-213-513q0-18 12-30t30-12h150q18 0 30 12t12 30v2q0 82 24 150 8 26-10 44l-94 94q40 76 123 159t159 123l94-94q14-14 30-14 6 0 14 4 72 24 152 24zM726 384v86h-86v-86h86zM554 384v86h-84v-86h84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "settings_phone"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 803,
+ "paths": [
+ "M640 1024v-86h86v86h-86zM706 190q148 104 148 280 0 140-100 240t-242 100-242-100-100-240q0-74 43-156t105-124l60 60q-122 76-122 220 0 106 75 181t181 75 181-75 75-181q0-60-36-124t-88-94zM554 86v426h-84v-426h84zM470 1024v-86h84v86h-84zM298 1024v-86h86v86h-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "settings_power"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 804,
+ "paths": [
+ "M512 0q198 0 332 138l-60 60q-112-112-272-112t-272 112l-60-60q138-138 332-138zM300 258q88-88 212-88t212 88l-60 60q-26-26-71-44t-81-18-81 18-71 44zM512 640q34 0 60-26t26-60-26-59-60-25-60 25-26 59 26 60 60 26zM640 384q18 0 30 12t12 30v512q0 18-12 31t-30 13h-256q-18 0-30-13t-12-31v-512q0-18 12-30t30-12h256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "settings_remote"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 805,
+ "paths": [
+ "M810 426q0 108-75 190t-181 98v140h-84v-140q-106-16-181-98t-75-190h72q0 94 67 156t159 62 159-62 67-156h72zM640 1024v-86h86v86h-86zM470 1024v-86h84v86h-84zM512 554q-52 0-90-38t-38-90v-256q0-52 38-90t90-38 90 38 38 90v256q0 52-38 90t-90 38zM298 1024v-86h86v86h-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "settings_voice"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 806,
+ "paths": [
+ "M384 768l320-214-320-170v384zM426 170v86h172v-86h-172zM682 256h256v554q0 36-24 61t-60 25h-684q-36 0-60-25t-24-61v-554h256v-86q0-36 24-60t60-24h172q36 0 60 24t24 60v86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "shop"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 807,
+ "paths": [
+ "M512 640l234-170-234-128v298zM512 128v86h170v-86h-170zM768 214h214v468q0 36-25 61t-61 25h-598q-36 0-60-25t-24-61v-468h212v-86q0-36 25-61t61-25h170q36 0 61 25t25 61v86zM128 384v470h682q0 36-24 60t-60 24h-598q-36 0-61-24t-25-60v-470h86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "shop_two"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 808,
+ "paths": [
+ "M512 726q34 0 60-26t26-60-26-60-60-26-60 26-26 60 26 60 60 26zM384 384h256l-128-188zM734 384h204q18 0 31 12t13 30q-20 80-60 225t-50 183q-18 62-82 62h-556q-64 0-82-62l-108-396q-2-4-2-12 0-18 13-30t31-12h204l186-280q12-18 36-18 26 0 36 18z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "shopping_basket"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 809,
+ "paths": [
+ "M768 342v-86h-342v86h342zM768 470v-86h-342v86h342zM640 598v-86h-214v86h214zM342 342v-86h-86v86h86zM342 470v-86h-86v86h86zM342 598v-86h-86v86h86zM854 86q34 0 59 25t25 59v512q0 34-25 60t-59 26h-598l-170 170v-768q0-34 25-59t59-25h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "speaker_notes"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 810,
+ "paths": [
+ "M922 494l60 60-406 406-216-218 60-60 156 158zM274 470h176l-88-236zM532 682l-50-128h-240l-48 128h-90l218-554h80l218 554h-88z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "spellcheck"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 811,
+ "paths": [
+ "M692 768l-48-206 160-138-210-18-82-192-82 194-210 16 160 138-48 206 180-108zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "stars"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 812,
+ "paths": [
+ "M170 214h684v84h-684v-84zM170 640v-86h684v86h-684zM854 384v86h-684v-86h684zM598 726v84h-428v-84h428z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "subject"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 813,
+ "paths": [
+ "M384 554q44 0 102 12-102 56-102 148v96h-298v-106q0-46 55-82t121-52 122-16zM704 598q74 0 154 32t80 84v96h-468v-96q0-52 80-84t154-32zM384 470q-52 0-90-38t-38-90 38-90 90-38 90 38 38 90-38 90-90 38zM704 512q-44 0-75-31t-31-75 31-76 75-32 75 32 31 76-31 75-75 31z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "supervisor_account"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 814,
+ "paths": [
+ "M896 384l-170 170v-128h-300v-84h300v-128zM298 470v128h300v84h-300v128l-170-170z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "swap_horiz"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 815,
+ "paths": [
+ "M384 128l170 170h-128v300h-84v-300h-128zM682 726h128l-170 170-170-170h128v-300h84v300z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "swap_vert"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 816,
+ "paths": [
+ "M746 640h-106v-170h-86v170h-106l150 150zM278 384h106v170h86v-170h106l-150-150zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "swap_vertical_circle"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 817,
+ "paths": [
+ "M896 150q34 0 60 25t26 59v598q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-598q0-34 26-59t60-25h256v84h-256v598h768v-598h-256v-84h256zM512 704l-170-170h128v-384h84v384h128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "system_update_alt"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 818,
+ "paths": [
+ "M896 810v-426h-342v-170h-426v596h768zM896 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tab"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 819,
+ "paths": [
+ "M726 896v-86h84v86h-84zM554 896v-86h86v86h-86zM896 554v-84h86v84h-86zM896 896v-86h86q0 34-26 60t-60 26zM214 214v-86h84v86h-84zM214 896v-86h84v86h-84zM384 214v-86h86v86h-86zM896 726v-86h86v86h-86zM896 128q34 0 60 26t26 60v170h-428v-256h342zM128 896q-34 0-60-26t-26-60h86v86zM42 726v-86h86v86h-86zM384 896v-86h86v86h-86zM42 214q0-34 26-60t60-26v86h-86zM42 554v-84h86v84h-86zM42 384v-86h86v86h-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tab_unselected"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 820,
+ "paths": [
+ "M810 128h172v512h-172v-512zM640 128q34 0 60 26t26 60v426q0 34-26 60l-280 282-46-46q-18-18-18-44v-14l42-196h-270q-34 0-60-25t-26-59v-86q0-16 6-32l130-300q20-52 78-52h384z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "thumb_down"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 821,
+ "paths": [
+ "M982 426v86q0 16-6 32l-130 300q-20 52-78 52h-384q-34 0-60-26t-26-60v-426q0-34 26-60l280-282 46 46q18 18 18 44v14l-42 196h270q34 0 60 25t26 59zM42 896v-512h172v512h-172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "thumb_up"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 822,
+ "paths": [
+ "M960 426q28 0 46 19t18 45v278q0 28-18 46l-212 210-34-34q-14-14-14-34 6-28 17-80t13-66h-222q-18 0-30-12t-12-30v-54q0-6 4-22l98-226q18-40 58-40h288zM512 256v54q0 6-4 22l-98 226q-18 40-58 40h-288q-28 0-46-19t-18-45v-278q0-28 18-46l212-210 34 34q14 14 14 34-6 28-17 80t-13 66h222q18 0 30 12t12 30z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "thumbs_up_down"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 823,
+ "paths": [
+ "M810 554v-84h86v84h-86zM810 298h86v86h-86v-86zM810 726v-86h86v86h-86zM128 726v-86h598v86h-598zM128 554v-84h598v84h-598zM128 384v-86h598v86h-598z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "toc"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 824,
+ "paths": [
+ "M298 426h214v214h-214v-214zM810 810v-468h-596v468h596zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-36 0-61-25t-25-61v-596q0-34 25-60t61-26h42v-86h86v86h340v-86h86v86h42z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "today"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 825,
+ "paths": [
+ "M128 512q0 74 50 145t120 97v88q-112-28-184-120t-72-210 72-210 184-120v88q-70 26-120 97t-50 145zM640 768q106 0 181-75t75-181-75-181-181-75-181 75-75 181 75 181 181 75zM640 170q140 0 241 101t101 241-101 241-241 101-241-101-101-241 101-241 241-101z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "toll"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 826,
+ "paths": [
+ "M814 210q124 124 124 302 0 176-125 301t-301 125-301-125-125-301 125-301 301-125h42v352q44 24 44 74 0 34-26 60t-60 26-60-26-26-60q0-50 44-74v-90q-56 16-92 60t-36 104q0 70 50 120t120 50 120-50 50-120q0-66-50-120l60-60q76 76 76 180 0 106-75 181t-181 75-181-75-75-181q0-94 61-165t153-87v-86q-126 16-213 112t-87 226q0 140 101 241t241 101 241-101 101-241q0-58-29-129t-71-113z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "track_changes"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 827,
+ "paths": [
+ "M678 726h138l-70-186zM790 426l192 512h-86l-48-128h-202l-48 128h-86l192-512h86zM550 642l-34 88-132-132-214 212-60-60 218-214q-80-88-128-194h86q42 80 98 142 92-102 136-228h-478v-86h300v-84h84v84h300v86h-126q-20 64-66 145t-92 133l-2 2z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "translate"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 828,
+ "paths": [
+ "M682 768l98-98-208-208-170 170-316-316 60-60 256 256 170-170 268 268 98-98v256h-256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "trending_down"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 829,
+ "paths": [
+ "M938 512l-170 170v-128h-640v-84h640v-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "trending_neutral"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 830,
+ "paths": [
+ "M682 256h256v256l-98-98-268 268-170-170-256 256-60-60 316-316 170 170 208-208z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "trending_up"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 831,
+ "paths": [
+ "M426 726l342-342-60-60-282 280-110-110-60 60zM512 42l384 172v256q0 178-110 325t-274 187q-164-40-274-187t-110-325v-256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "verified_user"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 832,
+ "paths": [
+ "M854 128q18 0 30 12t12 30v256q0 18-12 31t-30 13h-726q-18 0-30-13t-12-31v-256q0-18 12-30t30-12h726zM854 554q18 0 30 13t12 31v256q0 18-12 30t-30 12h-726q-18 0-30-12t-12-30v-256q0-18 12-31t30-13h726z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "view_agenda"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 833,
+ "paths": [
+ "M342 768v-554h384v554h-384zM768 214h128v554h-128v-554zM170 768v-554h128v554h-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "view_array"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 834,
+ "paths": [
+ "M768 256h170v470h-170v-470zM86 726v-470h170v470h-170zM298 810v-640h428v640h-428z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "view_carousel"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 835,
+ "paths": [
+ "M682 214h214v554h-214v-554zM170 768v-554h214v554h-214zM426 768v-554h214v554h-214z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "view_column"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 836,
+ "paths": [
+ "M86 128h810v128h-810v-128zM854 342q18 0 30 12t12 30v256q0 18-12 30t-30 12h-726q-18 0-30-12t-12-30v-256q0-18 12-30t30-12h726zM86 896v-128h810v128h-810z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "view_day"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 837,
+ "paths": [
+ "M170 214h684v84h-684v-84zM170 470v-86h684v86h-684zM170 810v-84h684v84h-684zM170 640v-86h684v86h-684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "view_headline"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 838,
+ "paths": [
+ "M384 214h512v170h-512v-170zM384 810v-170h512v170h-512zM384 598v-172h512v172h-512zM170 384v-170h172v170h-172zM170 810v-170h172v170h-172zM170 598v-172h172v172h-172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "view_list"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 839,
+ "paths": [
+ "M682 214h214v256h-214v-256zM426 470v-256h214v256h-214zM682 768v-256h214v256h-214zM426 768v-256h214v256h-214zM170 768v-256h214v256h-214zM170 470v-256h214v256h-214z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "view_module"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 840,
+ "paths": [
+ "M426 214h470v256h-470v-256zM682 768v-256h214v256h-214zM170 768v-554h214v554h-214zM426 768v-256h214v256h-214z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "view_quilt"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 841,
+ "paths": [
+ "M170 214h726v256h-726v-256zM170 768v-256h726v256h-726z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "view_stream"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 842,
+ "paths": [
+ "M554 214q18 0 31 12t13 30v512q0 18-13 30t-31 12h-128q-18 0-30-12t-12-30v-512q0-18 12-30t30-12h128zM854 214q18 0 30 12t12 30v512q0 18-12 30t-30 12h-128q-18 0-31-12t-13-30v-512q0-18 13-30t31-12h128zM256 214q18 0 30 12t12 30v512q0 18-12 30t-30 12h-128q-18 0-30-12t-12-30v-512q0-18 12-30t30-12h128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "view_week"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 843,
+ "paths": [
+ "M506 384h6q52 0 90 38t38 90v8zM322 418q-24 48-24 94 0 88 63 151t151 63q46 0 94-24l-66-66q-16 4-28 4-52 0-90-38t-38-90q0-12 4-28zM86 182l54-54 756 756-54 54q-10-10-63-62t-81-80q-86 36-186 36-158 0-286-88t-184-232q22-52 69-115t91-97q-24-24-67-68t-49-50zM512 298q-40 0-78 16l-92-92q78-30 170-30 158 0 285 88t183 232q-48 118-146 202l-124-124q16-38 16-78 0-88-63-151t-151-63z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "visibility_off"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 844,
+ "paths": [
+ "M854 426v-256h-684v256h684zM854 640v-86h-684v86h684zM854 86q36 0 60 24t24 60v470q0 36-24 61t-60 25h-172v212l-170-84-170 84v-212h-172q-36 0-60-25t-24-61v-470q0-36 24-60t60-24h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "card_membership"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 845,
+ "paths": [
+ "M854 598v-256h-128v84h-86v-84h-256v84h-86v-84h-128v256h684zM854 810v-84h-684v84h684zM384 170v86h256v-86h-256zM854 256q36 0 60 25t24 61v468q0 36-24 61t-60 25h-684q-36 0-60-25t-24-61v-468q0-36 24-61t60-25h128v-86q0-36 25-60t61-24h256q36 0 61 24t25 60v86h128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "card_travel"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 846,
+ "paths": [
+ "M598 256v-86h-172v86h172zM854 256q36 0 60 25t24 61v468q0 36-24 61t-60 25h-684q-36 0-60-25t-24-61v-468q0-36 24-61t60-25h172v-86q0-36 24-60t60-24h172q36 0 60 24t24 60v86h172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "work"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 847,
+ "paths": [
+ "M726 598l212 212-62 64-214-214v-32l-12-12q-32 26-85 46t-95 20q-80 0-142-38l64-62q40 16 78 16 80 0 136-56t56-136-56-136-136-56-136 56-56 136h148l-176 170-164-170h106q0-114 82-196t196-82q116 0 197 81t81 197q0 42-20 95t-48 85l12 12h34z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "youtube_searched_for"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 848,
+ "paths": [
+ "M512 214l284 426h-568zM214 726h596v84h-596v-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "eject"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 849,
+ "paths": [
+ "M512 726l-54-118-116-54 116-52 54-118 54 118 116 52-116 54zM512 768q88 0 151-63t63-151-63-150-151-62-151 62-63 150 63 151 151 63zM384 128h256l78 86h136q34 0 59 25t25 59v512q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-512q0-34 25-59t59-25h136z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "camera_enhance"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 850,
+ "paths": [
+ "M512 256q70 0 120 50t50 120q0 54-64 111t-64 103h-84q0-46 20-79t44-48 44-37 20-50q0-34-26-59t-60-25-60 25-26 59h-84q0-70 50-120t120-50zM512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125zM470 768v-86h84v86h-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "help_outline"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 851,
+ "paths": [
+ "M128 214h768v84h-768v-84zM128 470v-86h768v86h-768zM128 810v-84h768v84h-768zM128 640v-86h768v86h-768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "reorder"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 852,
+ "paths": [
+ "M512 426h-86v86h-42v-86h-86v-42h86v-86h42v86h86v42zM406 598q80 0 136-56t56-136-56-136-136-56-136 56-56 136 56 136 136 56zM662 598l212 212-64 64-212-212v-34l-12-12q-76 66-180 66-116 0-197-80t-81-196 81-197 197-81 196 81 80 197q0 42-20 95t-46 85l12 12h34z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "zoom_in"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 853,
+ "paths": [
+ "M298 384h214v42h-214v-42zM406 598q80 0 136-56t56-136-56-136-136-56-136 56-56 136 56 136 136 56zM662 598l212 212-64 64-212-212v-34l-12-12q-76 66-180 66-116 0-197-80t-81-196 81-197 197-81 196 81 80 197q0 42-20 95t-46 85l12 12h34z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "zoom_out"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 854,
+ "paths": [
+ "M918 490v-42h-86v42h86zM918 384q26 0 45 19t19 45v42q0 26-19 45t-45 19h-86v86h-64v-256h150zM534 448v-64h192v64h-64v192h-64v-192h-64zM298 448v-64h192v64h-64v192h-64v-192h-64zM192 470v-86h64v256h-64v-106h-86v106h-64v-256h64v86h86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "http"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 855,
+ "paths": [
+ "M726 554h-428v-340q0-34 26-60t60-26h256q34 0 60 26t26 60v340zM86 426h128v128h-128v-128zM810 426h128v128h-128v-128zM170 896v-256h684v256h-128v-128h-428v128h-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "event_seat"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 856,
+ "paths": [
+ "M598 616q-164-46-412-110l-68-20v-220l62 16 40 100 212 56v-352l82 22 118 384 226 60q26 8 39 31t7 49q-8 26-30 38t-48 6zM106 810h812v86h-812v-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "flight_land"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 857,
+ "paths": [
+ "M942 412q6 26-7 48t-39 30q-248 66-412 110l-226 60-68 20-112-192 62-16 84 64 212-56-176-306 82-22 294 274 228-60q26-8 49 6t29 40zM106 810h812v86h-812v-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "flight_takeoff"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 858,
+ "paths": [
+ "M256 598h86q0 70 50 120t120 50 120-50 50-120h86q0 106-75 181t-181 75-181-75-75-181zM470 214h84v238h150l-192 192-192-192h150v-238z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "play_for_work"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 859,
+ "paths": [
+ "M810 448h-128v42h86v64h-86v86h-64v-256h192v64zM384 384q18 0 30 12t12 30v22h-148v128h84v-64h64v86q0 18-12 30t-30 12h-128q-18 0-30-12t-12-30v-172q0-18 12-30t30-12h128zM490 384h64v256h-64v-256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "gif"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 860,
+ "paths": [
+ "M726 554v-84h-428v84h428zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "indeterminate_check_box"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 861,
+ "paths": [
+ "M440 598l286-286-60-60-226 226-82-82-60 60zM726 768v-86h-428v86h428zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "offline_pin"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 862,
+ "paths": [
+ "M686 684q68-68 68-165t-68-165-165-68-165 68-68 165 68 165 165 68 165-68zM732 308q88 88 88 212t-88 210-212 86-210-86-86-210 86-212 210-88 212 88zM180 348v-170h170zM350 860h-170v-170zM862 690v170h-170zM692 178h170v170z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "all_out"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 863,
+ "paths": [
+ "M512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125zM506 390q-80 0-80 116v12q0 116 80 116 30 0 50-17t20-43h76q0 50-44 88-42 36-102 36-80 0-122-48t-42-132v-12q0-82 40-128 48-54 124-54 66 0 104 38 42 42 42 98h-76q0-14-6-26-10-20-14-24-20-20-50-20z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "copyright"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 864,
+ "paths": [
+ "M636 938h-6q-92-24-158-90-38-38-65-103t-27-119q0-52 38-89t92-37 93 37 39 89q0 34 25 58t63 24 64-24 26-58q0-120-91-206t-219-86q-92 0-168 47t-114 125q-24 50-24 120 0 80 28 154 6 20-14 26t-26-12q-32-82-32-168 0-78 30-138 42-90 129-144t191-54q146 0 249 99t103 237q0 52-39 88t-93 36-92-36-38-88q0-34-26-59t-64-25-63 25-25 59q0 112 80 192 56 56 140 78 18 2 14 26-4 16-20 16zM530 626q0 74 55 128t137 54q4 0 18-2t23-2 18 3 11 13q4 22-18 26-24 4-52 4-80 0-132-38-102-70-102-186 0-22 22-22 20 0 20 22zM416 930q-8 0-14-6-54-54-86-114-46-80-46-184 0-94 71-162t171-68 171 68 71 162q0 20-22 20t-22-20q0-78-58-133t-140-55-140 55-58 133q0 96 38 164 26 46 80 104 16 14 0 30-6 6-16 6zM150 414q-22 0-22-20 0-4 4-12 64-92 160-140 100-52 220-52t220 52q98 48 160 138 4 8 4 12 0 14-16 20t-24-8q-60-82-144-124-92-46-200-47t-200 47q-90 46-146 126-6 8-16 8zM760 190q-8 0-10-2-118-60-238-60-130 0-238 60-10 6-20 0t-10-18q0-14 10-20 116-64 258-64 130 0 258 64 18 10 8 28-8 12-18 12z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fingerprint"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 865,
+ "paths": [
+ "M164 404l240 242-120 120-242-240zM526 42l240 242-120 120-242-240zM224 344l120-120 604 604-120 120zM42 896h512v86h-512v-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "gavel"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 866,
+ "paths": [
+ "M634 558q92-64 92-174 0-88-63-151t-151-63-151 63-63 151q0 46 27 96t65 78l36 26v98h172v-98zM512 86q124 0 211 87t87 211q0 156-128 244v98q0 18-12 30t-30 12h-256q-18 0-30-12t-12-30v-98q-128-88-128-244 0-124 87-211t211-87zM384 896v-42h256v42q0 18-12 30t-30 12h-172q-18 0-30-12t-12-30z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "lightbulb_outline"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 867,
+ "paths": [
+ "M896 812v-600h-768v600h768zM982 810q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-598q0-34 26-59t60-25h768q34 0 60 25t26 59v598zM810 470v256h-340v-256h340z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "picture_in_picture_alt"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 868,
+ "paths": [
+ "M510 384h130l-106 76 40 124-104-78-106 78 40-124-106-76h130l42-128zM854 86q36 0 60 24t24 60v214h-84v-214h-768v512h554v86h-86v86h86v84h-342v-84h86v-86h-298q-36 0-61-25t-25-61v-512q0-36 25-60t61-24h768zM982 854v-300h-214v300h214zM982 470q18 0 30 12t12 30v384q0 18-12 30t-30 12h-214q-18 0-30-12t-12-30v-384q0-18 12-30t30-12h214z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "important_devices"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 869,
+ "paths": [
+ "M804 678q38 18 38 58v8l-32 226q-2 24-20 39t-42 15h-290q-26 0-44-18l-212-212 34-34q14-14 34-14 2 0 5 1t5 1l146 30v-458q0-28 19-46t45-18 45 18 19 46v256h34q6 0 22 4zM384 480q-86-56-86-160 0-80 56-136t136-56 136 56 56 136q0 106-84 160v-160q0-44-32-75t-76-31-75 31-31 75v160z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "touch_app"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 870,
+ "paths": [
+ "M548 768h88q-14 70-76 120t-134 50q-88 0-150-62t-62-150q0-72 50-134t120-76v88q-38 14-62 47t-24 75q0 52 38 90t90 38q42 0 75-24t47-62zM426 388q0-48 42-76t86-2h2v2q14 6 26 18l56 62q72 78 172 78v84q-112 0-212-82v146h128q34 0 59 26t25 60v234h-84v-212h-214q-34 0-60-26t-26-60v-252zM426 170q0-36 25-60t61-24 61 24 25 60-25 61-61 25-61-25-25-61z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "accessible"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 871,
+ "paths": [
+ "M640 554l-170-170 170-170v128h298v84h-298v128zM384 598v-128l170 170-170 170v-128h-298v-84h298z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "compare_arrows"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 872,
+ "paths": [
+ "M810 854v-470h-596v470h596zM810 170q34 0 60 26t26 60v598q0 34-26 59t-60 25h-596q-36 0-61-24t-25-60v-598q0-34 25-60t61-26h42v-84h86v84h340v-84h86v84h42zM726 470v84h-86v-84h86zM554 470v84h-84v-84h84zM384 470v84h-86v-84h86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "date_range"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 873,
+ "paths": [
+ "M554 808q96-14 169-86t87-168h128q-16 160-120 265t-264 119v-130zM810 470q-14-96-87-168t-169-86v-130q160 16 264 120t120 264h-128zM470 216q-100 16-178 102t-78 194 78 194 178 102v130q-162-16-273-138t-111-288 111-288 273-138v130z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "donut_large"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 874,
+ "paths": [
+ "M554 634q54-16 80-80h304q-16 154-121 262t-263 122v-304zM634 470q-24-64-80-80v-304q158 14 263 122t121 262h-304zM470 390q-34 14-60 48t-26 74 26 74 60 48v304q-162-16-273-138t-111-288 111-288 273-138v304z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "donut_small"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 875,
+ "paths": [
+ "M128 170h768v172h-768v-172zM554 512v-86h342v86h-342zM128 512v-86h342v86h-342zM810 854v-86h86v86h-86zM640 854v-86h86v86h-86zM470 854v-86h84v86h-84zM298 854v-86h86v86h-86zM128 854v-86h86v86h-86zM682 682v-84h214v84h-214zM406 682v-84h212v84h-212zM128 682v-84h214v84h-214z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "line_style"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 876,
+ "paths": [
+ "M128 170h768v172h-768v-172zM128 554v-128h768v128h-768zM128 854v-44h768v44h-768zM128 726v-86h768v86h-768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "line_weight"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 877,
+ "paths": [
+ "M746 726q44 0 75-32t31-76-31-75-75-31-76 31-32 75 32 76 76 32zM378 652l-122-2v-64h122q-24-74-102-74-44 0-75 31t-31 75 31 76 75 32q32 0 63-22t39-52zM746 426q80 0 136 56t56 136-56 136-136 56-136-56-56-136q0-4 1-10t1-10l-90 54q-12 66-67 112t-121 46q-80 0-136-56t-56-136 55-136 135-56h346l-84-84h-154v-86h188l172 172q0-2 2-2z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "motorcycle"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 878,
+ "paths": [
+ "M256 598h512q0-110-76-186l-180-188-180 186q-76 76-76 188zM754 342q100 100 100 240 0 142-100 242-42 42-113 71t-129 29-129-29-113-71q-100-100-100-242 0-58 29-128t71-112l242-242z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "opacity"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 879,
+ "paths": [
+ "M740 634l34 34t17 18 16 19 15 19 13 20 10 22 6 23 2 24-1 25q-22 84-100 100-14 2-97-8t-139-10h-8q-56 0-139 10t-97 8q-78-16-100-100-6-40 14-82t37-60 61-62q20-22 53-62t53-62q36-44 74-56 8-4 14-4 12-2 34-2 24 0 34 2 6 0 14 4 38 12 74 56 18 22 52 62t54 62zM726 406q0-44 31-76t75-32 75 32 31 76-31 75-75 31-75-31-31-75zM534 234q0-44 31-75t75-31 75 31 31 75-31 76-75 32-75-32-31-76zM278 234q0-44 31-75t75-31 75 31 31 75-31 76-75 32-75-32-31-76zM86 406q0-44 31-76t75-32 75 32 31 76-31 75-75 31-75-31-31-75z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pets"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 880,
+ "paths": [
+ "M682 554v172h-128v212h-128v-212h-84v-300q0-52 38-90t90-38 90 38 38 90q34 14 59 52t25 76zM384 170q0-36 25-60t61-24 60 24 24 60-24 61-60 25-61-25-25-61z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pregnant_woman"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 881,
+ "paths": [
+ "M856 86q124 130 124 301t-124 295l-70-68q88-102 88-233t-88-227zM716 228q64 70 64 158t-64 152l-72-72q28-38 28-83t-28-83zM384 640q108 0 225 47t117 123v86h-684v-86q0-76 117-123t225-47zM214 384q0-70 50-120t120-50 120 50 50 120-50 120-120 50-120-50-50-120z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "record_voice_over"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 882,
+ "paths": [
+ "M896 342v212h-86v-212q0-52-38-90t-90-38h-212v-86h212q88 0 151 63t63 151zM128 896v-86h86v86h-86zM298 896v-86h86v86h-86zM470 896v-86h84v86h-84zM298 214v-86h86v86h-86zM128 214v-86h86v86h-86zM128 384v-86h86v86h-86zM128 726v-86h86v86h-86zM128 554v-84h86v84h-86zM810 726v-86h86v86h-86zM810 810h86v86h-86v-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "rounded_corner"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 883,
+ "paths": [
+ "M896 896l-128 128-128-128v-64l-302-302q-14 2-40 2v-92q52 2 108-23t92-63l60-66q32-32 70-32h2q38 0 67 28t29 68v246q0 52-40 92l-152-152v-98q-40 34-98 60l268 268h64zM640 42q34 0 60 26t26 60-26 60-60 26-60-26-26-60 26-60 60-26zM362 618l108 108h-86l-150 148-64-64z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "rowing"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 884,
+ "paths": [
+ "M982 342q0 34-26 59t-60 25h-2q-14 0-20-2l-152 152q4 12 4 22 0 34-26 59t-60 25-60-25-26-59q0-10 4-22l-110-110q-12 4-22 4t-22-4l-194 194q4 12 4 22 0 34-26 60t-60 26-60-26-26-60 26-59 60-25q16 0 22 2l194-194q-2-6-2-22 0-34 25-60t59-26 60 26 26 60q0 16-2 22l108 108q6-2 22-2t22 2l152-150q-4-12-4-22 0-34 26-60t60-26 60 26 26 60z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "timeline"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 885,
+ "paths": [
+ "M534 342v180l148 90-30 52-182-110v-212h64zM896 432h-290l118-120q-88-88-211-89t-211 85q-36 36-62 97t-26 111 26 111 62 97 98 62 112 26 113-26 99-62q86-86 86-208h86q0 158-112 268-112 112-272 112t-272-112q-112-110-112-267t112-269q46-46 125-79t145-33 145 33 125 79l116-120v304z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "update"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 886,
+ "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
+ },
+ {
+ "id": 887,
+ "paths": [
+ "M982 234v620q0 70-51 120t-121 50h-310q-72 0-122-50l-336-342q54-52 56-52 14-12 34-12 14 0 26 6l184 104v-508q0-26 19-45t45-19 45 19 19 45v300h42v-406q0-28 18-46t46-18 46 18 18 46v406h42v-364q0-26 19-45t45-19 45 19 19 45v364h44v-236q0-26 19-45t45-19 45 19 19 45z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pan_tool"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 888,
+ "paths": [
+ "M640 790q102 0 180-68l76 76q-108 98-256 98-124 0-223-72t-139-184h-150v-86h130q-2-12-2-42t2-42h-130v-86h150q40-112 139-184t223-72q60 0 136 29t120 69l-76 76q-78-68-180-68-70 0-142 44t-104 106h246v86h-274q-4 28-4 42t4 42h274v86h-246q32 62 104 106t142 44z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "euro_symbol"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 889,
+ "paths": [
+ "M918 874v-596q0-18-13-31t-31-13h-386l56 162h62v-54h54v54h194v56h-82q-30 100-102 180l140 140-40 38-132-132 44 132-84 108h276q18 0 31-13t13-31zM562 452l34 100 36 48q62-68 88-148h-158zM298 682q92 0 149-58t57-150q0-2-6-44h-200v74h126q-4 38-36 70t-90 32q-56 0-95-40t-39-96q0-58 39-98t95-40q54 0 88 34l56-54q-62-56-144-56-88 0-150 63t-62 151 62 150 150 62zM896 170q34 0 60 26t26 60v640q0 34-26 60t-60 26h-384l-42-128h-342q-34 0-60-26t-26-60v-640q0-34 26-60t60-26h298l44 128h426z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "g_translate"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 890,
+ "paths": [
+ "M298 768q34 0 60 26t26 60-26 59-60 25-59-25-25-59 25-60 59-26zM664 554l-384-384h574q18 0 30 13t12 31q0 2-6 20l-152 276q-24 44-74 44zM316 640h216l-86-86h-100l-38 70-2 6q0 10 10 10zM970 970l-54 54-122-122q-26 36-68 36-34 0-60-25t-26-59q0-44 36-70l-60-58h-318q-34 0-59-26t-25-60q0-20 10-40l58-106-94-198-188-188 54-54z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "remove_shopping_cart"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 891,
+ "paths": [
+ "M512 768q88 0 151-63t63-151-63-150-151-62q-116 0-180 98l-54-56v170h170l-68-68q16-32 55-56t77-24q62 0 106 43t44 105-44 106-106 44q-78 0-122-64h-74q24 58 77 93t119 35zM598 86l256 256v512q0 34-26 59t-60 25h-512q-34 0-60-25t-26-59l2-684q0-34 25-59t59-25h342z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "restore_page"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 892,
+ "paths": [
+ "M854 86q34 0 59 25t25 59v512q0 34-24 59t-58 27l-298-298h210v-86h-296l-42-42h338v-86h-342v82l-252-252h680zM256 470h86l-86-86v86zM342 598v-86h-86v86h86zM54 74l884 884-54 54-244-244h-384l-170 170v-724l-86-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "speaker_notes_off"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 893,
+ "paths": [
+ "M662 170h148v86h-596v-86h148l44-42h212zM360 506l92 92-90 90 60 60 90-90 90 90 60-60-90-90 90-92-60-60-90 92-90-92zM256 810v-512h512v512q0 34-26 60t-60 26h-340q-34 0-60-26t-26-60z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "delete_forever"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 894,
+ "paths": [
+ "M512 256q-34 0-60-26t-26-60 26-59 60-25 60 25 26 59-26 60-60 26zM874 256l22 86q-100 28-256 42v554h-86v-256h-84v256h-86v-554q-156-14-256-42l22-86q156 42 362 42t362-42z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "accessibility_new"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 895,
+ "paths": [
+ "M512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125zM708 324l60 60-342 342-212-214 60-60 152 152z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "check_circle_outline"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 896,
+ "paths": [
+ "M662 170h148v86h-596v-86h148l44-42h212zM342 384v426h340v-426h-340zM256 810v-512h512v512q0 34-26 60t-60 26h-340q-34 0-60-26t-26-60z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "delete_outline"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 897,
+ "paths": [
+ "M844 94l180 180-664 664-360-360 180-180 180 180zM844 214l-484 484-180-178-60 58 240 240 544-544z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "done_outline"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 898,
+ "paths": [
+ "M128 128h768v86h-768v-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "maximize"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 899,
+ "paths": [
+ "M256 810h512v86h-512v-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "minimize"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 900,
+ "paths": [
+ "M490 854l208-416h-144v-268l-212 416h148v268zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "offline_bolt"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 901,
+ "paths": [
+ "M384 746v-106h170v-86h-170v-106l-150 150zM640 278v106h-170v86h170v106l150-150zM938 512q0 176-125 301t-301 125-301-125-125-301 125-301 301-125 301 125 125 301z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "swap_horizontal_circle"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 902,
+ "paths": [
+ "M726 576q34 0 59 26t25 60v234h-84v-214h-214q-46 0-72-41t-6-83l78-174h-94l-28 66-82-24 28-76q22-52 80-52h222q48 0 74 40t6 82l-72 156h80zM598 726q0 88-63 150t-151 62-151-62-63-150 63-151 151-63v86q-52 0-90 38t-38 90 38 90 90 38 90-38 38-90h86zM640 194q0-36 25-61t61-25 60 25 24 61-24 61-60 25-61-25-25-61z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "accessible_forward"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 903,
+ "paths": [
+ "M854 896v-554h-684v554h684zM854 128q34 0 59 26t25 60v682q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-682q0-34 25-60t59-26h44v-86h84v86h428v-86h84v86h44z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "calendar_today"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 904,
+ "paths": [
+ "M128 256h768v86h-768v-86zM128 426h768v214h-768v-214zM128 726h768v84h-768v-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "calendar_view_day"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 905,
+ "paths": [
+ "M150 810l206-298-206-298h468q44 0 70 36l186 262-186 262q-26 36-70 36h-468z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "label_important"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 906,
+ "paths": [
+ "M598 598h84l-170-172-170 172h84v170h172v-170zM256 298h512v512q0 34-26 60t-60 26h-340q-34 0-60-26t-26-60v-512zM810 170v86h-596v-86h148l44-42h212l44 42h148z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "restore_from_trash"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 907,
+ "paths": [
+ "M512 854q106 0 193-61t125-157q-60-48-164-48-58 0-123 25t-65 65v174q12 2 34 2zM410 678q0-70 80-114-50-10-80-10-54 0-122 19t-98 53q28 76 86 132t134 80v-160zM410 288q-42 0-72 30t-30 72 30 71 72 29 71-29 29-71-29-72-71-30zM666 356q-34 0-58 24t-24 58 24 58 58 24 58-24 24-58-24-58-58-24zM512 86q176 0 301 125t125 301-125 301-301 125q-178 0-303-125t-125-301 125-301 303-125z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "supervised_user_circle"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 908,
+ "paths": [
+ "M768 182l128 128h-86v532h-84v-532h-86zM426 624v-160l-214 80zM128 512l470-202v88l-94 40v212l94 40v88l-470-202v-64z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "text_rotate_up"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 909,
+ "paths": [
+ "M256 842l-128-128h86v-532h84v532h86zM560 512h160l-80-214zM672 214l202 468h-88l-40-94h-212l-40 94h-88l202-468h64z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "text_rotate_vertical"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 910,
+ "paths": [
+ "M608 896h-180l60-60-378-378 62-60 376 378 60-60v180zM538 342l112 112 94-208zM828 210l-190 474-62-62 38-94-150-152-94 40-62-64 474-188z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "text_rotation_angledown"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 911,
+ "paths": [
+ "M878 398v180l-60-60-378 378-60-60 376-378-60-60h182zM324 470l112-112-208-96zM192 180l474 188-62 64-94-40-152 152 40 92-64 64-188-476z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "text_rotation_angleup"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 912,
+ "paths": [
+ "M256 842l-128-128h86v-532h84v532h86zM598 400v160l214-80zM896 512l-470 202v-88l94-40v-212l-94-40v-88l470 202v64z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "text_rotation_down"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 913,
+ "paths": [
+ "M874 768l-128 128v-86h-532v-84h532v-86zM432 426h160l-80-214zM544 128l202 470h-88l-40-94h-212l-40 94h-88l202-470h64z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "text_rotation_none"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 914,
+ "paths": [
+ "M854 682q18 0 30-12t12-30-12-30-30-12-31 12-13 30 13 30 31 12zM512 682q18 0 30-12t12-30-12-30-30-12-30 12-12 30 12 30 30 12zM530 426l-44 128h394l-44-128h-306zM878 412l60 176v234q0 12-9 22t-21 10h-26q-12 0-20-11t-8-23v-52h-342v52q0 12-9 23t-21 11h-26q-12 0-20-10t-8-22l-2-234 62-176q10-28 42-28h306q32 0 42 28zM214 598q-18 0-31 12t-13 30 13 30 31 12 30-12 12-30-12-30-30-12zM512 170q52 0 90 38t38 90v44h-86v-86h-384v298h214v214l-86-2-84 88h-44v-44l44-42q-52 0-90-38t-38-90v-342q0-52 38-90t90-38h298z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "commute"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 915,
+ "paths": [
+ "M684 470v-128l170 170-170 170v-128h-514v-84h514z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow_right_alt"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 916,
+ "paths": [
+ "M600 256v-88h-174v88h174zM938 340v440l-594-598v-14q0-36 24-60t60-22h172q36-2 60 22t24 60v88h172q36-2 60 23t22 61zM982 928l-54 54-88-88h-668q-36 0-60-25t-24-61v-468q0-36 24-61t60-25h28l-116-116 54-54z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "work_off"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 917,
+ "paths": [
+ "M854 256q36 0 60 25t24 61v468q0 36-24 61t-60 25h-684q-36 0-60-25t-24-61v-468q0-36 24-61t60-25h172v-86q0-36 24-60t60-24h172q36 0 60 24t24 60v86h172zM170 342v468h684v-468h-684zM598 256v-86h-172v86h172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "work_outline"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 918,
+ "paths": [
+ "M640 682q34 0 60 26t26 60-26 60-60 26-60-26-26-60 26-60 60-26zM640 426q34 0 60 26t26 60-26 60-60 26-60-26-26-60 26-60 60-26zM640 342q-34 0-60-26t-26-60 26-60 60-26 60 26 26 60-26 60-60 26zM384 170q34 0 60 26t26 60-26 60-60 26-60-26-26-60 26-60 60-26zM384 426q34 0 60 26t26 60-26 60-60 26-60-26-26-60 26-60 60-26zM470 768q0 34-26 60t-60 26-60-26-26-60 26-60 60-26 60 26 26 60z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "drag_indicator"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 919,
+ "paths": [
+ "M128 214h768v84h-768v-84zM128 470v-86h768v86h-768zM128 810v-256h768v256h-768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "horizontal_split"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 920,
+ "paths": [
+ "M278 726h362l150-214-150-214h-362l148 214zM640 810h-512l192-298-192-298h512q44 0 70 36l186 262-186 262q-26 36-70 36z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "label_important_outline"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 921,
+ "paths": [
+ "M554 214h342v596h-342v-596zM128 214h342v84h-342v-84zM128 470v-86h342v86h-342zM128 810v-84h342v84h-342zM128 640v-86h342v86h-342z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "vertical_split"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 922,
+ "paths": [
+ "M856 86q124 130 124 301t-124 295l-70-68q88-102 88-233t-88-227zM716 228q64 70 64 158t-64 152l-72-72q28-38 28-83t-28-83zM182 128l714 714-54 54-126-126q4 10 7 20t3 20v86h-684v-86q0-76 117-123t225-47q22 0 49 3t58 9 60 14 57 20 50 26l-184-184q-42 26-90 26-70 0-120-50t-50-120q0-48 26-90l-112-112zM554 392l-178-178h8q70 0 120 50t50 120v8z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "voice_over_off"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 923,
+ "paths": [
+ "M384 554v-84h512v84h-512zM128 256h768v86h-768v-86zM384 768v-86h512v86h-512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "segment"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 924,
+ "paths": [
+ "M534 554q0-46 64-102t64-110q0-70-51-121t-121-51-120 51-50 121h86q0-34 25-60t59-26 60 26 26 60q0 28-20 50t-44 36-44 47-20 79h86zM534 704v-86h-86v86h86zM490 86q150 0 257 106t107 256q0 146-94 281t-248 209v-128h-22q-150 0-256-106t-106-256 106-256 256-106z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "contact_support"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 925,
+ "paths": [
+ "M170 512h684v86h-684v-86zM170 384h684v86h-684v-86zM682 170l-170 172-170-172h128v-128h84v128h128zM342 810l170-170 170 170h-128v128h-84v-128h-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "compress"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 926,
+ "paths": [
+ "M182 242q-12-14-12-28 0-18 13-31t31-13h596q18 0 31 13t13 31q2 12-10 26l-246 314v256q0 18-12 31t-30 13h-86q-18 0-31-13t-13-31v-256q-240-306-244-312z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "filter_list_alt"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 927,
+ "paths": [
+ "M554 384v256h128l-170 170-170-170h128v-256h-128l170-170 170 170h-128zM170 86h684v84h-684v-84zM170 854h684v84h-684v-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "expand"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 928,
+ "paths": [
+ "M86 214l84-86 684 682-86 86-240-240-240 240h-160v-160l240-240zM884 240q12 12 12 30 0 16-12 28l-78 80-160-160 78-78q12-12 30-12t30 12zM518 346l82-82 160 160-82 82z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "edit_off"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 929,
+ "paths": [
+ "M832 640l-96-128 96-128h-74l-76 96v-96h-64v256h64v-96l76 96h74zM554 598v-172q0-18-12-30t-30-12h-106q-18 0-31 12t-13 30v172q0 18 13 30t31 12h106q18 0 30-12t12-30zM320 640v-256h-128v64h64v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596zM426 448h64v128h-64v-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "10k"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 930,
+ "paths": [
+ "M662 598h64v64h-64v-64zM704 448v-170q0-18-12-31t-30-13h-108q-18 0-30 13t-12 31v170q0 18 12 30t30 12h108q18 0 30-12t12-30zM426 234h-128v64h64v192h64v-256zM662 790v-64h84q18 0 31-13t13-31v-106q0-18-13-30t-31-12h-148v256h64zM512 790v-214q0-18-12-30t-30-12h-192q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596zM576 298h64v128h-64v-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "10mp"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 931,
+ "paths": [
+ "M662 598h64v64h-64v-64zM682 234h-128v64h64v192h64v-256zM470 234h-128v64h64v192h64v-256zM662 790v-64h84q18 0 31-13t13-31v-106q0-18-13-30t-31-12h-148v256h64zM512 790v-214q0-18-12-30t-30-12h-192q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "11mp"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 932,
+ "paths": [
+ "M662 598h64v64h-64v-64zM662 384q18 0 30-12t12-30v-64q0-18-12-31t-30-13h-150v64h128v44h-86q-18 0-30 12t-12 30v106h192v-64h-128v-42h86zM426 234h-128v64h64v192h64v-256zM662 790v-64h84q18 0 31-13t13-31v-106q0-18-13-30t-31-12h-148v256h64zM512 790v-214q0-18-12-30t-30-12h-192q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "12mp"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 933,
+ "paths": [
+ "M662 598h64v64h-64v-64zM704 448v-170q0-18-12-31t-30-13h-150v64h128v44h-86v42h86v42h-128v64h150q18 0 30-12t12-30zM426 234h-128v64h64v192h64v-256zM662 790v-64h84q18 0 31-13t13-31v-106q0-18-13-30t-31-12h-148v256h64zM512 790v-214q0-18-12-30t-30-12h-192q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "13mp"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 934,
+ "paths": [
+ "M662 598h64v64h-64v-64zM746 426v-64h-42v-128h-64v128h-64v-128h-64v192h128v64h64v-64h42zM426 234h-128v64h64v192h64v-256zM662 790v-64h84q18 0 31-13t13-31v-106q0-18-13-30t-31-12h-148v256h64zM512 790v-214q0-18-12-30t-30-12h-192q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "14mp"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 935,
+ "paths": [
+ "M662 598h64v64h-64v-64zM704 298v-64h-192v150h128v42h-128v64h150q18 0 30-12t12-30v-64q0-18-12-30t-30-12h-86v-44h128zM426 234h-128v64h64v192h64v-256zM662 790v-64h84q18 0 31-13t13-31v-106q0-18-13-30t-31-12h-148v256h64zM512 790v-214q0-18-12-30t-30-12h-192q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "15mp"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 936,
+ "paths": [
+ "M662 598h64v64h-64v-64zM554 490h108q18 0 30-12t12-30v-64q0-18-12-30t-30-12h-86v-44h128v-64h-150q-18 0-30 13t-12 31v170q0 18 12 30t30 12zM426 234h-128v64h64v192h64v-256zM662 790v-64h84q18 0 31-13t13-31v-106q0-18-13-30t-31-12h-148v256h64zM512 790v-214q0-18-12-30t-30-12h-192q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596zM576 384h64v64h-64v-64z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "16mp"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 937,
+ "paths": [
+ "M662 598h64v64h-64v-64zM640 490l62-200q6-22-6-39t-34-17h-150v64h112l-58 192h74zM426 234h-128v64h64v192h64v-256zM662 790v-64h84q18 0 31-13t13-31v-106q0-18-13-30t-31-12h-148v256h64zM512 790v-214q0-18-12-30t-30-12h-192q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "17mp"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 938,
+ "paths": [
+ "M662 598h64v64h-64v-64zM576 342v-64h64v64h-64zM576 448v-64h64v64h-64zM704 448v-170q0-18-12-31t-30-13h-108q-18 0-30 13t-12 31v170q0 18 12 30t30 12h108q18 0 30-12t12-30zM426 234h-128v64h64v192h64v-256zM662 790v-64h84q18 0 31-13t13-31v-106q0-18-13-30t-31-12h-148v256h64zM512 790v-214q0-18-12-30t-30-12h-192q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "18mp"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 939,
+ "paths": [
+ "M662 598h64v64h-64v-64zM790 682v-106q0-18-13-30t-31-12h-148v256h64v-64h84q18 0 31-13t13-31zM512 790v-214q0-18-12-30t-30-12h-192q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64zM298 234v64h64v192h64v-256h-128zM576 342v-64h64v64h-64zM512 426v64h150q18 0 30-12t12-30v-170q0-18-12-31t-30-13h-108q-18 0-30 13t-12 31v64q0 18 12 30t30 12h86v42h-128zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "19mp"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 940,
+ "paths": [
+ "M746 640l-96-128 96-128h-74l-74 96v-96h-64v256h64v-96l74 96h74zM448 640v-256h-128v64h64v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "1k"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 941,
+ "paths": [
+ "M832 534v-44h-64v-64h-42v64h-64v44h64v64h42v-64h64zM586 640h76l-96-128 96-128h-76l-74 96v-96h-64v256h64v-96zM384 640v-256h-128v64h64v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "1k_plus"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 942,
+ "paths": [
+ "M662 598h64v64h-64v-64zM426 384q18 0 31-12t13-30v-64q0-18-13-31t-31-13h-148v64h128v44h-86q-18 0-30 12t-12 30v106h192v-64h-128v-42h84zM746 448v-170q0-18-12-31t-30-13h-106q-18 0-31 13t-13 31v170q0 18 13 30t31 12h106q18 0 30-12t12-30zM662 790v-64h84q18 0 31-13t13-31v-106q0-18-13-30t-31-12h-148v256h64zM512 790v-214q0-18-12-30t-30-12h-192q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596zM618 298h64v128h-64v-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "20mp"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 943,
+ "paths": [
+ "M662 598h64v64h-64v-64zM598 234v64h64v192h64v-256h-128zM470 384q18 0 30-12t12-30v-64q0-18-12-31t-30-13h-150v64h128v44h-86q-18 0-30 12t-12 30v106h192v-64h-128v-42h86zM662 790v-64h84q18 0 31-13t13-31v-106q0-18-13-30t-31-12h-148v256h64zM512 790v-214q0-18-12-30t-30-12h-192q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "21mp"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 944,
+ "paths": [
+ "M662 598h64v64h-64v-64zM704 384q18 0 30-12t12-30v-64q0-18-12-31t-30-13h-150v64h128v44h-84q-18 0-31 12t-13 30v106h192v-64h-128v-42h86zM426 384q18 0 31-12t13-30v-64q0-18-13-31t-31-13h-148v64h128v44h-86q-18 0-30 12t-12 30v106h192v-64h-128v-42h84zM662 790v-64h84q18 0 31-13t13-31v-106q0-18-13-30t-31-12h-148v256h64zM512 790v-214q0-18-12-30t-30-12h-192q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "22mp"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 945,
+ "paths": [
+ "M662 598h64v64h-64v-64zM746 448v-170q0-18-12-31t-30-13h-150v64h128v44h-84v42h84v42h-128v64h150q18 0 30-12t12-30zM426 384q18 0 31-12t13-30v-64q0-18-13-31t-31-13h-148v64h128v44h-86q-18 0-30 12t-12 30v106h192v-64h-128v-42h84zM662 790v-64h84q18 0 31-13t13-31v-106q0-18-13-30t-31-12h-148v256h64zM512 790v-214q0-18-12-30t-30-12h-192q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "23mp"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 946,
+ "paths": [
+ "M662 598h64v64h-64v-64zM790 426v-64h-44v-128h-64v128h-64v-128h-64v192h128v64h64v-64h44zM426 384q18 0 31-12t13-30v-64q0-18-13-31t-31-13h-148v64h128v44h-86q-18 0-30 12t-12 30v106h192v-64h-128v-42h84zM662 790v-64h84q18 0 31-13t13-31v-106q0-18-13-30t-31-12h-148v256h64zM512 790v-214q0-18-12-30t-30-12h-192q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "24mp"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 947,
+ "paths": [
+ "M768 640l-96-128 96-128h-74l-76 96v-96h-64v256h64v-96l76 96h74zM426 534q18 0 31-13t13-31v-64q0-18-13-30t-31-12h-148v64h128v42h-86q-18 0-30 13t-12 31v106h192v-64h-128v-42h84zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "2k"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 948,
+ "paths": [
+ "M854 534v-44h-64v-64h-44v64h-64v44h64v64h44v-64h64zM608 640h74l-96-128 96-128h-74l-74 96v-96h-64v256h64v-96zM406 490v-64q0-18-13-30t-31-12h-148v64h128v42h-86q-18 0-30 13t-12 31v106h192v-64h-128v-42h84q18 0 31-13t13-31zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "2k_plus"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 949,
+ "paths": [
+ "M662 598h64v64h-64v-64zM576 384q18 0 30-12t12-30v-64q0-18-12-31t-30-13h-150v64h128v44h-84q-18 0-31 12t-13 30v106h192v-64h-128v-42h86zM662 790v-64h84q18 0 31-13t13-31v-106q0-18-13-30t-31-12h-148v256h64zM512 790v-214q0-18-12-30t-30-12h-192q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "2mp"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 950,
+ "paths": [
+ "M768 640l-96-128 96-128h-74l-76 96v-96h-64v256h64v-96l76 96h74zM470 598v-172q0-18-13-30t-31-12h-148v64h128v42h-86v44h86v42h-128v64h148q18 0 31-12t13-30zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "3k"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 951,
+ "paths": [
+ "M854 534v-44h-64v-64h-44v64h-64v44h64v64h44v-64h64zM682 640l-96-128 96-128h-74l-74 96v-96h-64v256h64v-96l74 96h74zM406 598v-172q0-18-13-30t-31-12h-148v64h128v42h-86v44h86v42h-128v64h148q18 0 31-12t13-30zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "3k_plus"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 952,
+ "paths": [
+ "M662 598h64v64h-64v-64zM618 448v-170q0-18-12-31t-30-13h-150v64h128v44h-84v42h84v42h-128v64h150q18 0 30-12t12-30zM662 790v-64h84q18 0 31-13t13-31v-106q0-18-13-30t-31-12h-148v256h64zM512 790v-214q0-18-12-30t-30-12h-192q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "3mp"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 953,
+ "paths": [
+ "M854 534v-44h-64v-64h-44v64h-64v44h64v64h44v-64h64zM682 640l-96-128 96-128h-74l-74 96v-96h-64v256h64v-96l74 96h74zM448 576v-64h-42v-128h-64v128h-64v-128h-64v192h128v64h64v-64h42zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "4k_plus"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 954,
+ "paths": [
+ "M662 598h64v64h-64v-64zM662 790v-64h84q18 0 31-13t13-31v-106q0-18-13-30t-31-12h-148v256h64zM640 426v-64h-42v-128h-64v128h-64v-128h-64v192h128v64h64v-64h42zM512 790v-214q0-18-12-30t-30-12h-192q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "4mp"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 955,
+ "paths": [
+ "M768 640l-96-128 96-128h-74l-76 96v-96h-64v256h64v-96l76 96h74zM470 448v-64h-192v150h128v42h-128v64h148q18 0 31-12t13-30v-64q0-18-13-31t-31-13h-84v-42h128zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "5k"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 956,
+ "paths": [
+ "M854 534v-44h-64v-64h-44v64h-64v44h64v64h44v-64h64zM682 640l-96-128 96-128h-74l-74 96v-96h-64v256h64v-96l74 96h74zM406 448v-64h-192v150h128v42h-128v64h148q18 0 31-12t13-30v-64q0-18-13-31t-31-13h-84v-42h128zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "5k_plus"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 957,
+ "paths": [
+ "M662 598h64v64h-64v-64zM618 298v-64h-192v150h128v42h-128v64h150q18 0 30-12t12-30v-64q0-18-12-30t-30-12h-86v-44h128zM662 790v-64h84q18 0 31-13t13-31v-106q0-18-13-30t-31-12h-148v256h64zM512 790v-214q0-18-12-30t-30-12h-192q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "5mp"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 958,
+ "paths": [
+ "M768 640l-96-128 96-128h-74l-76 96v-96h-64v256h64v-96l76 96h74zM470 448v-64h-150q-18 0-30 12t-12 30v172q0 18 12 30t30 12h106q18 0 31-12t13-30v-64q0-18-13-31t-31-13h-84v-42h128zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596zM342 534h64v64h-64v-64z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "6k"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 959,
+ "paths": [
+ "M854 534v-44h-64v-64h-44v64h-64v44h64v64h44v-64h64zM682 640l-96-128 96-128h-74l-74 96v-96h-64v256h64v-96l74 96h74zM406 448v-64h-150q-18 0-30 12t-12 30v172q0 18 12 30t30 12h106q18 0 31-12t13-30v-64q0-18-13-31t-31-13h-84v-42h128zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596zM278 534h64v64h-64v-64z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "6k_plus"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 960,
+ "paths": [
+ "M662 598h64v64h-64v-64zM662 790v-64h84q18 0 31-13t13-31v-106q0-18-13-30t-31-12h-148v256h64zM470 490h106q18 0 30-12t12-30v-64q0-18-12-30t-30-12h-86v-44h128v-64h-148q-18 0-31 13t-13 31v170q0 18 13 30t31 12zM512 790v-214q0-18-12-30t-30-12h-192q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596zM490 384h64v64h-64v-64z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "6mp"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 961,
+ "paths": [
+ "M768 640l-96-128 96-128h-74l-76 96v-96h-64v256h64v-96l76 96h74zM406 640l62-200q6-20-7-38t-35-18h-148v64h112l-60 192h76zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "7k"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 962,
+ "paths": [
+ "M854 534v-44h-64v-64h-44v64h-64v44h64v64h44v-64h64zM682 640l-96-128 96-128h-74l-74 96v-96h-64v256h64v-96l74 96h74zM342 640l62-200q6-20-7-38t-35-18h-148v64h112l-60 192h76zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "7k_plus"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 963,
+ "paths": [
+ "M662 598h64v64h-64v-64zM554 490l62-200q6-22-7-39t-33-17h-150v64h112l-58 192h74zM662 790v-64h84q18 0 31-13t13-31v-106q0-18-13-30t-31-12h-148v256h64zM512 790v-214q0-18-12-30t-30-12h-192q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "7mp"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 964,
+ "paths": [
+ "M768 640l-96-128 96-128h-74l-76 96v-96h-64v256h64v-96l76 96h74zM470 598v-172q0-18-13-30t-31-12h-106q-18 0-30 12t-12 30v172q0 18 12 30t30 12h106q18 0 31-12t13-30zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596zM342 426h64v64h-64v-64zM342 534h64v64h-64v-64z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "8k"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 965,
+ "paths": [
+ "M854 534v-44h-64v-64h-44v64h-64v44h64v64h44v-64h64zM682 640l-96-128 96-128h-74l-74 96v-96h-64v256h64v-96l74 96h74zM406 598v-172q0-18-13-30t-31-12h-106q-18 0-30 12t-12 30v172q0 18 12 30t30 12h106q18 0 31-12t13-30zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596zM278 426h64v64h-64v-64zM278 534h64v64h-64v-64z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "8k_plus"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 966,
+ "paths": [
+ "M662 598h64v64h-64v-64zM618 448v-170q0-18-12-31t-30-13h-106q-18 0-31 13t-13 31v170q0 18 13 30t31 12h106q18 0 30-12t12-30zM662 790v-64h84q18 0 31-13t13-31v-106q0-18-13-30t-31-12h-148v256h64zM512 790v-214q0-18-12-30t-30-12h-192q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596zM490 278h64v64h-64v-64zM490 384h64v64h-64v-64z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "8mp"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 967,
+ "paths": [
+ "M768 640l-96-128 96-128h-74l-76 96v-96h-64v256h64v-96l76 96h74zM470 598v-172q0-18-13-30t-31-12h-106q-18 0-30 12t-12 30v64q0 18 12 31t30 13h86v42h-128v64h148q18 0 31-12t13-30zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596zM342 426h64v64h-64v-64z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "9k"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 968,
+ "paths": [
+ "M854 534v-44h-64v-64h-44v64h-64v44h64v64h44v-64h64zM682 640l-96-128 96-128h-74l-74 96v-96h-64v256h64v-96l74 96h74zM406 598v-172q0-18-13-30t-31-12h-106q-18 0-30 12t-12 30v64q0 18 12 31t30 13h86v42h-128v64h148q18 0 31-12t13-30zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596zM278 426h64v64h-64v-64z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "9k_plus"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 969,
+ "paths": [
+ "M662 598h64v64h-64v-64zM618 448v-170q0-18-12-31t-30-13h-106q-18 0-31 13t-13 31v64q0 18 13 30t31 12h84v42h-128v64h150q18 0 30-12t12-30zM662 790v-64h84q18 0 31-13t13-31v-106q0-18-13-30t-31-12h-148v256h64zM512 790v-214q0-18-12-30t-30-12h-192q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596zM490 278h64v64h-64v-64z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "9mp"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 970,
+ "paths": [
+ "M938 470h-298v-128h-86v340h86v-128h298v342h-298v-128h-170v-426h-86v128h-298v-342h298v128h256v-128h298v342z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "account_tree"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 971,
+ "paths": [
+ "M768 810v-212h86v212q0 34-26 60t-60 26h-598q-34 0-59-26t-25-60v-596q0-34 25-60t59-26h512v86h-512v596h598zM854 298h128v86h-128v128h-86v-128h-128v-86h128v-128h86v128zM426 298h86v426h-86v-426zM598 554h84v170h-84v-170zM256 426h86v298h-86v-298z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "add_chart"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 972,
+ "paths": [
+ "M896 256v86h-128v128h-86v-128h-128v-86h128v-128h86v128h128zM854 662q18 0 30 12t12 30v150q0 18-12 30t-30 12q-300 0-513-213t-213-513q0-18 12-30t30-12h150q18 0 30 12t12 30v2q0 82 24 150 4 8 4 14 0 20-14 30l-94 94q40 76 123 159t159 123l94-94q14-14 30-14 6 0 14 4 72 24 152 24z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "add_ic_call"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 973,
+ "paths": [
+ "M810 854v126h-84v-126h-128v-86h128v-128h84v128h128v86h-128zM564 964q-4 2-23 9t-29 9q-164-40-274-187t-110-325v-256l384-172 384 172v256q0 54-12 112-52-28-116-28-106 0-181 75t-75 181q0 86 52 154z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "add_moderator"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 974,
+ "paths": [
+ "M640 682h256v128q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-128h256q0 52 38 90t90 38 90-38 38-90zM810 384v-170h-596v170h170q0 52 38 90t90 38 90-38 38-90h170zM810 128q34 0 60 26t26 60v298q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-298q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "all_inbox"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 975,
+ "paths": [
+ "M512 470l128-172q0-52-38-90t-90-38-90 38-38 90zM512 86q88 0 151 62t63 150l-214 300h256q34 0 60 25t26 59v256h-684v-256q0-34 26-59t60-25h256l-214-300q0-88 63-150t151-62zM768 768v-86h-512v86h512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "approval"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 976,
+ "paths": [
+ "M842 536q28-28 0-48l-306-308q-26-20-50 0l-306 308q-10 16-10 24t10 24l306 308q26 20 50 0zM512 42q196 0 333 137t137 333-137 333-333 137-333-137-137-333 137-333 333-137zM598 426v-106l148 150-148 148v-106h-172v128h-84v-170q0-44 42-44h214z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "assistant_direction"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 977,
+ "paths": [
+ "M664 726l16-16-168-412-168 412 16 16 152-68zM512 42q194 0 332 138t138 332-138 332-332 138-332-138-138-332 138-332 332-138z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "assistant_navigation"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 978,
+ "paths": [
+ "M640 214q34 0 60 25t26 59v684l-300-128-298 128v-684q0-34 26-59t60-25h426zM810 768v-554q0-34-25-60t-59-26h-428q0-34 26-60t60-26h426q34 0 60 26t26 60v682z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bookmarks"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 979,
+ "paths": [
+ "M640 426h86v86h-86v-86zM640 170h86v214h-86v-214zM682 554q88 0 151-62t63-150-63-151-151-63-150 63-62 151 62 150 150 62zM576 810q28 0 46-19t18-45-18-45-46-19-46 19-18 45 18 45 46 19zM128 554h346q-90-86-90-212h-256v212zM192 810q28 0 46-19t18-45-18-45-46-19-46 19-18 45 18 45 46 19zM682 42q124 2 211 90t87 210q0 106-74 192t-180 102v132q0 54-44 94v76q0 18-12 31t-30 13h-42q-18 0-31-13t-13-31v-42h-340v42q0 18-13 31t-31 13h-42q-18 0-30-13t-12-31v-76q-44-40-44-94v-426q0-102 88-137t254-35q8 0 26 1t26 1q38-54 109-92t137-38z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bus_alert"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 980,
+ "paths": [
+ "M170 384v470h684q0 36-25 60t-61 24h-598q-36 0-60-24t-24-60v-470h84zM682 256v-42q0-16-14-30t-28-14h-128q-16 0-29 13t-13 31v42h212zM384 256v-86l86-84h212l86 84v86h170v470q0 34-25 59t-59 25h-556q-34 0-59-25t-25-59v-470h170z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cases"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 981,
+ "paths": [
+ "M726 682v-42l-44-42v-112q0-70-33-122t-95-66v-20q0-18-12-31t-30-13-30 13-12 31v20q-62 14-95 66t-33 122v112l-44 42v42h428zM512 790q28 0 46-19t18-45h-128q0 26 18 45t46 19zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "circle_notifications"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 982,
+ "paths": [
+ "M768 470h-64v-22h-86v128h86v-22h64v44q0 18-12 30t-30 12h-128q-18 0-31-12t-13-30v-172q0-18 13-30t31-12h128q18 0 30 12t12 30v44zM470 470h-64v-22h-86v128h86v-22h64v44q0 18-13 30t-31 12h-128q-18 0-30-12t-12-30v-172q0-18 12-30t30-12h128q18 0 31 12t13 30v44zM810 170q34 0 60 26t26 60v512q0 34-26 60t-60 26h-596q-36 0-61-25t-25-61v-512q0-36 25-61t61-25h596zM832 234h-640v556h640v-556z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "closed_caption_off"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 983,
+ "paths": [
+ "M170 342q142 0 242 100t100 240h-62q0-116-82-197t-198-81v-62zM170 470q88 0 151 62t63 150h-62q0-62-45-107t-107-45v-60zM170 598q36 0 61 24t25 60h-86v-84zM896 726v-512h-768v512h768zM896 128q34 0 60 26t26 60l-2 512q0 34-25 59t-59 25h-214v86h-340v-86h-214q-34 0-60-25t-26-59v-512q0-34 26-60t60-26h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "connected_tv"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 984,
+ "paths": [
+ "M726 672l-160-160 160-160-54-54-160 160-160-160-54 54 160 160-160 160 54 54 160-160 160 160zM672 128l224 224v320l-224 224h-320l-224-224v-320l224-224h320z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "dangerous"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 985,
+ "paths": [
+ "M768 554v128h128v86h-128v128h-86v-128h-128v-86h128v-128h86zM128 554h342v342h-342v-342zM554 128h342v342h-342v-342zM128 128h342v342h-342v-342z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "dashboard_customize"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 986,
+ "paths": [
+ "M128 682h422l-422-422v422zM636 768h-38v86h84v84h-340v-84h84v-86h-298q-34 0-60-26t-26-60v-508l-42-42 52-56q48 48 304 302t390 390l202 200-56 56zM982 682q0 34-26 60t-60 26h-42l-86-86h128v-512h-640l-86-84h726q34 0 60 25t26 59v512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "desktop_access_disabled"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 987,
+ "paths": [
+ "M512 384l170 172-170 170-62-60 68-68h-176v-86h176l-66-68zM854 768v-426h-684v426h684zM854 256q34 0 59 26t25 60v426q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-512q0-34 25-60t59-26h256l86 86h342z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "drive_file_move_outline"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 988,
+ "paths": [
+ "M470 854l170-172h256v172h-426zM264 768l370-370-52-52-368 370v52h50zM786 248q26 26 26 60t-26 60l-486 486h-172v-174q480-478 486-484 26-26 60-26t60 26z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "drive_file_rename_outline"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 989,
+ "paths": [
+ "M342 556l170-172 170 172-60 60-68-68v178h-84v-178l-68 68zM854 768v-426h-684v426h684zM854 256q34 0 59 26t25 60v426q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-512q0-34 25-60t59-26h256l86 86h342z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "drive_folder_upload"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 990,
+ "paths": [
+ "M726 640v-256l-128 86v-86h-300v256h300v-86zM854 86q34 0 59 25t25 59v342q0 180-128 303t-310 123q-168 0-291-124t-123-290q0-182 124-310t302-128h342z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "duo"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 991,
+ "paths": [
+ "M938 512q0 28-2 40v12q0 10-4 26 0 6-4 14l-6 24q-2 2-2 7t-2 7q-2 6-6 17t-6 15q-4 12-14 32l-7 14t-9 14q-2 2-7 10t-7 10l-222-222 128-276-276 128-222-222q2-2 10-7t10-7q2 0 6-4 4 0 4-2l8-4t7-4 8-4 9-4 10-6 10-4q4-2 14-5t16-5l14-4 24-6q6 0 14-4 16-4 26-4h14q6 0 18-1t20-1q176 0 301 125t125 301zM256 768l276-128-148-148zM96 96l832 832-56 54-118-120q-2 2-10 7t-10 7q-2 0-6 4-4 0-4 2-20 14-52 24l-30 12q-2 2-7 2t-7 2l-24 6q-8 4-14 4-16 4-26 4h-12q-12 2-40 2-176 0-301-125t-125-301q0-26 2-38v-14q0-10 4-26 4-8 4-14l6-24 4-14q2-6 5-16t5-14q0-2 4-9t6-11l16-32q2 0 4-4t2-6q2-2 7-10t7-10l-120-118z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "explore_off"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 992,
+ "paths": [
+ "M410 652l-196-196 84-80 112 110 316-316 84 86zM214 768h596v86h-596v-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file_download_done"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 993,
+ "paths": [
+ "M382 554l-14 86h-256l14-86h256zM354 726l-12 84h-256l12-84h256zM316 384l-14 86h-170l12-86h172zM342 214l-14 84h-170l12-84h172zM386 128h552l-46 302h-114l30-192h-110l-84 548h100l-18 110h-310l18-110h100l86-548h-110l-30 192h-112z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "rtt"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 994,
+ "paths": [
+ "M810 810v-170h-170v170h170zM554 554h342v342h-342v-342zM810 384v-170h-170v170h170zM554 128h342v342h-342v-342zM384 810v-170h-170v170h170zM128 554h342v342h-342v-342zM384 384v-170h-170v170h170zM128 128h342v342h-342v-342z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "grid_view"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 995,
+ "paths": [
+ "M170 682h128v256h-128v-256zM810 102q-4 94-48 163t-122 93v580h-86v-256h-84v256h-86v-508q-18 6-26 14-60 48-60 132v22h-84v-22q0-126 90-204 90-74 208-74 90 0 148-44 66-54 66-148v-20h84v16zM512 256q-34 0-60-26t-26-60 26-59 60-25 60 25 26 59-26 60-60 26z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hail"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 996,
+ "paths": [
+ "M512 128l342 256v512h-214v-298h-256v298h-214v-512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "home_filled"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 997,
+ "paths": [
+ "M854 86v256h-598v-86h-86v170h428v214h84v342h-256v-342h86v-128h-426v-342h170v-84h598z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "imagesearch_roller"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 998,
+ "paths": [
+ "M938 512l-128 170-468-468h340q44 0 70 36zM138 118l726 724-54 54-84-86h-512q-34 0-60-25t-26-59v-428q0-34 26-60l-68-68z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "label_off"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 999,
+ "paths": [
+ "M170 256v598h598v84h-598q-34 0-59-25t-25-59v-598h84zM532 598l278-282-60-60-218 220-88-88-60 60zM854 86q34 0 59 25t25 59v512q0 34-25 60t-59 26h-512q-34 0-60-26t-26-60v-512q0-34 26-59t60-25h512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "library_add_check"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1000,
+ "paths": [
+ "M170 214v596h342v86h-342q-34 0-59-26t-25-60v-596q0-34 25-60t59-26h342v86h-342zM726 298l212 214-212 214-60-62 110-110h-434v-84h434l-110-112z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "logout"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1001,
+ "paths": [
+ "M640 470h86v84h-86v-84zM470 470h84v84h-84v-84zM298 470h86v84h-86v-84zM640 298h86v86h-86v-86zM298 298h86v86h-86v-86zM470 298h84v86h-84v-86zM810 810v-596h-596v596h596zM128 128h768v768h-768v-768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "margin"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1002,
+ "paths": [
+ "M854 498v-72l-278 142-278-142v72l278 142zM854 342q34 0 59 25t25 59v384q0 34-25 60t-59 26h-556q-34 0-59-26t-25-60v-384q0-34 25-59t59-25h556zM804 298h-112l-244-128-278 146v410q-34 0-59-26t-25-60v-334q0-42 34-58l328-162 322 162q30 18 34 50z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mark_as_unread"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1003,
+ "paths": [
+ "M896 666l-60 60-214-214 214-214 60 60-152 154zM128 256h554v86h-554v-86zM128 554v-84h426v84h-426zM128 768v-86h554v86h-554z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "menu_open"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1004,
+ "paths": [
+ "M662 512v-64h64v64h-64zM662 640v-64h84q18 0 31-12t13-30v-108q0-18-13-30t-31-12h-148v256h64zM278 384q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64v-214q0-18-12-30t-30-12h-192zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mp"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1005,
+ "paths": [
+ "M768 682v-512h-342v512h342zM768 42q34 0 60 26t26 60v598q0 34-26 59t-60 25h-342q-34 0-59-25t-25-59v-598q0-34 25-60t59-26h342zM682 982h-426q-34 0-60-26t-26-60v-682h86v682h426v86zM622 438q-100 0-152 70 28-132 152-150v-56l104 96-104 96v-56z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "offline_share"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1006,
+ "paths": [
+ "M640 298h86v86h-86v-86zM298 298h86v86h-86v-86zM470 298h84v86h-84v-86zM810 810v-596h-596v596h596zM128 128h768v768h-768v-768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "padding"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1007,
+ "paths": [
+ "M960 364q22 12 22 34v228q0 24-22 36-20 10-60 26-44 98-124 161t-172 80-184 0-172-80-124-161q-20-8-60-28-22-10-22-34v-228q0-24 22-34 40-20 60-28 50-112 155-181t233-69 233 69 155 181q20 8 60 28zM512 162q-170 0-274 134 272-80 548 0-108-134-274-134zM512 862q70 0 150-39t124-95q-278 80-548 0 106 134 274 134zM914 608v-192q-404-190-804 0v192q2 0 6 2t6 2q156 78 390 78 152 0 258-32 100-28 144-50z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "panorama_photosphere"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1008,
+ "paths": [
+ "M238 728q44 56 124 95t150 39 150-39 124-95q-278 80-548 0zM512 162q-170 0-274 134 272-80 548 0-108-134-274-134zM960 364q22 12 22 34v228q0 24-22 36-20 10-60 26-44 98-124 161t-172 80-184 0-172-80-124-161q-20-8-60-28-22-10-22-34v-228q0-24 22-34 40-20 60-28 50-112 155-181t233-69 233 69 155 181q20 8 60 28z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "panorama_photosphere_select"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1009,
+ "paths": [
+ "M256 426h38l-38-38v38zM486 618l-106-106h-124v128h-86v-128h-128v-86h128v-124l-170-170 52-56 896 892-56 56-170-170h-424v-86q0-50 54-89t134-61zM982 854h-40l-256-252q104 6 200 52t96 114v86zM470 342q0-70 50-121t120-51 120 51 50 121-50 120-120 50-120-50-50-120z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "person_add_disabled"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1010,
+ "paths": [
+ "M620 740q-80 64-212 110t-236 46h-2q-18 0-30-12t-12-30v-150q0-18 12-30t30-12q80 0 152-24 24-10 44 10l94 94q60-32 98-62l-498-500 60-60 784 784-60 60zM740 620l-62-60q38-50 64-100l-94-94q-18-18-10-44 24-72 24-152 0-18 12-30t30-12h150q18 0 30 12t12 30q0 252-156 450z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "phone_disabled"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1011,
+ "paths": [
+ "M742 460l-94-94q-18-18-10-44 24-72 24-152 0-18 12-30t30-12h150q18 0 30 12t12 30q0 300-213 513t-513 213q-18 0-30-12t-12-30v-150q0-18 12-30t30-12q80 0 152-24 24-10 44 10l94 94q186-96 282-282z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "phone_enabled"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1012,
+ "paths": [
+ "M598 554l170-170 170 170h-128v68q0 78-55 133t-133 55h-68v128l-170-170 170-170v128h68q42 0 73-30t31-74v-68h-128zM214 896q-34 0-60-26t-26-60v-384h214v470h-128zM128 342v-128q0-34 26-60t60-26h128v214h-214zM426 342v-214h384q34 0 60 26t26 60v128h-470z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pivot_table_chart"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1013,
+ "paths": [
+ "M342 810h336l-212-212h-124v212zM52 76l896 892-56 56-128-128h-508v-170h-170v-256q0-50 36-87t88-41l-210-214zM768 298h-384l-128-124v-46h512v170zM810 426q-18 0-30 13t-12 31 12 30 30 12 31-12 13-30-13-31-31-13zM814 726l-388-384h384q54 0 91 37t37 91v256h-124z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "print_disabled"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1014,
+ "paths": [
+ "M640 426h86v86h-86v-86zM640 170h86v214h-86v-214zM626 546q8 4 18 6h12l6 2h42l8-2q76-12 129-74t53-136q0-86-62-149t-150-65q-56 0-108 30l-2 2-20 12v2q-26 20-36 34l-16 24-8 16-4 6-6 16q-12 36-12 72 0 64 43 123t103 79q2 2 10 2zM384 810q34 0 60-25t26-59-26-60-60-26-60 26-26 60 26 59 60 25zM128 512h310q-54-76-54-170 0-20 4-44h-260v214zM982 342q0 106-75 193t-181 101v110q0 62-44 106t-106 44l64 64v22h-512v-22l64-64q-62 0-106-44t-44-106v-448q0-102 88-136t254-34h8q58 0 80 2 36-36 98-62t112-26q122 0 211 89t89 211z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "railway_alert"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1015,
+ "paths": [
+ "M768 506v-36q0-18-12-31t-30-13h-196l24-144v-10q0-18-12-30l-30-28-196 212q-18 14-18 40v216q0 36 25 61t61 25h238q36 0 52-34l90-210q4-8 4-18zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "recommend"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1016,
+ "paths": [
+ "M766 298l-156 156-60-60 156-156zM732 576l-62-62 278-276 60 60zM96 180l60-60 724 724-60 60-210-208-114 114-238-238 60-60 178 178 54-54zM76 512l238 238-60 60-238-238z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "remove_done"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1017,
+ "paths": [
+ "M840 708l-562-562 234-104 384 172v256q0 122-56 238zM950 928l-54 54-146-146q-104 114-238 146-164-40-274-187t-110-325v-256l-86-86 54-54 222 222t260 259 222 221z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "remove_moderator"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1018,
+ "paths": [
+ "M726 726h-428v-128l-170 170 170 170v-128h512v-256h-84v172zM298 298h428v128l170-170-170-170v128h-512v256h84v-172zM896 42q34 0 60 26t26 60v768q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-768q0-34 26-60t60-26h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "repeat_on"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1019,
+ "paths": [
+ "M554 640v-256h-42l-86 42v44h64v170h64zM726 726h-428v-128l-170 170 170 170v-128h512v-256h-84v172zM298 298h428v128l170-170-170-170v128h-512v256h84v-172zM896 42q34 0 60 26t26 60v768q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-768q0-34 26-60t60-26h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "repeat_one_on"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1020,
+ "paths": [
+ "M768 512q0-106-75-181t-181-75v-128l-170 170 170 172v-128q70 0 120 50t50 120-50 120-120 50-120-50-50-120h-86q0 106 75 181t181 75 181-75 75-181zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "replay_circle_filled"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1021,
+ "paths": [
+ "M896 426q34 0 60 26t26 60h-2v214q0 34-25 59t-59 25h-214v86h-340v-86h-214q-34 0-60-25t-26-59v-512q0-34 26-60t60-26h768q34 0 60 26t26 60v128h-86v-128h-768v512h768v-214h-342v128l-170-170 170-172v128h342z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "reset_tv"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1022,
+ "paths": [
+ "M618 576v-128h86v128h-86zM406 576h-86v-22h-64v44q0 18 12 30t30 12h128q18 0 31-12t13-30v-64q0-18-13-31t-31-13h-106v-42h86v22h64v-44q0-18-13-30t-31-12h-128q-18 0-30 12t-12 30v64q0 18 12 31t30 13h108v42zM554 384v256h172q18 0 30-12t12-30v-172q0-18-12-30t-30-12h-172zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-36 0-61-25t-25-61v-596q0-36 25-61t61-25h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sd"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1023,
+ "paths": [
+ "M512 42l384 172v256q0 178-110 325t-274 187q-164-40-274-187t-110-325v-256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "shield"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1024,
+ "paths": [
+ "M632 572l-60 60 134 134-88 88h236v-236l-88 88zM618 170l88 88-536 536 60 60 536-536 88 88v-236h-236zM452 392l-222-222-60 60 222 222zM896 42q34 0 60 26t26 60v768q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-768q0-34 26-60t60-26h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "shuffle_on"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1025,
+ "paths": [
+ "M512 682q-34 0-60-25t-26-59q0-36 26-62l362-240-242 362q-24 24-60 24zM870 366q28 44 48 112t20 120q0 118-56 212-26 44-74 44h-592q-48 0-74-44-56-94-56-212 0-176 125-301t303-125q52 0 119 20t111 48l-80 52q-72-36-152-36-140 0-241 100t-101 242q0 92 46 170h592q46-78 46-170 0-82-36-154z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "speed"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1026,
+ "paths": [
+ "M470 384h128v128h-128v-128zM470 554h128v300h-128v-300zM682 554h128v86h-128v-86zM682 682h128v172h-128v-172zM256 214h128v170h-128v-170zM256 426h128v428h-128v-428z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "stacked_bar_chart"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1027,
+ "paths": [
+ "M426 170q0-36 25-60t61-24 61 24 25 60-25 61-61 25-61-25-25-61zM844 780l-62 60q-36-36-102-103t-82-83l60-60 14 16zM428 656q-36 36-103 102t-83 82l-62-60q36-36 103-102t83-82zM594 368l188-188 62 60-188 188zM428 366l-60 60-14-12-170-174 60-60 12 14h2zM426 854q0-36 25-61t61-25 61 25 25 61-25 60-61 24-61-24-25-60zM86 512q0-36 24-61t60-25 61 25 25 61-25 61-61 25-60-25-24-61zM768 512q0-36 25-61t61-25 60 25 24 61-24 61-60 25-61-25-25-61z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "stream"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1028,
+ "paths": [
+ "M858 166l80-80v212h-212l88-88q-34-44-116-74t-186-30-186 30-116 74l88 88h-212v-212l80 80q48-56 141-90t205-34 205 34 141 90zM842 694v8l-32 224q-4 24-21 40t-41 16h-290q-24 0-44-20l-212-210 34-34q14-14 34-14h10l146 32v-458q0-26 19-45t45-19 45 19 19 45v256h34q6 0 22 4l194 96q38 18 38 60z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "swipe"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1029,
+ "paths": [
+ "M854 682v-64q0-56-88-92t-168-36-168 36-88 92v64h512zM598 170q-52 0-90 38t-38 90 38 90 90 38 90-38 38-90-38-90-90-38zM854 86q34 0 59 25t25 59v512q0 34-25 60t-59 26h-512q-34 0-60-26t-26-60v-512q0-34 26-59t60-25h512zM170 256v598h598v84h-598q-34 0-59-25t-25-59v-598h84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "switch_account"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1030,
+ "paths": [
+ "M598 598v-172h-172v172h172zM854 426h-172v172h172v84h-172v172h-84v-172h-172v172h-84v-172h-172v-84h172v-172h-172v-84h172v-172h84v172h172v-172h84v172h172v84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tag"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1031,
+ "paths": [
+ "M854 640q-18 0-31-12t-13-30v-384q0-18 13-31t31-13h84v470h-84zM426 938l-18-20q-24-24-38-52-6-14-4-28l40-198h-236q-34 0-59-26t-25-60v-46q0-20 6-34l114-262q26-42 74-42h346q42 0 71 29t29 71v334q0 36-26 62zM464 780l176-174v-336q0-14-14-14h-346l-110 252v46h236q38 0 65 31t17 71z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "thumb_down_off_alt"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1032,
+ "paths": [
+ "M170 384q18 0 31 12t13 30v384q0 18-13 31t-31 13h-84v-470h84zM598 86l18 20q24 24 38 52 6 14 4 28l-40 198h236q34 0 59 26t25 60v46q0 18-6 34l-114 262q-26 42-74 42h-346q-42 0-71-29t-29-71v-334q0-36 26-62zM560 244l-176 174v336q0 14 14 14h346l110-252v-46h-236q-38 0-65-31t-17-71z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "thumb_up_off_alt"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1033,
+ "paths": [
+ "M298 640q52 0 90-38t38-90-38-90-90-38-90 38-38 90 38 90 90 38zM726 298q88 0 150 63t62 151-62 151-150 63h-428q-88 0-150-63t-62-151 62-151 150-63h428z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "toggle_off"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1034,
+ "paths": [
+ "M726 640q52 0 90-38t38-90-38-90-90-38-90 38-38 90 38 90 90 38zM726 298q88 0 150 63t62 151-62 151-150 63h-428q-88 0-150-63t-62-151 62-151 150-63h428z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "toggle_on"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1035,
+ "paths": [
+ "M234 534q-34 0-59 25t-25 59 25 60 59 26 60-26 26-60-26-59-60-25zM790 470q62 0 105 43t43 105-43 106-105 44-106-44-44-106q0-66 50-110l-18-22-118 196h-128l-44-40q-10 54-52 90t-96 36q-62 0-105-44t-43-106q0-24 8-47t21-41 33-32 42-22l-40-34h-64v-36h156l90 56 144-56h130l-52-64h-84v-44h122l52 66 124-48v90h-90l56 74q10-2 19-5t18-4 19-1zM790 534q-34 0-60 25t-26 59 26 60 60 26 59-26 25-60-25-59-59-25z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "two_wheeler"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1036,
+ "paths": [
+ "M342 640l170-170 170 170-60 62-68-68v176h-84v-176l-68 66zM768 854v-470h-214v-214h-298v684h512zM598 86l256 256v512q0 34-26 59t-60 25h-512q-34 0-60-25t-26-59l2-684q0-34 25-59t59-25h342z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "upload_file"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1037,
+ "paths": [
+ "M726 938v-84h128v-128h84v148q0 26-19 45t-45 19h-148zM298 938h-148q-26 0-45-19t-19-45v-148h84v128h128v84zM726 86h148q26 0 45 19t19 45v148h-84v-128h-128v-84zM298 86v84h-128v128h-84v-148q0-26 19-45t45-19h148zM554 736l172-98v-196l-172 98v196zM512 466l170-98-170-100-170 100zM298 638l172 98v-196l-172-98v196zM778 324q32 20 32 56v270q0 36-32 56l-234 136q-32 20-64 0l-234-136q-32-20-32-56v-270q0-36 32-56l234-136q16-8 32-8t32 8z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "view_in_ar"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1038,
+ "paths": [
+ "M298 426h128v172h-128v-172zM426 214h128v170h-128v-170zM598 170h128v128h-128v-128zM128 554h128v300h-128v-300zM768 170h128v684h-128v-684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "waterfall_chart"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1039,
+ "paths": [
+ "M384 598v-172h-86v172h86zM342 170l256 256h-86v428h-342v-428h-84zM598 854v-128l128 128h-128zM598 512l340 342h-106l-234-236v-106z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wb_shade"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1040,
+ "paths": [
+ "M152 338l60-60 90 90-60 60zM470 170h84v128h-84v-128zM86 682h852v172h-852v-172zM764 598h-504q16-92 87-153t165-61 165 61 87 153zM724 370l90-90 60 60-90 90z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wb_twighlight"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1041,
+ "paths": [
+ "M426 128h556v768h-256v-170h84v-86h-84v-86h84v-84h-84v-78l-86-58v-36h-54q-68-44-160-106v-64zM348 244l292 194v458h-214v-342h-170v342h-214v-448z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "home_work"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1042,
+ "paths": [
+ "M682 896q88 0 151-63t63-151-63-151-151-63q-86 0-149 62t-63 150v4q0 88 62 150t150 62zM682 384q124 0 212 88t88 210-89 211-211 89q-102 0-181-61t-105-157l-310 132v-298l384-86-384-86v-298zM704 534v138l96 64-32 54-128-86v-170h64z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "schedule_send"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1043,
+ "paths": [
+ "M470 896h-44l44-298h-150q-32 0-16-28 6-10 2-6 102-178 248-436h44l-44 298h150q28 0 18 28z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bolt"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1044,
+ "paths": [
+ "M704 854l-150-172h86v-128h128v128h86zM896 896v-384h-384v384h384zM896 426q34 0 60 26t26 60v384q0 34-26 60t-60 26h-384q-34 0-60-26t-26-60v-150l-340 150v-298l384-86-384-86v-298l682 298h128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "send_and_archive"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1045,
+ "paths": [
+ "M768 554q70 0 120 51t50 121-50 120-120 50-120-50-50-120 50-121 120-51zM512 128q70 0 120 50t50 120-50 121-120 51-120-51-50-121 50-120 120-50zM256 554q70 0 120 51t50 121-50 120-120 50-120-50-50-120 50-121 120-51z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "workspaces_filled"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1046,
+ "paths": [
+ "M682 426v214q0 70-50 120t-120 50-120-50-50-120v-278q0-44 31-75t75-31h12q42 4 68 37t26 75v272h-84v-278q0-20-22-20t-22 20v278q0 34 26 60t60 26 60-26 26-60v-214h84zM256 854h512v-512h-170v-172h-342v684zM640 86l214 212v556q0 34-26 59t-60 25h-512q-34 0-60-25t-26-59v-684q0-34 26-59t60-25h384z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file_present"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1047,
+ "paths": [
+ "M768 554q70 0 120 51t50 121-50 120-120 50-120-50-50-120 50-121 120-51zM768 640q-34 0-60 26t-26 60 26 59 60 25 60-25 26-59-26-60-60-26zM512 128q70 0 120 50t50 120-50 121-120 51-120-51-50-121 50-120 120-50zM512 214q-34 0-60 25t-26 59 26 60 60 26 60-26 26-60-26-59-60-25zM256 554q70 0 120 51t50 121-50 120-120 50-120-50-50-120 50-121 120-51zM256 640q-34 0-60 26t-26 60 26 59 60 25 60-25 26-59-26-60-60-26z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "workspaces_outline"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1048,
+ "paths": [
+ "M768 342v340h-512v-340h512zM298 768v86h-128q-34 0-59-26t-25-60v-86h84v86h128zM854 682h84v86q0 34-25 60t-59 26h-128v-86h128v-86zM170 342h-84v-86q0-34 25-60t59-26h128v86h-128v86zM726 170h128q34 0 59 26t25 60v86h-84v-86h-128v-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fit_screen"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1049,
+ "paths": [
+ "M312 534l36-106-92-64h112l36-108 36 108h112l-92 64 36 106-92-66zM406 598q80 0 136-56t56-136-56-136-136-56-136 56-56 136 56 136 136 56zM662 598l212 212-64 64-212-212v-34l-12-12q-76 66-180 66-116 0-197-80t-81-196 81-197 197-81 196 81 80 197q0 42-20 95t-46 85l12 12h34z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "saved_search"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1050,
+ "paths": [
+ "M214 810h598v-256h-10q-60 0-96-40-40 40-96 40-54 0-98-40-40 40-94 40-60 0-100-40-36 40-94 40h-10v256zM172 400q-6 28 12 50 14 20 40 20 42 0 50-50l26-206h-84zM362 412q0 22 15 40t37 18q24 0 40-17t16-39v-200h-84l-24 192v6zM554 214v200q0 22 16 39t36 17q26 0 43-19t13-45l-24-192h-84zM806 212l-82 2 26 206q2 20 16 35t34 15q24 0 40-20 18-22 12-50zM934 380q16 70-26 122l-12 12v296q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-296l-12-12q-42-52-26-122l44-188q6-28 30-46t52-18h592q28 0 51 18t31 46z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "storefront"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1051,
+ "paths": [
+ "M810 256h86v470h-86v-470zM128 256h86v470h-86v-470zM298 170h428v640h-428v-640z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "amp_stories"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1052,
+ "paths": [
+ "M170 512v298h384v86h-384q-34 0-59-26t-25-60v-298h84zM854 470v-172h-342v172h342zM854 128q34 0 59 26t25 60v256q0 34-25 59t-59 25h-342q-34 0-60-25t-26-59v-256q0-34 26-60t60-26h342zM342 342v298h384v86h-384q-34 0-60-26t-26-60v-298h86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "dynamic_feed"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1053,
+ "paths": [
+ "M640 790q102 0 180-68l76 76q-108 98-256 98-124 0-223-72t-139-184h-192l42-86h130q-2-12-2-42t2-42h-172l42-86h150q40-112 139-184t223-72q60 0 136 29t120 69l-76 76q-78-68-180-68-70 0-142 44t-104 106h288l-42 86h-274q-4 28-4 42t4 42h316l-42 86h-246q32 62 104 106t142 44z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "euro"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1054,
+ "paths": [
+ "M554 298v428h128l-170 170-170-170h128v-428h-128l170-170 170 170h-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "height"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1055,
+ "paths": [
+ "M384 512q0-52 38-90t90-38 90 38 38 90-38 90-90 38-90-38-38-90zM896 214v256q0 152-82 284l-124-124q36-54 36-118 0-36-18-81t-44-71-71-44-81-18-80 18-70 44-45 71-19 81 19 80 45 70 70 45 80 19q64 0 118-36l132 134q-104 122-250 158-164-40-274-187t-110-325v-256l384-172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "policy"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1056,
+ "paths": [
+ "M86 682l170-170v128h640v86h-640v128zM938 342l-170 170v-128h-640v-86h640v-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sync_alt"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1057,
+ "paths": [
+ "M746 612q52 0 108 10v64q-40-10-108-10-120 0-192 42v-72q76-34 192-34zM554 532q84-34 192-34 52 0 108 10v64q-40-10-108-10-120 0-192 42v-72zM746 448q-120 0-192 42v-70q80-36 192-36 52 0 108 10v66q-48-12-108-12zM896 790v-492q-66-20-150-20-130 0-234 64v490q104-64 234-64 78 0 150 22zM746 192q152 0 236 64v622q0 8-7 15t-15 7q-6 0-10-2-82-44-204-44-130 0-234 64-86-64-234-64-108 0-204 46-2 0-5 1t-5 1q-8 0-15-6t-7-14v-626q86-64 236-64 148 0 234 64 86-64 234-64z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "menu_book"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1058,
+ "paths": [
+ "M768 726v-256h-214l-42-86h-214v256h256l44 86h170zM598 384h256v426h-300l-42-84h-214v170h-84v-652q-44-24-44-74 0-34 26-59t60-25 60 25 26 59q0 50-44 74v54h256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "emoji_flags"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1059,
+ "paths": [
+ "M170 810h684v86h-684v-86zM854 342v-128h-86v128h86zM854 128q36 0 60 25t24 61v128q0 36-24 60t-60 24h-86v128q0 70-50 121t-120 51h-256q-70 0-121-51t-51-121v-426h172v102l-78 62q-8 6-8 16v182q0 22 22 22h170q22 0 22-22v-182q0-10-8-16l-78-62v-102h470z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "emoji_food_beverage"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1060,
+ "paths": [
+ "M520 622q22-26 20-57t-26-55q-26-26-58-26-30 0-54 20l68 26q2 0 6 2l16 16 2 4v2zM468 850q40-14 26-54l-50-134q-52 100-30 162 16 42 54 26zM200 610q62 22 162-30l-136-50q-38-14-52 26-16 38 26 54zM512 408q76 26 102 104h68v44h-58q6 80-48 134l-24 18 24 60q6 18 6 42 0 38-24 74t-60 48q-22 6-44 6-68 0-104-54-18 6-48 6-68 0-118-50-70-70-44-166-30-20-47-63t-1-85q12-34 48-59t74-25q24 0 42 6l60 24 18-24q50-50 120-50 2 0 8 1t8 1v-58h42v66zM768 298q18 0 30-12t12-30-12-30-30-12-30 12-12 30 12 30 30 12zM936 208q14 40-24 64l-36 22 16 52q12 26-5 53t-47 27q-24 0-38-12l-34-30-34 30q-14 12-38 12-30 0-47-27t-5-53l18-52-38-22q-38-24-24-64 14-38 54-38h46l12-40q10-44 56-44t56 44l12 40h48q36 0 52 38z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "emoji_nature"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1061,
+ "paths": [
+ "M678 346l190 192-60 60-168-170v510h-86v-256h-84v256h-86v-566q-94-28-154-107t-60-179h86q0 88 62 150t150 62h110q52 0 100 48zM426 170q0-36 25-60t61-24 61 24 25 60-25 61-61 25-61-25-25-61z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "emoji_people"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1062,
+ "paths": [
+ "M214 832q0 8 7 15t13 7q8 0 16-8l46-44-32-30-44 44q-6 6-6 16zM264 600q-6 0-13 6t-7 14q0 10 6 16l14 16 16-16q16-16 0-30-6-6-16-6zM416 680l60 62-60 60 60 60-60 60-60-60-46 46q-30 30-76 30t-76-30q-32-32-32-76t32-76l46-46-14-14q-32-32-32-76t31-75 75-31 76 31 32 75-32 76l-14 14 30 32zM662 470q-44 0-76-32t-32-76 32-75 76-31q36 0 64 22v-192h170v84h-128v192q0 44-31 76t-75 32zM768 832q0-28 18-46t46-18 46 18 18 46-18 46-46 18-46-18-18-46zM554 618q0-26 19-45t45-19 45 19 19 45-19 45-45 19-45-19-19-45zM530 862l332-332 60 60-332 332zM256 470v-172h-128v-84h342v84h-128v172h-86zM128 86h342v84h-342v-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "emoji_symbols"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1063,
+ "paths": [
+ "M214 810h84v86h-84v-86zM214 640h84v86h-84v-86zM426 214h86v84h-86v-84zM214 470h84v84h-84v-84zM598 384v-214h-256v214h-214v512h-42v-554h212v-214h342v256h-42zM854 726q18 0 30-13t12-31-12-30-30-12-31 12-13 30 13 31 31 13zM512 726q18 0 30-13t12-31-12-30-30-12-30 12-12 30 12 31 30 13zM530 470l-44 128h394l-44-128h-306zM878 454l60 176v236q0 12-9 21t-21 9h-26q-12 0-20-10t-8-22v-54h-342v54q0 12-9 22t-21 10h-26q-28 0-28-30l-2-236 62-176q10-28 42-28h306q32 0 42 28z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "emoji_transportation"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1064,
+ "paths": [
+ "M298 640h342v86h-342v-86zM298 512h342v86h-342v-86zM298 384h342v86h-342v-86zM810 86v128h128v84h-128v128h-84v-128h-128v-84h128v-128h84zM726 820v-308h84v298q0 34-25 60t-59 26h-512q-34 0-60-26t-26-60v-512q0-34 26-59t60-25h298v84h-298v522h512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "post_add"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1065,
+ "paths": [
+ "M384 554q64 0 140 18t139 60 63 94v128h-684v-128q0-52 63-94t139-60 140-18zM640 512q-26 0-56-10 56-66 56-160 0-38-16-86t-40-76q30-10 56-10 70 0 120 51t50 121-50 120-120 50zM214 342q0-70 50-121t120-51 120 51 50 121-50 120-120 50-120-50-50-120zM712 560q106 16 188 59t82 107v128h-172v-128q0-98-98-166z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "people_alt"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1066,
+ "paths": [
+ "M662 470q26 0 45-19t19-45-19-45-45-19-45 19-19 45 19 45 45 19zM512 768q72 0 130-47t84-123h-428q26 76 84 123t130 47zM362 342q-26 0-45 19t-19 45 19 45 45 19 45-19 19-45-19-45-45-19zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "emoji_emotions"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1067,
+ "paths": [
+ "M810 342v-44h-84v164q84-30 84-120zM298 462v-164h-84v44q0 90 84 120zM810 214q34 0 60 25t26 59v44q0 80-54 140t-134 70q-18 44-63 80t-91 46v132h172v86h-428v-86h172v-132q-46-10-91-46t-63-80q-80-10-134-70t-54-140v-44q0-34 26-59t60-25h84v-86h428v86h84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "emoji_events"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1068,
+ "paths": [
+ "M534 486l78-76-30-32-70 70-70-70-30 32 78 76v112h44v-112zM598 726v-44h-172v44h172zM598 810v-42h-172v42h172zM512 128q124 0 211 87t87 211v2q0 56-29 121t-71 101q-28 24-28 62v98q0 34-25 60t-59 26h-12q-24 42-74 42t-74-42h-12q-34 0-59-26t-25-60v-98q0-38-28-62-126-112-96-280 16-88 81-154t153-82q30-6 60-6z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "emoji_objects"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1069,
+ "paths": [
+ "M382 554h88v382q-62-6-139-43t-123-83q62-34 113-110t61-146zM730 554h206q-10 100-66 188-50-24-90-79t-50-109zM154 742q-58-90-66-188h206q-10 54-50 109t-90 79zM642 554q10 70 61 146t113 110q-44 46-121 83t-141 43v-382h88zM382 470q-10-70-61-146t-113-110q44-46 121-83t141-43v382h-88zM642 470h-88v-382q62 6 139 43t123 83q-62 34-113 110t-61 146zM294 470h-206q10-100 66-188 50 24 90 79t50 109zM730 470q10-54 50-109t90-79q56 88 66 188h-206z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sports_basketball"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1070,
+ "paths": [
+ "M640 234q0-62 44-105t106-43 105 43 43 105-43 106-105 44-106-44-44-106zM612 758l60-60 182 180-62 60zM642 546q12 12 12 30t-12 30l-120 122q-12 12-30 12t-30-12l-364-362q-12-12-12-30t12-30l122-122q12-12 30-12t30 12z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sports_cricket"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1071,
+ "paths": [
+ "M726 554q18 0 30-12t12-30-12-30-30-12-31 12-13 30 13 30 31 12zM640 426q18 0 30-12t12-30-12-30-30-12-30 12-12 30 12 30 30 12zM470 470v-44h-86v-84h-42v84h-86v44h86v84h42v-84h86zM920 686q8 50-25 87t-83 37q-44 0-76-32l-96-96h-256l-96 96q-32 32-78 32t-77-31-31-77q0-2 1-8t1-8l46-326q8-62 56-104t112-42h388q62 0 110 43t58 103z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sports_esports"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1072,
+ "paths": [
+ "M896 358l-230-230q70-2 129 8t71 22 22 70 8 130zM422 662l240-240-60-60-240 240zM558 140l326 326q-32 178-136 282t-282 136l-326-326q32-178 136-282t282-136zM128 666l230 230q-70 2-129-8t-71-22-22-70-8-130z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sports_football"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1073,
+ "paths": [
+ "M298 810v-84h428v84h-86q-34 0-60 26t-26 60v42h-84v-42q0-34-26-60t-60-26h-86zM470 256q0-18 12-30t30-12 30 12 12 30-12 30-30 12-30-12-12-30zM554 342q0-18 13-31t31-13 30 13 12 31-12 30-30 12-31-12-13-30zM384 342q0-18 12-31t30-13 31 13 13 31-13 30-31 12-30-12-12-30zM512 170q-88 0-151 63t-63 151 63 151 151 63 151-63 63-151-63-151-151-63zM512 682q-124 0-211-87t-87-211 87-211 211-87 211 87 87 211-87 211-211 87z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sports_golf"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1074,
+ "paths": [
+ "M580 548l60 134h170v172l-200-2q-26 0-38-22l-60-132q-14-28-38-82t-30-68l-174-378h144l98 222q4-10 13-29t11-23l74-170h144zM896 682q18 0 30 13t12 31v128h-84v-172h42zM384 682l36-82 68 148-36 82q-12 22-38 22l-200 2v-172h170zM86 726q0-18 12-31t30-13h42v172h-84v-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sports_hockey"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1075,
+ "paths": [
+ "M640 426v-128h-342v128h342zM768 298q18 0 30 13t12 31v118q0 12-2 18l-34 170q-8 34-40 34h-444q-34 0-40-34l-34-170q-2-6-2-18v-246q0-34 25-60t59-26h342q34 0 60 26t26 60v128q0-18 12-31t30-13zM298 854v-128h428v128q0 18-13 30t-31 12h-340q-18 0-31-12t-13-30z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sports_mma"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1076,
+ "paths": [
+ "M936 478q14 152-87 264t-251 112h-428q-34 0-59-26t-25-60v-34q0-38 8-94h348q62 0 108-46t46-108q0-102-92-142l-204-86q108-78 254-86 144-10 256 79t126 227zM512 486q0 28-20 48t-48 20h-332q38-140 120-232l238 100q42 16 42 64z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sports_motorsports"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1077,
+ "paths": [
+ "M692 692q130-130 138-342-70 154-198 282t-282 198q210-6 342-138zM332 332q-130 130-138 342 30-64 88-147t110-135q128-128 282-198-210 6-342 138zM874 150q34 34 42 136t-31 239-131 229q-84 84-199 123t-227 39q-136 0-178-42-34-34-42-136t31-239 131-229q84-84 199-123t227-39q136 0 178 42z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sports_rugby"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1078,
+ "paths": [
+ "M770 734q84-96 84-222 0-4-1-8t-1-6l-42-32-60 20-62 186 34 58zM608 640l58-172-154-108-154 108 58 172h192zM618 836l30-64-26-46h-218l-28 46 30 64q50 18 106 18t106-18zM302 730l34-58-62-186-60-20-42 32q0 2-1 6t-1 8q0 52 25 117t59 105zM412 186q-50 14-105 56t-83 86l18 58 58 18 170-118v-60zM554 226v60l170 118 58-18 18-58q-28-44-83-86t-105-56zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sports_soccer"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1079,
+ "paths": [
+ "M384 512q0-36 25-61t61-25 60 25 24 61-24 61-60 25-61-25-25-61zM470 640q52 0 90-38t38-90-38-90-90-38-90 38-38 90 38 90 90 38zM192 384q22 0 22-22 0-20-22-20t-22 20q0 22 22 22zM480 256h458v172h-172q-20 0-33 14t-11 34q6 46-2 88-16 80-78 136t-144 66q-4 0-14 1t-14 1q-106 0-181-75t-75-181v-12q0-14 4-34-16 4-26 4-44 0-75-32t-31-76 31-75 75-31q36 0 64 21t38 53q78-74 186-74z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sports"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1080,
+ "paths": [
+ "M936 462l-382-220v-154q148 16 256 121t126 253zM344 904l382-220 132 78q-128 176-346 176-88 0-168-34zM554 340l382 220q-8 66-36 126l-346-198v-148zM512 562l128 74-382 218q-50-36-92-94zM470 488l-128 74v-440q62-28 128-34v400zM256 172v438l-132 78q-38-86-38-176 0-212 170-340z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sports_volleyball"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1081,
+ "paths": [
+ "M768 640q70 0 120 50t50 120-50 121-120 51-120-50-50-122q0-70 50-120t120-50zM768 726q-36 0-60 24-26 26-26 60t26 60 60 26q36 0 60-24 26-26 26-61t-26-61q-24-24-60-24zM440 498q50 50 135 37t153-81 81-153-37-135-134-36-152 82-82 152 36 134zM832 106q74 76 62 195t-106 213q-50 50-115 79t-119 29h-65t-34 1-37 5-33 10-35 17-30 25l-180 180-62-60 182-180q14-14 25-30t17-35 10-34 5-38 1-34v-65q0-52 29-117t79-115q94-94 213-108t193 62z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sports_tennis"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1082,
+ "paths": [
+ "M544 162q-32-18-32-54 0-28 18-46t46-18q38 0 56 32t0 62q-14 22-40 30t-48-6zM676 444q92 76 109 189t-37 199l-74-44q28-50 28-106 0-64-42-126l-268 464-74-42 128-222-74-42-64 110-72-42 218-380q-66-72-78-170t38-186l74 44q-44 76-22 161t98 129zM608 256q18-30 53-40t65 8 39 53-9 65-52 39-64-9-40-52 8-64z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sports_handball"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1083,
+ "paths": [
+ "M480 450q66 66 154 66l6 88q-124 0-216-88l-30-30-100 102 90 90v256h-86v-220l-54-50v94l-182 180-60-60 156-154-46-126q0-2-2-7t-3-9-1-8q-4-36 26-66l142-142q26-26 60-26 30 0 48 14 12 12 98 96zM470 358q-32-6-54-36t-14-64q6-46 52-64 12-4 18-4 4 0 8-2h6q4 0 9 1t7 1q20 0 44 24t25 58-25 62q-12 12-28 18-2 0-7 3t-9 3q-6 2-16 2-2 0-8-1t-8-1zM1024 506h-86v-144l-76-30 38 190t44 222 38 190h-90l-78-342-88 86v256h-86v-320q36-34 90-86l-26-128q-36 40-90 70-60-6-106-52 100-18 144-98l44-70q40-64 112-34l216 90v200zM618 102q0-36 25-61t61-25 61 25 25 61-25 60-61 24-61-24-25-60z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sports_kabaddi"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1084,
+ "paths": [
+ "M258 344q66-66 215-109t265-55l116-10q-2 50-11 129t-53 240-110 227q-68 68-162 83t-176-25q18-100 86-217t144-181q-218 112-314 340-36-36-62-99t-26-113 26-112 62-98z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "eco"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1085,
+ "paths": [
+ "M682 768v-298h-84l-86 128-86-128h-84v298h84v-170l86 128 86-128v170h84zM938 470h-84v384h84v84h-852v-84h84v-384h-84v-86l426-298 426 298v86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "museum"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1086,
+ "paths": [
+ "M682 598h256v256h-84v-86q-128 170-342 170-154 0-271-97t-147-243h88q28 110 120 183t210 73q92 0 171-47t123-125h-124v-84zM342 426h-256v-256h84v86q128-170 342-170 154 0 271 97t147 243h-88q-28-110-120-183t-210-73q-92 0-171 47t-123 125h124v84zM384 512q0-52 38-90t90-38 90 38 38 90-38 90-90 38-90-38-38-90z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "flip_camera_android"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1087,
+ "paths": [
+ "M704 662l106-108h-84q0-88-63-150t-151-62q-52 0-100 26l30 30q28-14 70-14 70 0 120 50t50 120h-84zM512 768q52 0 100-26l-30-32q-32 16-70 16-70 0-120-51t-50-121h84l-106-106-106 106h84q0 88 63 151t151 63zM854 214q34 0 59 25t25 59v512q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-512q0-34 25-59t59-25h136l78-86h256l78 86h136z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "flip_camera_ios"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1088,
+ "paths": [
+ "M780 598l30 30-76 76 76 76-30 30-76-76-76 76-30-30 76-76-76-76 30-30 76 76zM704 938q98 0 166-68t68-166-68-166-166-68-166 68-68 166 68 166 166 68zM704 384q132 0 226 94t94 226-94 226-226 94q-120 0-210-79t-106-197l-344 148-2-298 384-86-384-86 2-298 608 260q36-4 52-4z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cancel_schedule_send"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1089,
+ "paths": [
+ "M810 640v-86h-84v86h84zM810 810v-84h-84v84h84zM640 298v-84h-86v84h86zM640 470v-86h-86v86h86zM640 640v-86h-86v86h86zM470 298v-84h-86v84h86zM470 470v-86h-86v86h86zM470 640v-86h-86v86h86zM298 470v-86h-84v86h84zM298 640v-86h-84v86h84zM298 810v-84h-84v84h84zM726 470h170v426h-342v-170h-84v170h-342v-598h170v-170h428v342z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "apartment"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1090,
+ "paths": [
+ "M854 554h84v256q0 34-25 60t-59 26q0 18-13 30t-31 12h-596q-18 0-31-12t-13-30q-34 0-59-26t-25-60v-256h128v-32q0-38 29-67t67-29q40 0 72 32l58 66q12 14 36 30h292v-348q0-14-10-25t-26-11q-14 0-24 10l-54 54q4 16 4 22 0 22-14 46l-118-118q24-14 46-14 10 0 22 4l54-54q34-34 84-34t86 35 36 85v348zM214 298q0-36 24-60t60-24 61 24 25 60-25 61-61 25-60-25-24-61z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bathtub"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1091,
+ "paths": [
+ "M814 682l34-170 82 16-34 186v224h-86v-170h-84v170h-86v-256h174zM176 512l34 170h174v256h-86v-170h-84v170h-86v-224l-34-186zM938 384h-384v554h-84v-554h-384l426-298z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "deck"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1092,
+ "paths": [
+ "M854 854v-684h-684v684h86v-86h96q-50-64-54-128l-2-12v-18t3-25 7-32 12-36 21-40 33-42 45-45 60-46 77-46q-4 12-6 33t20 74 78 91q80 56 80 144 0 70-44 128h86v86h86zM506 724q40 34 89 15t55-73q4-38-36-78t-48-56q-10 28-4 54 2 8 6 23t5 22-1 23q-4 20-23 41t-43 29zM86 86h852v852h-852v-852z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fireplace"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1093,
+ "paths": [
+ "M426 426h172q0-34-26-59t-60-25-60 25-26 59zM810 396l128 116h-128v342h-212v-256h-172v256h-212v-342h-128l426-384 170 154v-112h128v226z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "house"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1094,
+ "paths": [
+ "M768 426v-128h-214v128h214zM470 426v-128h-214v128h214zM854 426q34 0 59 26t25 60v214h-56l-28 84h-44l-28-84h-540l-28 84h-44l-28-84h-56v-214q0-34 25-60t59-26v-128q0-34 26-59t60-25h512q34 0 60 25t26 59v128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "king_bed"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1095,
+ "paths": [
+ "M298 682q34 0 60 26t26 60-26 60-60 26h-128q-52 0-90-38t-38-90 38-90 90-38q90 0 120 84h8zM474 516q66 128 183 184t211 46q-58 90-152 142t-204 52q-68 0-134-22 92-52 92-150 0-54-36-101t-88-63q-66-92-176-92-46 0-84 18 0-2-1-8t-1-10q0-172 120-296t292-130q-30 46-50 100t-19 148 47 182z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "nights_stay"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1096,
+ "paths": [
+ "M614 298q14-54-18-86-50-52-38-126h42q-10 50 20 86 34 38 40 65t-2 61h-44zM508 298q12-54-20-86-50-52-38-126h42q-10 50 20 86 34 38 40 65t-2 61h-42zM402 298q12-54-20-86-50-52-38-126h42q-10 50 20 86 34 38 40 65t-2 61h-42zM726 768q-18 0-31 12t-13 30 13 31 31 13 30-13 12-31-12-30-30-12zM726 938q-42 0-74-24t-46-62h-272l-42 68q-10 18-36 18-16 0-24-6-18-10-18-36 0-16 6-24l170-258q-80-36-128-109t-48-163h596q0 80-51 160t-123 112l24 38q-40 16-68 52l-42-66q-10 2-38 2t-38-2l-84 130h216q14-38 46-62t74-24q52 0 90 38t38 90-38 90-90 38z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "outdoor_grill"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1097,
+ "paths": [
+ "M256 512v128h512v-128h-512zM342 298v128h128v-128h-128zM682 426v-128h-128v128h128zM854 512v214h-58l-28 84h-42l-28-84h-370l-30 84h-42l-28-84h-58v-214q0-34 26-60t60-26v-128q0-34 26-59t60-25h340q34 0 60 25t26 59v128q34 0 60 26t26 60z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "single_bed"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1098,
+ "paths": [
+ "M298 726h246l-246-246v246zM754 754l100 100h-598q-34 0-60-26t-26-60v-598l100 100-44 46 30 30 44-46 84 84-46 44 30 32 46-46 84 84-46 44 30 30 46-44 82 82-46 46 32 30 44-46 84 84-46 44 30 30z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "square_foot"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1099,
+ "paths": [
+ "M362 214l214 298-214 298h-192l214-298-214-298h192zM662 214l212 298-212 298h-192l212-298-212-298h192z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "double_arrow"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1100,
+ "paths": [
+ "M598 512q0 92 60 183t144 129q-124 114-290 114t-290-114q92-40 148-124t56-188-56-188-148-124q124-114 290-114t290 114q-92 40-148 124t-56 188zM862 268q76 110 76 244t-76 244q-78-24-129-92t-51-152 51-152 129-92zM162 268q78 24 129 92t51 152-51 152-129 92q-76-110-76-244t76-244z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sports_baseball"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1101,
+ "paths": [
+ "M164 408q-26-20-32-51t10-59 47-38 59 2q30-32 83-62t97-40q4-32 28-53t56-21 56 21 28 53q102 24 178 102 12-6 34-6 50 0 74 42 16 28 10 59t-32 51q14 44 14 104t-14 104q26 20 32 51t-10 59-48 38-60-2q-30 30-56 48l56 128h-78l-42-92q-26 12-58 18-4 32-28 53t-56 21-56-21-28-53q-6-2-19-5t-23-6-18-7l-42 92h-80l58-128q-24-18-54-48-30 12-61 2t-47-38-10-59 32-51q-14-44-14-104t14-104zM220 426q-10 36-10 80 0 50 14 92 46 4 66 42 20 36 4 76 18 16 38 32l64-144q-32-38-32-92 0-60 43-102t105-42 105 42 43 102q0 50-34 94l64 142q14-10 38-34-16-40 8-77t62-39q16-48 16-92 0-36-12-80-48-4-68-42-24-40 0-84-60-66-148-88-24 44-74 44t-74-44q-84 22-148 88 24 44 0 84-20 38-70 42zM446 800q26-32 66-32t66 32q16-4 48-16l-60-136q-24 10-54 10-32 0-56-10l-60 136q32 12 50 16z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "attractions"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1102,
+ "paths": [
+ "M588 640h-152l-32-294q-2-20 10-34t28-14h140q16 0 28 14t10 34zM368 400l28 240h-76l-90-174q-20-38 16-60l68-38q16-10 34 0t20 32zM656 400q4-22 20-32t34 0l68 38q36 22 14 60l-88 174h-76zM202 698q-10 6-24 6-24 0-36-24l-10-20q-10-24 2-42l36-54q10-18 34-18t34 18l42 76zM822 698l-78-58q14-26 42-76 10-18 34-18t34 18l34 54q14 20 4 42l-10 20q-10 24-36 24-14 0-24-6z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bakery_dining"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1103,
+ "paths": [
+ "M598 640v-170h-172v170h172zM768 128q70 0 120 50t50 120q0 98-84 148v364q0 34-26 60t-60 26h-512q-34 0-60-26t-26-60v-364q-84-50-84-148 0-70 50-120t120-50h512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "breakfast_dining"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1104,
+ "paths": [
+ "M342 214q18 0 30-13t12-31-12-30-30-12-31 12-13 30 13 31 31 13zM462 128h348v86h-42v84h-86v-84h-220q-30 84-120 84-52 0-90-38t-38-90 38-90 90-38q38 0 73 25t47 61zM268 598h488l-56-172h-374zM692 768q22 0 37-15t15-37-15-37-37-15-37 15-15 37 15 37 37 15zM332 768q22 0 37-15t15-37-15-37-37-15-37 15-15 37 15 37 37 15zM700 384q28 0 40 30l70 212v292q0 20-20 20h-44q-20 0-20-20v-64h-428v64q0 20-20 20h-44q-20 0-20-22v-290l70-212q10-30 40-30h376z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "car_rental"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1105,
+ "paths": [
+ "M170 726h684v84h-300v128h-84v-128h-300v-84zM736 154q6 12 74 216v278q0 34-32 34h-20q-32 0-32-34v-50h-428v50q0 34-32 34h-20q-32 0-32-34v-278q58-172 66-200 0-2 4-7t4-9l2-2q8-10 18-16t16-8h370q24 2 40 24 2 0 2 2zM324 170l-56 172h488l-58-172h-374zM280 460q0 22 15 37t37 15 37-15 15-37-15-37-37-15-37 15-15 37zM692 512q22 0 37-15t15-37-15-37-37-15-37 15-15 37 15 37 37 15z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "car_repair"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1106,
+ "paths": [
+ "M170 704v-362h-42v-44h42v-42h-42v-42h42v-44h-42v-42h256q32 2 57 27t29 59h426v42h-426q-4 34-29 61t-57 25h-86v300q4 0 11-1t11-1q36 0 82 18 26-60 90-103t128-43q98 0 166 68t68 166q0 4-1 12t-1 10h-718q8-32 36-64zM256 650v-308h-42v328q30-16 42-20zM384 298v-42h-86v42h86zM384 170h-86v44h86v-44zM214 170v44h42v-44h-42zM214 256v42h42v-42h-42zM86 810h852l-84 86h-684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "dinner_dining"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1107,
+ "paths": [
+ "M792 598q18 0 18-18 0-14-10-18l-288-128-288 128q-10 4-10 16 0 20 18 20h66v-44h428v44h66zM834 484q62 26 62 94v2q0 44-30 73t-74 29h-66v256h-428v-256h-66q-44 0-74-29t-30-73v-2q0-66 62-92l280-126v-26q-44-16-68-57t-16-89q8-38 36-65t66-35q60-10 106 28t46 98h-86q0-18-12-31t-30-13-30 13-12 31 12 30 30 12 30 12 12 30v62z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "dry_cleaning"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1108,
+ "paths": [
+ "M384 554h256v300q0 18-12 30t-30 12h-172q-18 0-30-12t-12-30v-300zM768 128h86v342h-86l-128-128v128h-256v-128h-214q0-88 63-151t151-63h256v128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hardware"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1109,
+ "paths": [
+ "M854 854v-86h-300v86h300zM554 446v66h300v-66l-42-14q-36-12-61-48t-25-74v-12h-44v12q0 92-86 122zM682 170v44h44v-44h-44zM880 364q58 20 58 82v408q0 34-25 59t-59 25h-300q-34 0-59-25t-25-59v-408q0-62 58-82l40-12q30-10 30-42v-182q0-18 12-30t30-12h128q18 0 30 12t12 30v182q0 28 30 40zM214 342v128h84v-128h-84zM128 598v-342h256v342q0 42-24 74t-62 46v136h86v84h-256v-84h86v-136q-38-14-62-46t-24-74z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "liquor"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1110,
+ "paths": [
+ "M86 682h852v86q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-86zM228 576q-22 0-48 16-44 26-94 26v-84q22 0 48-16 46-28 94-28 46 0 92 28 26 16 50 16 22 0 48-16 46-28 94-28 46 0 92 28 26 16 50 16 22 0 48-16 46-28 94-28 46 0 92 28l50 16v84q-48 0-92-26-26-16-50-16-22 0-48 16-44 26-94 26-48 0-92-26-26-16-50-16-22 0-48 16-44 26-94 26-48 0-92-26-26-16-50-16zM938 426h-852q-10-104 116-180t310-76 310 76 116 180z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "lunch_dining"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1111,
+ "paths": [
+ "M726 214h212v128h-128v384q0 52-38 90t-90 38-90-38-38-90 38-90 90-38q26 0 44 6v-390zM430 384l60-86h-298l60 86h178zM42 214h598l-256 384v170h86v86h-256v-86h84v-170z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "nightlife"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1112,
+ "paths": [
+ "M726 512l170 256h-300v170h-168v-170h-296l166-256h-82l296-426 298 426h-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "park"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1113,
+ "paths": [
+ "M938 128l-512 60v68h512v42h-512v214h512q0 116-71 211t-185 141v74h-340v-74q-114-46-185-141t-71-211h128v-342l724-84v42zM256 208v48h42v-52zM256 298v214h42v-214h-42zM384 512v-214h-42v214h42zM384 256v-62l-42 4v58h42z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "ramen_dining"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1114,
+ "paths": [
+ "M642 250q14-14 14-36t-14-38l-68-68 46-46 68 68q34 38 34 84 0 44-34 82l-154 154-44-46zM728 506q38-34 82-34 46 0 84 34l68 70-44 44-70-68q-16-16-38-16-20 0-36 16l-68 68-46-46zM430 294q14-14 14-38t-14-38l-26-24 46-46 24 24q34 38 34 84 0 44-34 82l-24 26-46-46zM620 534l-46-44 240-240q38-34 82-34 46 0 84 34l24 26-44 46-26-26q-16-16-38-16t-38 16zM86 938l212-596 384 384z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "celebration"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1115,
+ "paths": [
+ "M810 344q18 0 31-12t13-30-13-30-31-12-30 12-12 30 12 30 30 12zM598 344q18 0 30-12t12-30-12-30-30-12-31 12-13 30 13 30 31 12zM470 128h468v278q0 98-68 166t-166 68q-54 0-106-26v-124h212q0-26-31-45t-75-19-75 19-31 45v-106h-128v-256zM214 554q-18 0-31 13t-13 31 13 30 31 12 30-12 12-30-12-31-30-13zM426 554q-18 0-30 13t-12 31 12 30 30 12 31-12 13-30-13-31-31-13zM320 790q44 0 75-19t31-45h-212q0 26 31 45t75 19zM86 704v-278h468v278q0 98-68 166t-166 68-166-68-68-166z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "theater_comedy"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1116,
+ "paths": [
+ "M768 576v-64h-170v64h170zM768 704v-64h-170v64h170zM554 384v-214h-84v214h84zM512 768v-32q0-28-44-46t-84-18-84 18-44 46v32h256zM384 512q-28 0-46 18t-18 46 18 46 46 18 46-18 18-46-18-46-46-18zM854 298q34 0 59 26t25 60v470q0 34-25 59t-59 25h-684q-34 0-59-25t-25-59v-470q0-34 25-60t59-26h214v-128q0-34 26-59t60-25h84q34 0 60 25t26 59v128h214z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "badge"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1117,
+ "paths": [
+ "M554 244l384 268v426h-298v-212l-126-86-130 86v212h-298v-426l384-268v-202h212l-42 66 42 62h-128v74z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "festival"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1118,
+ "paths": [
+ "M292 554q-50-4-86-41t-36-87q0-46 31-82t77-44q8-90 75-152t159-62 159 62 75 152q46 8 77 44t31 82q0 50-35 87t-85 41l-220 428zM376 530l138 264 136-264q-2-2-7-6t-7-6q-58 36-124 36t-124-36q-2 2-4 5t-4 5-4 2z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "icecream"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1119,
+ "paths": [
+ "M854 726q36 0 61 25t25 59l-342 128-300-84v-384h84l310 114q34 14 34 48 0 20-15 35t-37 15h-120l-74-28-14 40 88 32h300zM682 138q46-52 116-52 58 0 99 41t41 99q0 44-42 105t-84 102-130 121q-88-80-130-121t-84-102-42-105q0-58 42-99t100-41q68 0 114 52zM42 470h172v468h-172v-468z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "volunteer_activism"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1120,
+ "paths": [
+ "M626 740q56-114 56-228 0-116-56-228l-58 30q50 98 50 198t-50 200zM492 684q42-74 42-166 0-94-42-174l-56 28q34 72 34 146 0 72-34 134zM360 616q24-52 24-106 0-48-24-102l-58 26q18 36 18 76 0 42-18 80zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "contactless"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1121,
+ "paths": [
+ "M810 726q18 0 31-13t13-31-13-30-31-12-30 12-12 30 12 31 30 13zM810 554q52 0 90 38t38 90-38 90-90 38-90-38-38-90 38-90 90-38zM214 256h212v86h-212v-86zM298 726q18 0 31-13t13-31h-86q0 18 12 31t30 13zM810 298v144l-192 240h-192q0 52-38 90t-90 38-90-38-38-90h-84v-128q0-70 50-120t120-50h170v214h150l150-186v-114h-128v-84h128q34 0 59 25t25 59z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "delivery_dining"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1122,
+ "paths": [
+ "M298 682v-84h172v84h192q20 0 20 22v42q0 22-20 22h-556q-20 0-20-22v-42q0-22 20-22h192zM768 678l-18-18q-28-30-48-80t-20-90v-404h256v406q0 98-64 168l-20 22v172h84v84h-170v-260zM662 938h-556q-20 0-20-20v-64h596v64q0 20-20 20zM768 342h86v-172h-86v172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "brunch_dining"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1123,
+ "paths": [
+ "M384 170h254l172 144 68-66 60 60-118 118h-616l-118-118 60-60 68 66zM224 470h576l-30 384h-516z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "takeout_dining"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1124,
+ "paths": [
+ "M938 470v84h-178l138 138-60 62-198-200h-86v86l200 198-62 60-138-138v178h-84v-178l-138 138-62-60 200-198v-86h-86l-198 200-60-62 138-138h-178v-84h178l-138-138 60-62 198 200h86v-86l-200-198 62-60 138 138v-178h84v178l138-138 62 60-200 198v86h86l198-200 60 62-138 138h178z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "ac_unit"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1125,
+ "paths": [
+ "M640 470h214l-172-172h-42v172zM746 746q26 0 45-19t19-45-19-45-45-19-45 19-19 45 19 45 45 19zM554 470v-172h-170v172h170zM256 746q28 0 46-19t18-45-18-45-46-19-46 19-18 45 18 45 46 19zM128 470h170v-172h-170v172zM726 214l256 256v212h-108q0 52-38 90t-90 38-90-38-38-90h-234q0 52-38 90t-90 38-90-38-38-90h-86v-384q0-36 25-60t61-24h598z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "airport_shuttle"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1126,
+ "paths": [
+ "M794 282q96 0 163 68t67 162-67 162-163 68h-2q-38 0-85-20t-77-48l-54-48 64-56 50 42q44 44 104 44t102-42 42-102-42-102-102-42-102 42q-142 124-180 160l-120 106q-66 66-162 66t-163-68-67-162 67-162 163-68h2q40 0 87 20t75 48l54 48-66 56-48-42q-44-44-104-44t-102 42-42 102 42 102 102 42 102-42q142-124 180-160l120-106q66-66 162-66z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "all_inclusive"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1127,
+ "paths": [
+ "M742 376q-100-100-231-132t-255 10q96-12 211 37t213 147l-244 244q-98-98-147-213t-37-211q-42 124-10 255t132 231l-122 122q-126-126-126-305t126-305q0-2 2-2 140-140 336-124 162 12 274 124zM558 622l62-62 274 276-62 60z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "beach_access"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1128,
+ "paths": [
+ "M598 298v-84h-172v84h172zM854 298q34 0 59 26t25 60v128q0 34-25 60t-59 26h-256v-86h-172v86h-256q-36 0-60-25t-24-61v-128q0-34 25-60t59-26h170v-84l86-86h170l86 86v84h172zM426 682h172v-42h298v170q0 36-25 61t-61 25h-596q-36 0-61-25t-25-61v-170h298v42z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "business_center"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1129,
+ "paths": [
+ "M704 384q28 0 46-18t18-46-18-46-46-18-46 18-18 46 18 46 46 18zM704 768q28 0 46-18t18-46-18-46-46-18-46 18-18 46 18 46 46 18zM512 576q28 0 46-18t18-46-18-46-46-18-46 18-18 46 18 46 46 18zM320 384q28 0 46-18t18-46-18-46-46-18-46 18-18 46 18 46 46 18zM320 768q28 0 46-18t18-46-18-46-46-18-46 18-18 46 18 46 46 18zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "casino"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1130,
+ "paths": [
+ "M320 598h384q-24 58-76 93t-116 35-116-35-76-93zM512 810q102 0 181-60t105-154q2 0 6 1t6 1q34 0 60-26t26-60-26-60-60-26q-2 0-6 1t-6 1q-26-94-105-154t-181-60-181 60-105 154q-2 0-6-1t-6-1q-34 0-60 26t-26 60 26 60 60 26q2 0 6-1t6-1q26 94 105 154t181 60zM978 540q-8 44-42 84t-76 52q-44 94-139 157t-209 63q-142 0-254-98-62-54-92-122-42-12-77-52t-43-84q-4-16-4-28t4-28q8-44 43-84t77-52q34-76 92-124 108-96 254-96t254 96q62 58 92 124 42 12 77 52t43 84q4 16 4 28t-4 28zM352 448q0-22 16-38t38-16 37 16 15 38-15 38-37 16-38-16-16-38zM566 448q0-22 15-38t37-16 38 16 16 38-16 38-38 16-37-16-15-38z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "child_care"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1131,
+ "paths": [
+ "M726 854q26 0 45-19t19-45-19-45-45-19-45 19-19 45 19 45 45 19zM342 854q26 0 45-19t19-45-19-45-45-19-45 19-19 45 19 45 45 19zM824 678q50 46 50 112 0 62-43 105t-105 43q-56 0-98-37t-50-91h-90q-8 54-49 91t-97 37q-62 0-106-43t-44-105q0-88 78-132l-90-188h-94v-86h148l40 86h622q0 48-21 109t-51 99zM554 86q142 0 242 100t100 240h-342v-340z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "child_friendly"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1132,
+ "paths": [
+ "M878 634l60 62-90 90 60 62-60 60-62-60-90 90-62-60-60 60-62-60 152-152-366-366-152 152-60-62 60-60-60-62 90-90-60-62 60-60 62 60 90-90 62 60 60-60 62 60-152 152 366 366 152-152 60 62z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fitness_center"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1133,
+ "paths": [
+ "M726 252l-256 132v386q92 4 152 28t60 56q0 34-75 59t-181 25-181-25-75-59q0-50 128-74v74h86v-768zM768 832q0-28 18-46t46-18 46 18 18 46-18 46-46 18-46-18-18-46z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "golf_course"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1134,
+ "paths": [
+ "M626 250q66 64 54 158l-2 18h-82l6-24q10-54-32-96-68-68-56-160l2-18h82l-4 26q-10 54 28 94zM796 250q68 66 56 158l-4 18h-80l4-24q10-54-28-94l-4-2q-68-68-56-160l4-18h80l-4 26q-10 54 28 94zM810 854v-256h-84v256h84zM640 854v-256h-86v256h86zM470 854v-256h-86v256h86zM298 854v-256h-84v256h84zM476 512h462v342q0 34-25 59t-59 25h-684q-34 0-59-25t-25-59v-342h128v-32q0-40 29-68t67-28q40 0 72 32l58 66q8 10 36 30zM214 256q0-36 24-61t60-25 61 25 25 61-25 61-61 25-60-25-24-61z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hot_tub"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1135,
+ "paths": [
+ "M342 512h84v214h-84v-214zM342 214h84v128h-84v-128zM768 384v-214h-512v214h512zM768 854v-386h-512v386h512zM768 86q36 0 61 24t25 60v684q0 34-26 59t-60 25h-512q-34 0-60-25t-26-59v-684q0-36 25-60t61-24h512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "kitchen"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1136,
+ "paths": [
+ "M598 234q0-44 31-75t75-31 75 31 31 75-31 76-75 32-75-32-31-76zM370 512q-24 0-50-16-8-6-32-16l138-138-42-44q-64-64-170-64v-106q82 0 134 19t100 67l274 272q-12 8-18 10-26 16-50 16-22 0-48-16-44-26-94-26t-94 26q-26 16-48 16zM938 704q-46 0-92-28-22-14-50-14-26 0-48 14-46 28-94 28-46 0-92-28-22-14-50-14-26 0-48 14-46 28-94 28-46 0-92-28-22-14-50-14-26 0-48 14-46 28-94 28v-86q26 0 48-14 46-28 94-28 46 0 92 28 22 14 50 14 26 0 48-14 46-28 94-28 46 0 92 28 22 14 50 14 26 0 48-14 46-28 94-28 46 0 92 28 22 14 50 14v86zM938 896q-46 0-92-28-22-14-50-14-26 0-48 14-46 28-94 28-46 0-92-28-22-14-50-14-26 0-48 14-46 28-94 28t-94-28q-22-14-48-14-28 0-50 14-46 28-92 28v-86q26 0 48-14 46-28 94-28 46 0 92 28 22 14 50 14 26 0 48-14 46-28 94-28t94 28q22 14 48 14 28 0 50-14 46-28 92-28 48 0 94 28 22 14 48 14v86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pool"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1137,
+ "paths": [
+ "M590 332q126 26 212 123t94 227h-768q8-130 94-227t212-123q-8-16-8-34 0-36 25-60t61-24 61 24 25 60q0 18-8 34zM86 726h852v84h-852v-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "room_service"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1138,
+ "paths": [
+ "M726 680l-126-126h126v126zM618 372q-58 0-100-43t-42-101 42-100 100-42v64q-34 0-56 21t-22 53q0 34 23 60t55 26h66q60 0 104 39t44 95v68h-64v-54q0-40-25-63t-59-23h-66zM804 208q60 28 97 86t37 130v88h-64v-88q0-72-49-123t-121-51v-64q32 0 55-23t23-57h64q0 60-42 102zM768 554h64v128h-64v-128zM874 554h64v128h-64v-128zM86 256l52-54 726 726-54 54-298-300h-426v-128h298z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "smoke_free"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1139,
+ "paths": [
+ "M684 436q62 0 105 38t43 96v70h-64v-56q0-40-25-63t-59-23h-66q-58 0-100-43t-42-101 42-100 100-42v64q-34 0-56 21t-22 53q0 34 23 60t55 26h66zM804 330q60 28 97 86t37 128v96h-64v-96q0-72-49-122t-121-50v-64q32 0 55-23t23-57q0-32-23-55t-55-23v-64q58 0 100 42t42 100q0 60-42 102zM768 682h64v128h-64v-128zM874 682h64v128h-64v-128zM86 682h640v128h-640v-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "smoking_rooms"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1140,
+ "paths": [
+ "M660 410q-84 46-148 114-64-68-148-114 6-78 50-173t100-151q134 134 146 324zM86 426q136 0 248 66t178 168q66-102 178-168t248-66q0 168-95 302t-247 188q-34 12-84 22-42-6-84-22-152-54-247-188t-95-302z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "spa"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1141,
+ "paths": [
+ "M598 490l-362-362h362v42h212v534l-84-86v-362h-128v234zM470 470h-44v84h86v-42l416 416-56 54-274-276v190h-470v-86h86v-488l-172-170 54-56z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "no_meeting_room"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1142,
+ "paths": [
+ "M426 470v84h86v-84h-86zM598 256v640h-470v-86h86v-682h384v42h212v640h86v86h-170v-640h-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "meeting_room"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1143,
+ "paths": [
+ "M1022 388q2 2 2 5t-2 5l-50 64q-4 4-8 4l-30-6-14 44q-4 8-13 8t-13-8l-28-60-46-10-94 224 34 272q0 8-8 8h-40q-4 0-8-6l-40-162-20-34-50 196q0 6-8 6h-42q-8 0-8-8l46-270h-270l-70 132 16 136q4 10-8 10h-40q-6 0-8-4l-56-204-68 78 12 120q4 10-8 10h-44q-8 0-8-4l-26-112 42-164v-288q-46-18-46-60h548q96 2 190-66-16-44 12-72 56 40 72 50 14 8 23-3t5-25q-18-56-90-84-2 0-6-2-24-6-20-16 0-6 8-6 58 8 99 45t55 71l8 6q6 8 13 16t12 23 3 31q0 10 4 14z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "goat"
+ ],
+ "grid": 24
+ }
+ ],
+ "invisible": true
+ },
+ {
+ "selection": [
+ {
+ "id": 0,
+ "order": 0
+ },
+ {
+ "id": 1,
+ "order": 0
+ },
+ {
+ "id": 2,
+ "order": 0
+ },
+ {
+ "id": 3,
+ "order": 0
+ },
+ {
+ "id": 4,
+ "order": 0
+ },
+ {
+ "id": 5,
+ "order": 0
+ },
+ {
+ "id": 6,
+ "order": 0
+ },
+ {
+ "id": 7,
+ "order": 0
+ },
+ {
+ "id": 8,
+ "order": 0
+ },
+ {
+ "id": 9,
+ "order": 0
+ },
+ {
+ "id": 10,
+ "order": 0
+ },
+ {
+ "id": 11,
+ "order": 0
+ },
+ {
+ "id": 12,
+ "order": 0
+ },
+ {
+ "id": 13,
+ "order": 0
+ },
+ {
+ "id": 14,
+ "order": 0
+ },
+ {
+ "id": 15,
+ "order": 0
+ },
+ {
+ "id": 16,
+ "order": 0
+ },
+ {
+ "id": 17,
+ "order": 0
+ },
+ {
+ "id": 18,
+ "order": 0
+ },
+ {
+ "id": 19,
+ "order": 0
+ },
+ {
+ "id": 20,
+ "order": 0
+ },
+ {
+ "id": 21,
+ "order": 0
+ },
+ {
+ "id": 22,
+ "order": 0
+ },
+ {
+ "id": 23,
+ "order": 0
+ },
+ {
+ "id": 24,
+ "order": 0
+ },
+ {
+ "id": 25,
+ "order": 0
+ },
+ {
+ "id": 26,
+ "order": 0
+ },
+ {
+ "id": 27,
+ "order": 0
+ },
+ {
+ "id": 28,
+ "order": 0
+ },
+ {
+ "id": 29,
+ "order": 0
+ },
+ {
+ "id": 30,
+ "order": 0
+ },
+ {
+ "id": 31,
+ "order": 0
+ },
+ {
+ "id": 32,
+ "order": 0
+ },
+ {
+ "id": 33,
+ "order": 0
+ },
+ {
+ "id": 34,
+ "order": 0
+ },
+ {
+ "id": 35,
+ "order": 0
+ },
+ {
+ "id": 36,
+ "order": 0
+ },
+ {
+ "id": 37,
+ "order": 0
+ },
+ {
+ "id": 38,
+ "order": 0
+ },
+ {
+ "id": 39,
+ "order": 0
+ },
+ {
+ "id": 40,
+ "order": 0
+ },
+ {
+ "id": 41,
+ "order": 0
+ },
+ {
+ "id": 42,
+ "order": 0
+ },
+ {
+ "id": 43,
+ "order": 0
+ },
+ {
+ "id": 44,
+ "order": 0
+ },
+ {
+ "id": 45,
+ "order": 0
+ },
+ {
+ "id": 46,
+ "order": 0
+ },
+ {
+ "id": 47,
+ "order": 0
+ },
+ {
+ "id": 48,
+ "order": 0
+ },
+ {
+ "id": 49,
+ "order": 0
+ },
+ {
+ "id": 50,
+ "order": 0
+ },
+ {
+ "id": 51,
+ "order": 0
+ },
+ {
+ "id": 52,
+ "order": 0
+ },
+ {
+ "id": 53,
+ "order": 0
+ },
+ {
+ "id": 54,
+ "order": 0
+ },
+ {
+ "id": 55,
+ "order": 0
+ },
+ {
+ "id": 56,
+ "order": 0
+ },
+ {
+ "id": 57,
+ "order": 0
+ },
+ {
+ "id": 58,
+ "order": 0
+ },
+ {
+ "id": 59,
+ "order": 0
+ },
+ {
+ "id": 60,
+ "order": 0
+ },
+ {
+ "id": 61,
+ "order": 0
+ },
+ {
+ "id": 62,
+ "order": 0
+ },
+ {
+ "id": 63,
+ "order": 0
+ },
+ {
+ "id": 64,
+ "order": 0
+ },
+ {
+ "id": 65,
+ "order": 0
+ },
+ {
+ "id": 66,
+ "order": 0
+ },
+ {
+ "id": 67,
+ "order": 0
+ },
+ {
+ "id": 68,
+ "order": 0
+ },
+ {
+ "id": 69,
+ "order": 0
+ },
+ {
+ "id": 70,
+ "order": 0
+ },
+ {
+ "id": 71,
+ "order": 0
+ },
+ {
+ "id": 72,
+ "order": 0
+ },
+ {
+ "id": 73,
+ "order": 0
+ },
+ {
+ "id": 74,
+ "order": 0
+ },
+ {
+ "id": 75,
+ "order": 0
+ },
+ {
+ "id": 76,
+ "order": 0
+ },
+ {
+ "id": 77,
+ "order": 0
+ },
+ {
+ "id": 78,
+ "order": 0
+ },
+ {
+ "id": 79,
+ "order": 0
+ },
+ {
+ "id": 80,
+ "order": 0
+ },
+ {
+ "id": 81,
+ "order": 0
+ },
+ {
+ "id": 82,
+ "order": 0
+ },
+ {
+ "id": 83,
+ "order": 0
+ },
+ {
+ "id": 84,
+ "order": 0
+ },
+ {
+ "id": 85,
+ "order": 0
+ },
+ {
+ "id": 86,
+ "order": 0
+ },
+ {
+ "id": 87,
+ "order": 0
+ },
+ {
+ "id": 88,
+ "order": 0
+ },
+ {
+ "id": 89,
+ "order": 0
+ },
+ {
+ "id": 90,
+ "order": 0
+ },
+ {
+ "id": 91,
+ "order": 0
+ },
+ {
+ "id": 92,
+ "order": 0
+ },
+ {
+ "id": 93,
+ "order": 0
+ },
+ {
+ "id": 94,
+ "order": 0
+ },
+ {
+ "id": 95,
+ "order": 0
+ },
+ {
+ "id": 96,
+ "order": 0
+ },
+ {
+ "id": 97,
+ "order": 0
+ },
+ {
+ "id": 98,
+ "order": 0
+ },
+ {
+ "id": 99,
+ "order": 0
+ },
+ {
+ "id": 100,
+ "order": 0
+ },
+ {
+ "id": 101,
+ "order": 0
+ },
+ {
+ "id": 102,
+ "order": 0
+ },
+ {
+ "id": 103,
+ "order": 0
+ },
+ {
+ "id": 104,
+ "order": 0
+ },
+ {
+ "id": 105,
+ "order": 0
+ },
+ {
+ "id": 106,
+ "order": 0
+ },
+ {
+ "id": 107,
+ "order": 0
+ },
+ {
+ "id": 108,
+ "order": 0
+ },
+ {
+ "id": 109,
+ "order": 0
+ },
+ {
+ "id": 110,
+ "order": 0
+ },
+ {
+ "id": 111,
+ "order": 0
+ },
+ {
+ "id": 112,
+ "order": 0
+ },
+ {
+ "id": 113,
+ "order": 0
+ },
+ {
+ "id": 114,
+ "order": 0
+ },
+ {
+ "id": 115,
+ "order": 0
+ },
+ {
+ "id": 116,
+ "order": 0
+ },
+ {
+ "id": 117,
+ "order": 0
+ },
+ {
+ "id": 118,
+ "order": 0
+ },
+ {
+ "id": 119,
+ "order": 0
+ },
+ {
+ "id": 120,
+ "order": 0
+ },
+ {
+ "id": 121,
+ "order": 0
+ },
+ {
+ "id": 122,
+ "order": 0
+ },
+ {
+ "id": 123,
+ "order": 0
+ },
+ {
+ "id": 124,
+ "order": 0
+ },
+ {
+ "id": 125,
+ "order": 0
+ },
+ {
+ "id": 126,
+ "order": 0
+ },
+ {
+ "id": 127,
+ "order": 0
+ },
+ {
+ "id": 128,
+ "order": 0
+ },
+ {
+ "id": 129,
+ "order": 0
+ },
+ {
+ "id": 130,
+ "order": 0
+ },
+ {
+ "id": 131,
+ "order": 0
+ },
+ {
+ "id": 132,
+ "order": 0
+ },
+ {
+ "id": 133,
+ "order": 0
+ },
+ {
+ "id": 134,
+ "order": 0
+ },
+ {
+ "id": 135,
+ "order": 0
+ },
+ {
+ "id": 136,
+ "order": 0
+ },
+ {
+ "id": 137,
+ "order": 0
+ },
+ {
+ "id": 138,
+ "order": 0
+ },
+ {
+ "id": 139,
+ "order": 0
+ },
+ {
+ "id": 140,
+ "order": 0
+ },
+ {
+ "id": 141,
+ "order": 0
+ },
+ {
+ "id": 142,
+ "order": 0
+ },
+ {
+ "id": 143,
+ "order": 0
+ },
+ {
+ "id": 144,
+ "order": 0
+ },
+ {
+ "id": 145,
+ "order": 0
+ },
+ {
+ "id": 146,
+ "order": 0
+ },
+ {
+ "id": 147,
+ "order": 0
+ },
+ {
+ "id": 148,
+ "order": 0
+ },
+ {
+ "id": 149,
+ "order": 0
+ },
+ {
+ "id": 150,
+ "order": 0
+ },
+ {
+ "id": 151,
+ "order": 0
+ },
+ {
+ "id": 152,
+ "order": 0
+ },
+ {
+ "id": 153,
+ "order": 0
+ },
+ {
+ "id": 154,
+ "order": 0
+ },
+ {
+ "id": 155,
+ "order": 0
+ },
+ {
+ "id": 156,
+ "order": 0
+ },
+ {
+ "id": 157,
+ "order": 0
+ },
+ {
+ "id": 158,
+ "order": 0
+ },
+ {
+ "id": 159,
+ "order": 0
+ },
+ {
+ "id": 160,
+ "order": 0
+ },
+ {
+ "id": 161,
+ "order": 0
+ },
+ {
+ "id": 162,
+ "order": 0
+ },
+ {
+ "id": 163,
+ "order": 0
+ },
+ {
+ "id": 164,
+ "order": 0
+ },
+ {
+ "id": 165,
+ "order": 0
+ },
+ {
+ "id": 166,
+ "order": 0
+ },
+ {
+ "id": 167,
+ "order": 0
+ },
+ {
+ "id": 168,
+ "order": 0
+ },
+ {
+ "id": 169,
+ "order": 0
+ },
+ {
+ "id": 170,
+ "order": 0
+ },
+ {
+ "id": 171,
+ "order": 0
+ },
+ {
+ "id": 172,
+ "order": 0
+ },
+ {
+ "id": 173,
+ "order": 0
+ },
+ {
+ "id": 174,
+ "order": 0
+ },
+ {
+ "id": 175,
+ "order": 0
+ },
+ {
+ "id": 176,
+ "order": 0
+ },
+ {
+ "id": 177,
+ "order": 0
+ },
+ {
+ "id": 178,
+ "order": 0
+ },
+ {
+ "id": 179,
+ "order": 0
+ },
+ {
+ "id": 180,
+ "order": 0
+ },
+ {
+ "id": 181,
+ "order": 0
+ },
+ {
+ "id": 182,
+ "order": 0
+ },
+ {
+ "id": 183,
+ "order": 0
+ },
+ {
+ "id": 184,
+ "order": 0
+ },
+ {
+ "id": 185,
+ "order": 0
+ },
+ {
+ "id": 186,
+ "order": 0
+ },
+ {
+ "id": 187,
+ "order": 0
+ },
+ {
+ "id": 188,
+ "order": 0
+ },
+ {
+ "id": 189,
+ "order": 0
+ },
+ {
+ "id": 190,
+ "order": 0
+ },
+ {
+ "id": 191,
+ "order": 0
+ },
+ {
+ "id": 192,
+ "order": 0
+ },
+ {
+ "id": 193,
+ "order": 0
+ },
+ {
+ "id": 194,
+ "order": 0
+ },
+ {
+ "id": 195,
+ "order": 0
+ },
+ {
+ "id": 196,
+ "order": 0
+ },
+ {
+ "id": 197,
+ "order": 0
+ },
+ {
+ "id": 198,
+ "order": 0
+ },
+ {
+ "id": 199,
+ "order": 0
+ },
+ {
+ "id": 200,
+ "order": 0
+ },
+ {
+ "id": 201,
+ "order": 0
+ },
+ {
+ "id": 202,
+ "order": 0
+ },
+ {
+ "id": 203,
+ "order": 0
+ },
+ {
+ "id": 204,
+ "order": 0
+ },
+ {
+ "id": 205,
+ "order": 0
+ },
+ {
+ "id": 206,
+ "order": 0
+ },
+ {
+ "id": 207,
+ "order": 0
+ },
+ {
+ "id": 208,
+ "order": 0
+ },
+ {
+ "id": 209,
+ "order": 0
+ },
+ {
+ "id": 210,
+ "order": 0
+ },
+ {
+ "id": 211,
+ "order": 0
+ },
+ {
+ "id": 212,
+ "order": 0
+ },
+ {
+ "id": 213,
+ "order": 0
+ },
+ {
+ "id": 214,
+ "order": 0
+ },
+ {
+ "id": 215,
+ "order": 0
+ },
+ {
+ "id": 216,
+ "order": 0
+ },
+ {
+ "id": 217,
+ "order": 0
+ },
+ {
+ "id": 218,
+ "order": 0
+ },
+ {
+ "id": 219,
+ "order": 0
+ },
+ {
+ "id": 220,
+ "order": 0
+ },
+ {
+ "id": 221,
+ "order": 0
+ },
+ {
+ "id": 222,
+ "order": 0
+ },
+ {
+ "id": 223,
+ "order": 0
+ },
+ {
+ "id": 224,
+ "order": 0
+ },
+ {
+ "id": 225,
+ "order": 0
+ },
+ {
+ "id": 226,
+ "order": 0
+ },
+ {
+ "id": 227,
+ "order": 0
+ },
+ {
+ "id": 228,
+ "order": 0
+ },
+ {
+ "id": 229,
+ "order": 0
+ },
+ {
+ "id": 230,
+ "order": 0
+ },
+ {
+ "id": 231,
+ "order": 0
+ },
+ {
+ "id": 232,
+ "order": 0
+ },
+ {
+ "id": 233,
+ "order": 0
+ },
+ {
+ "id": 234,
+ "order": 0
+ },
+ {
+ "id": 235,
+ "order": 0
+ },
+ {
+ "id": 236,
+ "order": 0
+ },
+ {
+ "id": 237,
+ "order": 0
+ },
+ {
+ "id": 238,
+ "order": 0
+ },
+ {
+ "id": 239,
+ "order": 0
+ },
+ {
+ "id": 240,
+ "order": 0
+ },
+ {
+ "id": 241,
+ "order": 0
+ },
+ {
+ "id": 242,
+ "order": 0
+ },
+ {
+ "id": 243,
+ "order": 0
+ },
+ {
+ "id": 244,
+ "order": 0
+ },
+ {
+ "id": 245,
+ "order": 0
+ },
+ {
+ "id": 246,
+ "order": 0
+ },
+ {
+ "id": 247,
+ "order": 0
+ },
+ {
+ "id": 248,
+ "order": 0
+ },
+ {
+ "id": 249,
+ "order": 0
+ },
+ {
+ "id": 250,
+ "order": 0
+ },
+ {
+ "id": 251,
+ "order": 0
+ },
+ {
+ "id": 252,
+ "order": 0
+ },
+ {
+ "id": 253,
+ "order": 0
+ },
+ {
+ "id": 254,
+ "order": 0
+ },
+ {
+ "id": 255,
+ "order": 0
+ },
+ {
+ "id": 256,
+ "order": 0
+ },
+ {
+ "id": 257,
+ "order": 0
+ },
+ {
+ "id": 258,
+ "order": 0
+ },
+ {
+ "id": 259,
+ "order": 0
+ },
+ {
+ "id": 260,
+ "order": 0
+ },
+ {
+ "id": 261,
+ "order": 0
+ },
+ {
+ "id": 262,
+ "order": 0
+ },
+ {
+ "id": 263,
+ "order": 0
+ },
+ {
+ "id": 264,
+ "order": 0
+ },
+ {
+ "id": 265,
+ "order": 0
+ },
+ {
+ "id": 266,
+ "order": 0
+ },
+ {
+ "id": 267,
+ "order": 0
+ },
+ {
+ "id": 268,
+ "order": 0
+ },
+ {
+ "id": 269,
+ "order": 0
+ },
+ {
+ "id": 270,
+ "order": 0
+ },
+ {
+ "id": 271,
+ "order": 0
+ },
+ {
+ "id": 272,
+ "order": 0
+ },
+ {
+ "id": 273,
+ "order": 0
+ },
+ {
+ "id": 274,
+ "order": 0
+ },
+ {
+ "id": 275,
+ "order": 0
+ },
+ {
+ "id": 276,
+ "order": 0
+ },
+ {
+ "id": 277,
+ "order": 0
+ },
+ {
+ "id": 278,
+ "order": 0
+ },
+ {
+ "id": 279,
+ "order": 0
+ },
+ {
+ "id": 280,
+ "order": 0
+ },
+ {
+ "id": 281,
+ "order": 0
+ }
+ ],
+ "id": 1,
+ "metadata": {
+ "name": "Feather",
+ "importSize": {
+ "width": 24,
+ "height": 24
+ },
+ "url": "https://feathericons.com/",
+ "designer": "Cole Bemis",
+ "designerURL": "http://colebemis.com/",
+ "license": "MIT",
+ "licenseURL": "https://github.com/feathericons/feather/blob/master/LICENSE"
+ },
+ "height": 1024,
+ "prevSize": 24,
+ "icons": [
+ {
+ "id": 0,
+ "paths": [
+ "M938.667 469.333h-170.667c-18.731 0-34.645 12.075-40.491 29.184l-87.509 262.571-215.509-646.571c-7.467-22.357-31.616-34.432-53.973-27.008-13.227 4.395-22.827 14.635-27.008 27.008l-118.272 354.816h-139.904c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h170.667c18.048-0.128 34.56-11.392 40.491-29.184l87.509-262.571 215.509 646.571c4.181 12.373 13.781 22.571 26.965 26.965 22.357 7.467 46.507-4.651 53.973-26.965l118.315-354.816h139.904c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "activity"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 1,
+ "paths": [
+ "M213.333 682.667h-42.667c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-426.667c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h682.667c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v426.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-42.667c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h42.667c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-426.667c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-682.667c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v426.667c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h42.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM544.768 612.693c-1.493-1.835-3.371-3.712-5.461-5.461-18.091-15.104-45.013-12.629-60.075 5.461l-213.333 256c-6.144 7.339-9.899 16.896-9.899 27.307 0 23.552 19.115 42.667 42.667 42.667h426.667c9.6 0.043 19.328-3.2 27.307-9.899 18.091-15.104 20.565-41.984 5.461-60.075zM512 706.645l122.24 146.688h-244.48z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "airplay"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 2,
+ "paths": [
+ "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM896 512c0 106.069-42.923 201.984-112.469 271.531s-165.461 112.469-271.531 112.469-201.984-42.923-271.531-112.469-112.469-165.461-112.469-271.531 42.923-201.984 112.469-271.531 165.461-112.469 271.531-112.469 201.984 42.923 271.531 112.469 112.469 165.461 112.469 271.531zM469.333 341.333v170.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-170.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM512 725.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "alert-circle"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 3,
+ "paths": [
+ "M335.36 42.667c-10.923 0-21.845 4.181-30.165 12.501l-250.027 250.027c-7.723 7.723-12.501 18.389-12.501 30.165v353.28c0 10.923 4.181 21.845 12.501 30.165l250.027 250.027c7.723 7.723 18.389 12.501 30.165 12.501h353.28c10.923 0 21.845-4.181 30.165-12.501l250.027-250.027c7.723-7.723 12.501-18.389 12.501-30.165v-353.28c0-10.923-4.181-21.845-12.501-30.165l-250.027-250.027c-7.723-7.723-18.389-12.501-30.165-12.501zM353.024 128h317.952l225.024 225.024v317.952l-225.024 225.024h-317.952l-225.024-225.024v-317.952zM469.333 341.333v170.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-170.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM512 725.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "alert-octagon"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 4,
+ "paths": [
+ "M475.648 186.624c3.115-5.248 7.893-10.325 14.251-14.165 10.069-6.101 21.589-7.595 32.256-4.949s20.224 9.216 26.197 19.115l361.216 603.008c2.987 5.12 5.077 11.435 5.461 18.517-0.64 15.701-5.077 25.216-12.075 32.384-7.68 7.851-18.219 12.715-29.568 12.843l-722.645-0.043c-6.485-0.043-13.696-1.749-20.523-5.717-10.197-5.888-17.024-15.317-19.883-25.899s-1.621-22.144 3.925-31.787zM402.432 142.763l-361.387 603.307c-18.005 31.189-21.589 66.133-13.141 97.707s29.013 60.075 59.648 77.739c19.797 11.435 41.643 17.067 62.933 17.152h722.901c35.797-0.384 67.712-15.104 90.581-38.485s36.864-55.595 36.48-90.923c-0.256-22.869-6.528-44.544-17.323-62.891l-361.557-603.605c-18.432-30.421-47.36-50.389-79.104-58.155s-66.603-3.456-96.811 14.891c-18.304 11.093-33.067 26.24-43.179 43.264zM469.333 384v170.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-170.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM512 768c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "alert-triangle"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 5,
+ "paths": [
+ "M768 384h-512c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h512c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM896 213.333h-768c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h768c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM896 554.667h-768c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h768c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM768 725.333h-512c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h512c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "align-center"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 6,
+ "paths": [
+ "M896 384h-768c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h768c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM896 213.333h-768c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h768c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM896 554.667h-768c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h768c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM896 725.333h-768c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h768c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "align-justify"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 7,
+ "paths": [
+ "M725.333 384h-597.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h597.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM896 213.333h-768c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h768c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM896 554.667h-768c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h768c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM725.333 725.333h-597.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h597.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "align-left"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 8,
+ "paths": [
+ "M896 384h-597.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h597.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM896 213.333h-768c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h768c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM896 554.667h-768c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h768c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM896 725.333h-597.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h597.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "align-right"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 9,
+ "paths": [
+ "M597.333 213.333c0 23.595-9.515 44.843-25.003 60.331s-36.736 25.003-60.331 25.003-44.843-9.515-60.331-25.003-25.003-36.736-25.003-60.331 9.515-44.843 25.003-60.331 36.736-25.003 60.331-25.003 44.843 9.515 60.331 25.003 25.003 36.736 25.003 60.331zM213.333 469.333h-128c-23.552 0-42.667 19.115-42.667 42.667 0 129.579 52.565 246.997 137.472 331.861s202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861c0-23.552-19.115-42.667-42.667-42.667h-128c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h82.987c-9.813 89.003-50.048 168.789-110.123 228.864s-139.861 100.309-228.864 110.123v-515.029c29.995-7.723 56.832-23.424 77.995-44.587 30.848-30.848 50.005-73.6 50.005-120.704s-19.157-89.856-50.005-120.661-73.557-50.005-120.661-50.005-89.856 19.157-120.661 50.005-50.005 73.557-50.005 120.661 19.157 89.856 50.005 120.661c21.163 21.205 48 36.907 77.995 44.629v515.029c-89.003-9.813-168.789-50.048-228.864-110.123s-100.309-139.861-110.123-228.864h82.987c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "anchor"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 10,
+ "paths": [
+ "M487.339 298.667l94.848-164.267c77.867 14.379 147.499 52.267 201.344 106.069 17.749 17.749 33.792 37.248 47.829 58.197h-221.611zM314.88 426.667l-94.805-164.139c6.528-7.637 13.312-14.976 20.395-22.059 64-64 150.4-105.472 246.4-111.659l-110.592 191.573zM339.541 640h-189.696c-14.165-40.021-21.845-83.115-21.845-128 0-61.013 14.208-118.656 39.509-169.899l110.933 192.171zM745.515 489.728l-61.056-105.728h189.696c14.165 40.021 21.845 83.115 21.845 128 0 61.013-14.208 118.656-39.509 169.899l-109.909-190.379zM537.088 895.189l172.032-297.856 94.805 164.181c-6.528 7.595-13.312 14.976-20.395 22.016-64 64-150.4 105.472-246.4 111.659zM456.533 978.091c1.963 0.341 3.925 0.597 5.931 0.64 16.256 1.707 32.811 2.603 49.536 2.603 129.579 0 246.997-52.565 331.861-137.472 15.616-15.616 30.123-32.299 43.392-49.963 1.792-2.005 3.371-4.139 4.693-6.357 56.235-77.355 89.387-172.629 89.387-275.541 0-65.664-13.525-128.213-37.888-185.003-0.683-1.877-1.451-3.669-2.347-5.376-23.595-53.077-56.747-100.992-97.237-141.483-72.576-72.576-168.96-121.557-276.395-134.229-1.963-0.341-3.925-0.597-5.931-0.64-16.256-1.707-32.811-2.603-49.536-2.603-129.579 0-246.997 52.565-331.861 137.472-15.616 15.573-30.123 32.299-43.392 49.963-1.792 2.005-3.371 4.139-4.736 6.357-56.192 77.355-89.344 172.629-89.344 275.541 0 65.664 13.525 128.213 37.888 185.003 0.683 1.877 1.451 3.669 2.347 5.376 23.595 53.077 56.747 100.992 97.237 141.483 72.576 72.576 168.96 121.557 276.395 134.229zM536.661 725.333l-94.848 164.267c-77.867-14.379-147.499-52.267-201.344-106.069-17.749-17.749-33.792-37.248-47.829-58.197h221.611zM659.84 512l-73.899 128h-147.883l-73.899-128 73.899-128h147.883z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "aperture"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 11,
+ "paths": [
+ "M170.667 384h682.667v469.333h-682.667zM42.667 85.333c-23.552 0-42.667 19.115-42.667 42.667v213.333c0 23.552 19.115 42.667 42.667 42.667h42.667v512c0 23.552 19.115 42.667 42.667 42.667h768c23.552 0 42.667-19.115 42.667-42.667v-512h42.667c23.552 0 42.667-19.115 42.667-42.667v-213.333c0-23.552-19.115-42.667-42.667-42.667zM85.333 170.667h853.333v128h-853.333zM426.667 554.667h170.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-170.667c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "archive"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 12,
+ "paths": [
+ "M780.501 481.835l-225.835 225.835v-494.336c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v494.336l-225.835-225.835c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l298.667 298.667c3.925 3.925 8.619 7.083 13.824 9.259 10.453 4.309 22.229 4.309 32.683 0 5.035-2.091 9.728-5.163 13.824-9.259l298.667-298.667c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow-down"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 13,
+ "paths": [
+ "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM896 512c0 106.069-42.923 201.984-112.469 271.531s-165.461 112.469-271.531 112.469-201.984-42.923-271.531-112.469-112.469-165.461-112.469-271.531 42.923-201.984 112.469-271.531 165.461-112.469 271.531-112.469 201.984 42.923 271.531 112.469 112.469 165.461 112.469 271.531zM469.333 341.333v238.336l-97.835-97.835c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l170.667 170.667c3.925 3.925 8.619 7.083 13.824 9.259 10.453 4.309 22.229 4.309 32.683 0 5.035-2.091 9.728-5.163 13.824-9.259l170.667-170.667c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-97.835 97.835v-238.336c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow-down-circle"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 14,
+ "paths": [
+ "M725.333 682.667h-323.669l353.835-353.835c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-353.835 353.835v-323.669c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v426.667c0 23.552 19.115 42.667 42.667 42.667h426.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow-down-left"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 15,
+ "paths": [
+ "M682.667 298.667v323.669l-353.835-353.835c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l353.835 353.835h-323.669c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h426.667c5.803 0 11.307-1.152 16.341-3.243s9.728-5.163 13.824-9.259c3.925-3.925 7.083-8.619 9.259-13.824 2.091-5.035 3.243-10.539 3.243-16.341v-426.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow-down-right"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 16,
+ "paths": [
+ "M542.165 780.501l-225.835-225.835h494.336c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-494.336l225.835-225.835c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-298.667 298.667c-4.096 4.096-7.168 8.789-9.259 13.824-2.176 5.205-3.243 10.795-3.243 16.341 0 10.923 4.181 21.845 12.501 30.165l298.667 298.667c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow-left"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 17,
+ "paths": [
+ "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM896 512c0 106.069-42.923 201.984-112.469 271.531s-165.461 112.469-271.531 112.469-201.984-42.923-271.531-112.469-112.469-165.461-112.469-271.531 42.923-201.984 112.469-271.531 165.461-112.469 271.531-112.469 201.984 42.923 271.531 112.469 112.469 165.461 112.469 271.531zM682.667 469.333h-238.336l97.835-97.835c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-170.667 170.667c-4.096 4.096-7.168 8.789-9.259 13.824-2.176 5.205-3.243 10.795-3.243 16.341 0 10.923 4.181 21.845 12.501 30.165l170.667 170.667c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-97.835-97.835h238.336c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow-left-circle"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 18,
+ "paths": [
+ "M481.835 243.499l225.835 225.835h-494.336c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h494.336l-225.835 225.835c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l298.667-298.667c3.925-3.925 7.083-8.619 9.259-13.824 4.309-10.453 4.309-22.229 0-32.683-2.091-5.035-5.163-9.728-9.259-13.824l-298.667-298.667c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow-right"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 19,
+ "paths": [
+ "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM896 512c0 106.069-42.923 201.984-112.469 271.531s-165.461 112.469-271.531 112.469-201.984-42.923-271.531-112.469-112.469-165.461-112.469-271.531 42.923-201.984 112.469-271.531 165.461-112.469 271.531-112.469 201.984 42.923 271.531 112.469 112.469 165.461 112.469 271.531zM341.333 554.667h238.336l-97.835 97.835c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l170.667-170.667c3.925-3.925 7.083-8.619 9.259-13.824 4.309-10.453 4.309-22.229 0-32.683-2.091-5.035-5.163-9.728-9.259-13.824l-170.667-170.667c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l97.835 97.835h-238.336c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow-right-circle"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 20,
+ "paths": [
+ "M243.499 542.165l225.835-225.835v494.336c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-494.336l225.835 225.835c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-298.667-298.667c-3.925-3.925-8.619-7.083-13.824-9.259s-10.795-3.243-16.341-3.243c-10.923 0-21.845 4.181-30.165 12.501l-298.667 298.667c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow-up"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 21,
+ "paths": [
+ "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM896 512c0 106.069-42.923 201.984-112.469 271.531s-165.461 112.469-271.531 112.469-201.984-42.923-271.531-112.469-112.469-165.461-112.469-271.531 42.923-201.984 112.469-271.531 165.461-112.469 271.531-112.469 201.984 42.923 271.531 112.469 112.469 165.461 112.469 271.531zM554.667 682.667v-238.336l97.835 97.835c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-170.667-170.667c-4.096-4.096-8.789-7.168-13.824-9.259-5.205-2.176-10.795-3.243-16.341-3.243-10.923 0-21.845 4.181-30.165 12.501l-170.667 170.667c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l97.835-97.835v238.336c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow-up-circle"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 22,
+ "paths": [
+ "M341.333 725.333v-323.669l353.835 353.835c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-353.835-353.835h323.669c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-426.667c-23.552 0-42.667 19.115-42.667 42.667v426.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow-up-left"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 23,
+ "paths": [
+ "M298.667 341.333h323.669l-353.835 353.835c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l353.835-353.835v323.669c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-426.667c0-5.803-1.152-11.307-3.243-16.341s-5.163-9.728-9.216-13.781c-0.043-0.043-0.043-0.043-0.085-0.085-3.925-3.925-8.619-7.083-13.781-9.216-5.035-2.091-10.539-3.243-16.341-3.243h-426.667c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow-up-right"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 24,
+ "paths": [
+ "M640 512c0 35.371-14.293 67.285-37.504 90.496s-55.125 37.504-90.496 37.504-67.285-14.293-90.496-37.504-37.504-55.125-37.504-90.496 14.293-67.285 37.504-90.496 55.125-37.504 90.496-37.504 67.285 14.293 90.496 37.504 37.504 55.125 37.504 90.496zM671.573 653.568c5.547 7.765 11.691 15.061 18.389 21.76 30.848 30.848 73.6 50.005 120.704 50.005s89.856-19.157 120.661-50.005 50.005-73.557 50.005-120.661v-42.667c0-129.579-52.608-246.997-137.472-331.861s-202.283-137.472-331.904-137.429-246.955 52.565-331.861 137.472-137.429 202.283-137.429 331.861 52.608 246.997 137.472 331.861 202.283 137.472 331.861 137.429c107.733 0 207.147-36.352 285.44-96.811 18.645-14.379 22.101-41.173 7.68-59.861s-41.173-22.101-59.861-7.68c-63.445 48.981-144.085 78.677-231.893 79.019-108.373-0.384-203.776-43.264-272.981-112.469-69.419-69.504-112.384-165.419-112.384-271.488s42.923-201.984 112.469-271.531 165.461-112.469 271.531-112.469 201.984 42.923 271.531 112.469 112.469 165.461 112.469 271.488v42.667c0 23.595-9.515 44.843-25.003 60.331s-36.736 25.003-60.331 25.003-44.843-9.515-60.331-25.003-25.003-36.736-25.003-60.331v-213.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667c-35.627-26.752-80-42.667-128-42.667-58.88 0-112.299 23.936-150.869 62.464s-62.464 91.989-62.464 150.869 23.936 112.299 62.464 150.869 91.989 62.464 150.869 62.464 112.299-23.936 150.869-62.464c2.987-2.987 5.931-6.101 8.747-9.259z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "at-sign"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 25,
+ "paths": [
+ "M639.403 658.091l32 241.152-137.429-82.475c-13.269-7.851-29.995-8.363-43.904 0l-137.429 82.475 32.043-241.109c39.296 15.829 82.304 24.533 127.317 24.533s88.021-8.747 127.403-24.576zM654.165 554.283c-2.475 1.28-4.821 2.773-6.955 4.48-39.253 24.448-85.547 38.571-135.211 38.571-70.699 0-134.656-28.587-181.035-74.965s-74.965-110.336-74.965-181.035 28.587-134.656 74.965-181.035 110.336-74.965 181.035-74.965 134.656 28.587 181.035 74.965 74.965 110.336 74.965 181.035-28.587 134.656-74.965 181.035c-11.861 11.861-24.875 22.571-38.869 31.915zM304.64 612.48l-48.256 363.221c-3.115 23.339 13.312 44.8 36.693 47.915 9.984 1.323 19.669-0.939 27.563-5.717l191.36-114.816 191.403 114.816c20.224 12.117 46.421 5.589 58.539-14.635 5.205-8.661 6.955-18.389 5.717-27.563l-48.213-363.307c11.947-9.173 23.296-19.115 33.92-29.739 61.696-61.696 99.968-147.072 99.968-241.323s-38.272-179.627-99.968-241.365-147.115-99.968-241.365-99.968-179.627 38.272-241.365 99.968-99.968 147.115-99.968 241.365 38.272 179.627 99.968 241.365c10.667 10.667 22.016 20.608 33.963 29.781z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "award"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 26,
+ "paths": [
+ "M554.667 853.333v-426.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v426.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM810.667 853.333v-682.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v682.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM298.667 853.333v-170.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v170.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bar-chart"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 27,
+ "paths": [
+ "M810.667 853.333v-426.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v426.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM554.667 853.333v-682.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v682.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM298.667 853.333v-256c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v256c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bar-chart-2"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 28,
+ "paths": [
+ "M128 213.333c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v341.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h597.333c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-341.333c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504zM128 298.667h597.333c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v341.333c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-597.333c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-341.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501zM1024 554.667v-85.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "battery"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 29,
+ "paths": [
+ "M213.333 725.333h-85.333c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-341.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h136.107c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-136.107c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v341.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h85.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM640 298.667h85.333c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v341.333c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-136.107c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h136.107c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-341.333c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-85.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM1024 554.667v-85.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM433.835 232.32l-170.667 256c-13.056 19.627-7.765 46.080 11.819 59.179 7.339 4.907 15.659 7.211 23.68 7.168h176.256l-126.464 189.653c-13.056 19.627-7.765 46.080 11.819 59.179s46.080 7.765 59.179-11.819l170.667-256c4.523-6.656 7.211-14.848 7.211-23.68 0-23.552-19.115-42.667-42.667-42.667h-176.256l126.464-189.653c13.056-19.627 7.765-46.080-11.819-59.179s-46.080-7.765-59.179 11.819z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "battery-charging"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 30,
+ "paths": [
+ "M725.333 341.333c0 171.136 40.405 278.187 78.976 341.333h-584.619c38.571-63.147 78.976-170.197 78.976-341.333 0-58.923 23.851-112.213 62.464-150.869s91.947-62.464 150.869-62.464 112.213 23.851 150.869 62.464 62.464 91.947 62.464 150.869zM810.667 341.333c0-82.475-33.493-157.184-87.467-211.2s-128.725-87.467-211.2-87.467-157.184 33.493-211.2 87.467-87.467 128.725-87.467 211.2c0 261.419-102.101 343.339-109.355 348.757-19.328 13.141-24.448 39.424-11.477 58.923 8.192 12.245 21.589 18.901 35.499 18.987h768c23.552 0 42.667-19.115 42.667-42.667 0-14.464-7.168-27.221-18.304-35.029-7.509-5.547-109.696-87.467-109.696-348.971zM548.907 874.581c-5.931 10.197-15.317 17.024-25.941 19.84s-22.187 1.579-32.384-4.309c-6.912-4.011-12.075-9.472-15.317-15.232-11.691-20.48-37.717-27.605-58.197-15.915s-27.605 37.717-15.915 58.197c10.667 18.731 26.581 35.115 46.635 46.763 30.549 17.749 65.493 21.376 97.109 12.971s60.117-28.928 77.824-59.477c11.819-20.395 4.864-46.507-15.488-58.325s-46.507-4.864-58.325 15.488z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bell"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 31,
+ "paths": [
+ "M548.907 874.581c-5.931 10.197-15.317 17.024-25.941 19.84s-22.187 1.579-32.384-4.309c-6.912-4.011-12.075-9.472-15.317-15.232-11.691-20.48-37.717-27.605-58.197-15.915s-27.605 37.717-15.915 58.197c10.667 18.731 26.581 35.115 46.635 46.763 30.549 17.749 65.493 21.376 97.109 12.971s60.117-28.928 77.824-59.477c11.819-20.395 4.864-46.507-15.488-58.325s-46.507-4.864-58.325 15.488zM810.667 340.352c-0.171-82.048-33.451-156.416-87.168-210.261-53.931-54.101-128.597-87.68-211.072-87.808-61.781-0.085-119.424 18.645-166.4 50.347-19.499 13.184-24.661 39.723-11.477 59.264s39.723 24.661 59.264 11.477c32.597-22.016 72.875-35.371 116.48-35.712 61.781 0.469 114.517 24.277 152.789 62.72 38.485 38.613 62.208 91.733 62.251 150.443-1.792 70.741 7.381 148.309 28.373 225.152 6.229 22.741 29.653 36.139 52.395 29.909s36.139-29.653 29.909-52.395c-18.901-69.333-26.965-138.667-25.344-200.875 0-0.213 0-0.469 0-0.683 0-0.128 0-0.256 0-0.384zM298.496 358.869l323.84 323.797h-402.645c37.205-60.928 76.075-162.645 78.805-323.797zM12.501 72.832l207.189 207.189c-4.523 21.035-6.613 41.984-6.357 61.867 0 260.864-102.101 342.784-109.355 348.203-19.328 13.141-24.448 39.424-11.477 58.923 8.192 12.245 21.589 18.901 35.499 18.987h579.669l243.499 243.499c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-938.667-938.667c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bell-off"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 32,
+ "paths": [
+ "M554.667 409.003v-263.339l131.669 131.669zM554.667 614.997l131.669 131.669-131.669 131.669zM247.168 307.499l204.501 204.501-204.501 204.501c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l161.835-161.835v366.336c0 10.923 4.181 21.845 12.501 30.165 16.683 16.683 43.691 16.683 60.331 0l234.667-234.667c16.683-16.683 16.683-43.691 0-60.331l-204.501-204.501 204.501-204.501c16.683-16.683 16.683-43.691 0-60.331l-234.667-234.667c-7.723-7.723-18.389-12.501-30.165-12.501-23.552 0-42.667 19.115-42.667 42.667v366.336l-161.835-161.835c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bluetooth"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 33,
+ "paths": [
+ "M298.667 469.333v-256h298.667c35.371 0 67.285 14.293 90.496 37.504s37.504 55.125 37.504 90.496-14.293 67.285-37.504 90.496-55.125 37.504-90.496 37.504zM213.333 512v341.333c0 23.552 19.115 42.667 42.667 42.667h384c58.88 0 112.299-23.936 150.869-62.464s62.464-91.989 62.464-150.869-23.936-112.299-62.464-150.869c-13.867-13.867-29.653-25.856-46.933-35.499 1.451-1.365 2.859-2.731 4.267-4.139 38.528-38.528 62.464-91.947 62.464-150.827s-23.936-112.299-62.464-150.869-91.989-62.464-150.869-62.464h-341.333c-23.552 0-42.667 19.115-42.667 42.667zM298.667 554.667h341.333c35.371 0 67.285 14.293 90.496 37.504s37.504 55.125 37.504 90.496-14.293 67.285-37.504 90.496-55.125 37.504-90.496 37.504h-341.333z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bold"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 34,
+ "paths": [
+ "M277.333 42.667c-41.216 0-78.635 16.768-105.6 43.733s-43.733 64.384-43.733 105.6v640c0 41.216 16.768 78.635 43.733 105.6s64.384 43.733 105.6 43.733h576c23.552 0 42.667-19.115 42.667-42.667v-853.333c0-23.552-19.115-42.667-42.667-42.667zM810.667 768v128h-533.333c-17.664 0-33.621-7.125-45.269-18.731s-18.731-27.605-18.731-45.269 7.125-33.621 18.731-45.269 27.605-18.731 45.269-18.731zM277.333 128h533.333v554.667h-533.333c-22.912 0-44.587 5.163-64 14.379v-505.045c0-17.664 7.125-33.621 18.731-45.269s27.605-18.731 45.269-18.731z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "book"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 35,
+ "paths": [
+ "M896 170.667v554.667h-256c-31.061 0-60.245 8.32-85.333 22.827v-449.493c0-35.371 14.293-67.285 37.504-90.496s55.125-37.504 90.496-37.504zM469.333 748.16c-25.088-14.507-54.272-22.827-85.333-22.827h-256v-554.667h213.333c35.371 0 67.285 14.293 90.496 37.504s37.504 55.125 37.504 90.496zM938.667 85.333h-256c-58.88 0-112.299 23.936-150.869 62.464-7.125 7.125-13.739 14.763-19.797 22.869-6.059-8.107-12.672-15.744-19.797-22.869-38.571-38.528-91.989-62.464-150.869-62.464h-256c-23.552 0-42.667 19.115-42.667 42.667v640c0 23.552 19.115 42.667 42.667 42.667h298.667c23.595 0 44.843 9.515 60.331 25.003s25.003 36.736 25.003 60.331c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667c0-23.595 9.515-44.843 25.003-60.331s36.736-25.003 60.331-25.003h298.667c23.552 0 42.667-19.115 42.667-42.667v-640c0-23.552-19.115-42.667-42.667-42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "book-open"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 36,
+ "paths": [
+ "M785.877 930.731c6.869 4.949 15.488 7.936 24.789 7.936 23.552 0 42.667-19.115 42.667-42.667v-682.667c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-426.667c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v682.667c-0.043 8.491 2.56 17.237 7.936 24.789 13.696 19.157 40.363 23.637 59.52 9.899l273.877-195.584zM768 813.099l-231.211-165.163c-15.147-10.837-34.944-10.325-49.579 0l-231.211 165.163v-599.765c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h426.667c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bookmark"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 37,
+ "paths": [
+ "M809.003 291.328l-297.003 171.819-297.003-171.819 275.456-157.397c4.779-2.731 9.899-4.48 15.147-5.291 9.301-1.451 18.987 0.128 27.904 5.291zM491.776 979.669c6.016 3.243 12.928 5.077 20.224 5.077 7.381 0 14.336-1.877 20.395-5.163 15.189-2.475 29.909-7.68 43.392-15.36l298.709-170.709c26.368-15.232 45.227-38.272 55.424-64.597 5.675-14.592 8.619-30.165 8.747-46.251v-341.333c0-20.395-4.821-39.723-13.397-56.917-0.939-3.029-2.219-5.973-3.883-8.832-1.963-3.371-4.267-6.357-6.912-8.96-1.323-1.835-2.731-3.669-4.139-5.419-9.813-12.203-21.845-22.528-35.456-30.507l-299.051-170.88c-26.027-15.019-55.467-19.84-83.371-15.531-15.488 2.432-30.507 7.637-44.245 15.488l-298.709 170.709c-16.341 9.429-29.824 21.888-40.149 36.267-2.56 2.56-4.864 5.547-6.784 8.832-1.664 2.901-2.987 5.888-3.925 8.96-1.707 3.413-3.243 6.955-4.608 10.496-5.632 14.635-8.576 30.208-8.704 45.995v341.632c0.043 30.293 10.581 58.155 28.331 80.128 9.813 12.203 21.845 22.528 35.456 30.507l299.051 170.88c13.824 7.979 28.587 13.099 43.605 15.445zM469.333 537.045v340.949l-277.12-158.336c-4.736-2.773-8.832-6.315-12.16-10.453-5.931-7.339-9.387-16.469-9.387-26.539v-318.379zM554.667 877.995v-340.949l298.667-172.757v318.379c-0.043 5.163-1.067 10.496-2.987 15.445-3.413 8.789-9.6 16.384-18.176 21.333z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "box"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 38,
+ "paths": [
+ "M384 256v-42.667c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h170.667c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v42.667zM384 853.333v-512h256v512zM298.667 341.333v512h-128c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-426.667c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501zM725.333 256v-42.667c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-170.667c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v42.667h-128c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v426.667c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h682.667c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-426.667c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504zM725.333 853.333v-512h128c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v426.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "briefcase"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 39,
+ "paths": [
+ "M298.667 85.333v42.667h-85.333c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v597.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h597.333c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-597.333c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-85.333v-42.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v42.667h-256v-42.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM853.333 384h-682.667v-128c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h85.333v42.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-42.667h256v42.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-42.667h85.333c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165zM170.667 469.333h682.667v384c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-597.333c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "calendar"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 40,
+ "paths": [
+ "M1024 810.667v-469.333c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-147.84l-72.661-109.013c-7.765-11.52-20.736-18.987-35.499-18.987h-256c-13.909 0.085-27.307 6.741-35.499 18.987l-72.661 109.013h-147.84c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v469.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h768c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496zM938.667 810.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-768c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-469.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h170.667c14.763 0 27.733-7.467 35.499-18.987l72.661-109.013h210.347l72.661 109.013c8.192 12.245 21.589 18.901 35.499 18.987h170.667c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165zM725.333 554.667c0-58.88-23.936-112.299-62.464-150.869s-91.989-62.464-150.869-62.464-112.299 23.936-150.869 62.464-62.464 91.989-62.464 150.869 23.936 112.299 62.464 150.869 91.989 62.464 150.869 62.464 112.299-23.936 150.869-62.464 62.464-91.989 62.464-150.869zM640 554.667c0 35.371-14.293 67.285-37.504 90.496s-55.125 37.504-90.496 37.504-67.285-14.293-90.496-37.504-37.504-55.125-37.504-90.496 14.293-67.285 37.504-90.496 55.125-37.504 90.496-37.504 67.285 14.293 90.496 37.504 37.504 55.125 37.504 90.496z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "camera"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 41,
+ "paths": [
+ "M384 170.667h233.173l72.661 109.013c8.192 12.245 21.589 18.901 35.499 18.987h170.667c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v398.507c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-398.507c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-147.84l-72.661-109.013c-7.765-11.52-20.736-18.987-35.499-18.987h-256c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM352.512 412.843c-6.229 6.955-12.075 14.379-17.451 22.272-33.28 48.597-43.648 106.197-33.621 159.787s40.619 103.509 89.216 136.747 106.197 43.648 159.787 33.621c37.845-7.083 73.813-24.405 103.424-51.072l139.136 139.136h-665.003c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-469.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h110.336zM444.288 383.915l-371.456-371.413c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l140.501 140.501h-25.003c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v469.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h750.336l72.832 72.832c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-566.101-566.101zM593.365 653.696c-17.067 14.336-37.333 23.68-58.667 27.691-32.256 6.059-66.688-0.213-95.872-20.181s-47.488-49.792-53.547-82.048 0.213-66.688 20.181-95.872c2.389-3.499 4.907-6.827 7.509-9.941z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "camera-off"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 42,
+ "paths": [
+ "M76.8 728.747c40.021 8.149 73.771 29.611 97.792 59.136 17.28 21.205 29.568 46.635 35.371 74.283 4.864 23.040 27.477 37.803 50.56 32.939s37.803-27.477 32.939-50.56c-8.619-40.96-26.88-78.805-52.693-110.549-36.053-44.288-86.955-76.629-146.901-88.875-23.083-4.693-45.611 10.197-50.347 33.28s10.197 45.611 33.28 50.347zM80.597 556.544c85.376 9.515 159.744 49.621 213.589 108.629 47.744 52.309 79.317 119.424 87.936 193.109 2.731 23.424 23.936 40.149 47.317 37.419s40.149-23.936 37.419-47.317c-10.709-91.733-50.091-175.445-109.653-240.725-67.328-73.771-160.555-124.075-267.221-135.936-23.424-2.603-44.501 14.251-47.104 37.675s14.251 44.501 37.675 47.104zM128 341.333v-85.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h682.667c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v512c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-256c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h256c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-512c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-682.667c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM85.333 896c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cast"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 43,
+ "paths": [
+ "M823.168 225.835l-439.168 439.168-183.168-183.168c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l213.333 213.333c16.683 16.683 43.691 16.683 60.331 0l469.333-469.333c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "check"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 44,
+ "paths": [
+ "M896 472.747v39.253c-0.043 106.027-43.051 201.941-112.64 271.445s-165.547 112.384-271.573 112.299-201.984-43.051-271.445-112.64-112.384-165.504-112.341-271.573 43.051-201.941 112.64-271.445 165.547-112.384 271.573-112.341c56.747 0.043 110.336 12.331 155.691 33.067 21.419 9.813 46.763 0.341 56.533-21.077s0.341-46.763-21.077-56.533c-56.619-25.856-122.283-40.747-191.104-40.789-129.579-0.085-246.997 52.437-331.947 137.259s-137.557 202.24-137.643 331.819 52.437 246.997 137.259 331.947 202.197 137.6 331.776 137.643 246.997-52.437 331.947-137.259 137.6-202.197 137.685-331.819v-39.253c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM908.501 140.501l-396.501 396.885-97.835-97.792c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l128 128c16.683 16.683 43.691 16.64 60.373 0l426.667-427.093c16.64-16.683 16.64-43.691-0.043-60.331s-43.691-16.64-60.331 0.043z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "check-circle"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 45,
+ "paths": [
+ "M353.835 499.499l128 128c16.683 16.683 43.691 16.683 60.331 0l426.667-426.667c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-396.501 396.501-97.835-97.835c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331zM853.333 512v298.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-597.333c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-597.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h469.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-469.333c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v597.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h597.333c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-298.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "check-square"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 46,
+ "paths": [
+ "M225.835 414.165l256 256c16.683 16.683 43.691 16.683 60.331 0l256-256c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-225.835 225.835-225.835-225.835c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chevron-down"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 47,
+ "paths": [
+ "M670.165 737.835l-225.835-225.835 225.835-225.835c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-256 256c-16.683 16.683-16.683 43.691 0 60.331l256 256c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chevron-left"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 48,
+ "paths": [
+ "M414.165 798.165l256-256c16.683-16.683 16.683-43.691 0-60.331l-256-256c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l225.835 225.835-225.835 225.835c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chevron-right"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 49,
+ "paths": [
+ "M798.165 609.835l-256-256c-16.683-16.683-43.691-16.683-60.331 0l-256 256c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l225.835-225.835 225.835 225.835c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chevron-up"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 50,
+ "paths": [
+ "M268.501 584.832l213.333 213.333c16.683 16.683 43.691 16.683 60.331 0l213.333-213.333c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-183.168 183.168-183.168-183.168c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331zM268.501 286.165l213.333 213.333c16.683 16.683 43.691 16.683 60.331 0l213.333-213.333c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-183.168 183.168-183.168-183.168c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chevrons-down"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 51,
+ "paths": [
+ "M499.499 695.168l-183.168-183.168 183.168-183.168c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-213.333 213.333c-16.683 16.683-16.683 43.691 0 60.331l213.333 213.333c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331zM798.165 695.168l-183.168-183.168 183.168-183.168c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-213.333 213.333c-16.683 16.683-16.683 43.691 0 60.331l213.333 213.333c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chevrons-left"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 52,
+ "paths": [
+ "M584.832 755.499l213.333-213.333c16.683-16.683 16.683-43.691 0-60.331l-213.333-213.333c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l183.168 183.168-183.168 183.168c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0zM286.165 755.499l213.333-213.333c16.683-16.683 16.683-43.691 0-60.331l-213.333-213.333c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l183.168 183.168-183.168 183.168c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chevrons-right"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 53,
+ "paths": [
+ "M755.499 439.168l-213.333-213.333c-16.683-16.683-43.691-16.683-60.331 0l-213.333 213.333c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l183.168-183.168 183.168 183.168c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331zM755.499 737.835l-213.333-213.333c-16.683-16.683-43.691-16.683-60.331 0l-213.333 213.333c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l183.168-183.168 183.168 183.168c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chevrons-up"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 54,
+ "paths": [
+ "M315.819 428.075l-95.744-165.589c6.485-7.595 13.312-14.933 20.395-22.016 69.547-69.547 165.461-112.469 271.531-112.469s201.984 42.923 271.531 112.469c17.749 17.749 33.792 37.248 47.829 58.197h-319.36c-58.88 0-112.299 23.936-150.869 62.464-19.072 19.072-34.56 41.728-45.355 66.944zM456.533 978.091c1.963 0.341 3.925 0.597 5.931 0.64 16.256 1.707 32.811 2.603 49.536 2.603 129.579 0 246.997-52.565 331.861-137.472s137.472-202.283 137.472-331.861c0-65.664-13.525-128.213-37.888-185.003-0.683-1.877-1.451-3.669-2.347-5.376-23.595-53.077-56.747-100.992-97.237-141.483-84.864-84.907-202.283-137.472-331.861-137.472s-246.997 52.565-331.861 137.472c-15.616 15.573-30.123 32.299-43.392 49.963-1.792 2.005-3.371 4.139-4.736 6.357-56.192 77.355-89.344 172.629-89.344 275.541 0 129.579 52.565 246.997 137.472 331.861 72.576 72.576 168.96 121.557 276.395 134.229zM537.387 723.84l-95.616 165.76c-77.867-14.379-147.499-52.267-201.301-106.069-69.547-69.547-112.469-165.461-112.469-271.531 0-61.013 14.208-118.699 39.552-169.899l155.435 268.885c10.069 19.2 22.997 36.651 38.144 51.84 38.571 38.571 91.989 62.507 150.869 62.507 8.576 0 17.067-0.512 25.387-1.493zM624.555 573.056c-0.64 0.939-1.28 1.963-1.877 2.944l-3.243 5.632c-4.907 7.509-10.581 14.507-16.896 20.864-23.253 23.211-55.168 37.504-90.539 37.504s-67.285-14.293-90.496-37.504c-7.083-7.083-13.312-14.976-18.603-23.509-0.469-1.024-1.024-2.005-1.579-2.987l-3.499-6.016c-8.832-17.408-13.824-37.12-13.824-57.984 0-35.371 14.293-67.285 37.504-90.496s55.125-37.504 90.496-37.504 67.285 14.293 90.496 37.504 37.504 55.125 37.504 90.496c0 22.101-5.589 42.923-15.445 61.056zM537.088 895.189l155.307-269.269c20.864-32.939 32.939-72.021 32.939-113.92 0-48-15.915-92.373-42.667-128h191.488c14.165 40.021 21.845 83.115 21.845 128 0 106.069-42.923 201.984-112.469 271.531-64 64-150.4 105.472-246.443 111.659z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chrome"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 55,
+ "paths": [
+ "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM896 512c0 106.069-42.923 201.984-112.469 271.531s-165.461 112.469-271.531 112.469-201.984-42.923-271.531-112.469-112.469-165.461-112.469-271.531 42.923-201.984 112.469-271.531 165.461-112.469 271.531-112.469 201.984 42.923 271.531 112.469 112.469 165.461 112.469 271.531z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "circle"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 56,
+ "paths": [
+ "M298.667 213.333c0 23.552 9.6 44.928 25.003 60.331s36.779 25.003 60.331 25.003h256c23.552 0 44.928-9.6 60.331-25.003s25.003-36.779 25.003-60.331h42.667c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v597.333c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-512c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-597.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501zM384 42.667c-23.552 0-44.928 9.6-60.331 25.003s-25.003 36.779-25.003 60.331h-42.667c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v597.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h512c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-597.333c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-42.667c0-23.552-9.6-44.928-25.003-60.331s-36.779-25.003-60.331-25.003zM384 128h256v85.333h-256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "clipboard"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 57,
+ "paths": [
+ "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM896 512c0 106.069-42.923 201.984-112.469 271.531s-165.461 112.469-271.531 112.469-201.984-42.923-271.531-112.469-112.469-165.461-112.469-271.531 42.923-201.984 112.469-271.531 165.461-112.469 271.531-112.469 201.984 42.923 271.531 112.469 112.469 165.461 112.469 271.531zM469.333 256v256c0 16.597 9.472 31.019 23.595 38.144l170.667 85.333c21.077 10.539 46.72 2.005 57.259-19.072s2.005-46.72-19.072-57.259l-147.115-73.515v-229.632c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "clock"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 58,
+ "paths": [
+ "M768 469.333c47.147 0 89.728 19.072 120.661 50.005s50.005 73.515 50.005 120.661-19.072 89.728-50.005 120.661-73.515 50.005-120.661 50.005h-383.787c-62.421-0.341-121.728-19.669-170.88-53.675-56.917-39.339-100.181-98.304-118.784-170.325-20.608-79.872-6.955-160.469 31.915-226.347s102.741-116.864 182.613-137.515 160.469-6.955 226.347 31.915 116.864 102.741 137.515 182.613c4.907 18.56 21.547 32 41.301 32zM768 384h-22.187c-30.933-87.765-91.435-158.208-167.040-202.795-84.608-49.877-188.373-67.541-291.029-41.003s-184.917 92.16-234.795 176.768-67.499 188.373-41.003 291.029c23.893 92.544 79.659 168.576 152.875 219.179 63.061 43.648 139.136 68.395 218.965 68.821h384.213c70.699 0 134.741-28.715 181.035-74.965s74.965-110.336 74.965-181.035-28.715-134.741-74.965-181.035-110.336-74.965-181.035-74.965z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cloud"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 59,
+ "paths": [
+ "M298.667 810.667v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-85.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM298.667 554.667v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-85.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM640 810.667v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-85.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM640 554.667v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-85.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM469.333 896v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-85.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM469.333 640v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-85.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM870.443 746.496c64.725-28.373 111.915-80.341 135.723-141.312s24.405-131.157-3.925-195.883c-24.491-55.936-66.688-98.816-117.419-124.8-35.669-18.261-75.563-28.16-116.48-28.501h-22.528c-30.933-87.765-91.435-158.208-167.040-202.795-84.608-49.877-188.373-67.499-291.029-41.003s-184.917 92.203-234.795 176.811-67.499 188.373-41.003 291.029c21.717 84.053 69.717 154.581 132.224 204.075 18.475 14.635 45.312 11.52 59.947-6.955s11.52-45.312-6.955-59.947c-48.299-38.272-85.675-92.971-102.613-158.549-20.608-79.829-6.955-160.427 31.915-226.347s102.741-116.864 182.613-137.515 160.469-6.955 226.347 31.915 116.864 102.741 137.515 182.613c4.907 18.56 21.547 32 41.301 32h53.419c27.605 0.213 54.4 6.912 78.251 19.115 33.835 17.323 61.781 45.781 78.165 83.072 18.901 43.179 18.56 89.856 2.645 130.603s-47.317 75.307-90.496 94.208c-21.589 9.472-31.403 34.603-21.973 56.192s34.603 31.403 56.192 21.973z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cloud-drizzle"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 60,
+ "paths": [
+ "M819.157 762.88c69.248-14.080 126.336-54.955 162.475-109.483s51.541-123.051 37.461-192.299c-12.928-63.616-48.469-116.992-96.725-153.259-43.435-32.725-97.237-51.627-154.197-51.84h-22.357c-30.933-87.765-91.435-158.208-167.040-202.795-84.608-49.877-188.373-67.499-291.029-41.003s-184.917 92.245-234.795 176.811-67.499 188.373-41.003 291.029c25.472 98.688 87.168 178.517 167.211 228.907 6.101 3.84 12.288 7.509 18.603 11.008 20.608 11.435 46.592 3.968 57.984-16.64s3.968-46.592-16.64-57.984c-4.907-2.731-9.771-5.589-14.507-8.576-62.379-39.296-110.208-101.291-130.048-178.048-20.608-79.872-6.955-160.469 31.872-226.347s102.741-116.864 182.613-137.515 160.469-6.955 226.347 31.872 116.864 102.741 137.515 182.613c4.949 18.56 21.589 32 41.344 32h53.589c38.229 0.171 74.24 12.8 103.253 34.645 32.171 24.192 55.765 59.605 64.384 102.059 9.387 46.208-0.811 91.733-24.96 128.213s-62.123 63.616-108.331 73.003c-23.083 4.693-38.016 27.221-33.323 50.304s27.221 38.016 50.304 33.323zM519.168 445.653l-170.667 256c-13.056 19.627-7.765 46.080 11.819 59.179 7.339 4.907 15.659 7.211 23.68 7.168h176.256l-126.464 189.653c-13.056 19.627-7.765 46.080 11.819 59.179s46.080 7.765 59.179-11.819l170.667-256c4.523-6.656 7.211-14.848 7.211-23.68 0-23.552-19.115-42.667-42.667-42.667h-176.256l126.464-189.653c13.056-19.627 7.765-46.080-11.819-59.179s-46.080-7.765-59.179 11.819z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cloud-lightning"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 61,
+ "paths": [
+ "M1003.989 739.84c27.563-65.067 26.112-135.253 1.536-195.925s-72.363-112.085-137.429-139.648c-33.109-13.995-67.755-20.608-100.565-20.267h-21.589c-26.453-75.947-75.136-139.093-137.003-183.851-55.381-40.021-121.344-65.323-191.445-71.979-23.467-2.219-44.288 14.976-46.507 38.443s14.976 44.288 38.443 46.507c54.869 5.205 106.368 25.003 149.547 56.192 54.741 39.595 96.085 97.536 113.963 167.851 4.779 18.645 21.461 32.171 41.301 32.171h54.229c20.907-0.213 43.947 4.011 66.347 13.525 43.392 18.389 75.221 52.565 91.648 93.099s17.365 87.211-1.024 130.603c-9.173 21.717 0.939 46.72 22.656 55.936s46.72-0.939 55.936-22.656zM207.104 267.435l543.232 543.232h-366.763c-40.96 0.427-81.195-7.339-118.357-22.485-61.056-24.875-113.877-69.76-148.096-131.627-39.893-72.192-46.805-153.643-25.643-227.157 18.432-64 58.027-121.771 115.584-162.005zM12.501 72.832l133.504 133.547c-67.456 51.2-114.176 121.856-136.533 199.467-27.179 94.379-18.347 199.253 32.981 292.053 43.947 79.488 112.043 137.344 190.549 169.344 47.659 19.371 99.157 29.269 151.424 28.757h383.573c20.864-0.043 41.259-2.56 60.459-7.211l122.709 122.709c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-938.667-938.667c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cloud-off"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 62,
+ "paths": [
+ "M640 554.667v341.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-341.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM298.667 554.667v341.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-341.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM469.333 640v341.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-341.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM870.443 746.496c64.725-28.373 111.915-80.341 135.723-141.312s24.405-131.157-3.925-195.883c-24.491-55.936-66.688-98.816-117.419-124.8-35.669-18.261-75.563-28.16-116.48-28.501h-22.528c-30.933-87.765-91.435-158.208-167.040-202.795-84.608-49.877-188.373-67.499-291.029-41.003s-184.917 92.203-234.795 176.811-67.499 188.373-41.003 291.029c21.717 84.053 69.717 154.581 132.224 204.075 18.475 14.635 45.312 11.52 59.947-6.955s11.52-45.312-6.955-59.947c-48.299-38.272-85.675-92.971-102.613-158.549-20.608-79.829-6.955-160.427 31.915-226.347s102.741-116.864 182.613-137.515 160.469-6.955 226.347 31.915 116.864 102.741 137.515 182.613c4.907 18.56 21.547 32 41.301 32h53.419c27.605 0.213 54.4 6.912 78.251 19.115 33.835 17.323 61.781 45.781 78.165 83.072 18.901 43.179 18.56 89.856 2.645 130.603s-47.317 75.307-90.496 94.208c-21.589 9.472-31.403 34.603-21.973 56.192s34.603 31.403 56.192 21.973z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cloud-rain"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 63,
+ "paths": [
+ "M870.443 789.163c64.725-28.373 111.915-80.341 135.723-141.312s24.405-131.157-3.925-195.883c-24.491-55.936-66.688-98.816-117.419-124.8-35.669-18.261-75.563-28.16-116.48-28.501h-22.528c-30.933-87.765-91.435-158.208-167.040-202.795-84.608-49.877-188.373-67.499-291.029-41.003s-184.917 92.203-234.795 176.811-67.499 188.373-41.003 291.029c21.717 84.053 69.717 154.581 132.224 204.075 18.475 14.635 45.312 11.52 59.947-6.955s11.52-45.312-6.955-59.947c-48.299-38.272-85.675-92.971-102.613-158.549-20.608-79.829-6.955-160.427 31.915-226.347s102.741-116.864 182.613-137.515 160.469-6.955 226.347 31.915 116.864 102.741 137.515 182.613c4.907 18.56 21.547 32 41.301 32h53.419c27.605 0.213 54.4 6.912 78.251 19.115 33.835 17.323 61.781 45.781 78.165 83.072 18.901 43.179 18.56 89.856 2.645 130.603s-47.317 75.307-90.496 94.208c-21.589 9.472-31.403 34.603-21.973 56.192s34.603 31.403 56.192 21.973zM341.333 725.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667zM341.333 896c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667zM512 810.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667zM512 981.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667zM682.667 725.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667zM682.667 896c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cloud-snow"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 64,
+ "paths": [
+ "M712.832 798.165l256-256c16.683-16.683 16.683-43.691 0-60.331l-256-256c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l225.835 225.835-225.835 225.835c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0zM311.168 225.835l-256 256c-16.683 16.683-16.683 43.691 0 60.331l256 256c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-225.835-225.835 225.835-225.835c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "code"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 65,
+ "paths": [
+ "M224.256 512l-96.256 67.371v-134.784zM896 579.371l-96.256-67.371 96.256-67.371zM725.333 564.096l137.045 95.957-307.712 199.979v-176.512zM373.077 512l138.923-97.237 138.923 97.237-138.923 97.237zM161.621 660.011l137.045-95.915 170.667 119.467v176.512zM535.765 49.877c-6.784-4.565-14.976-7.211-23.765-7.211s-16.981 2.645-23.765 7.211l-425.344 276.48c-4.779 2.987-9.088 6.955-12.501 11.861-5.333 7.595-7.851 16.341-7.723 24.96v297.643c-0.085 7.851 1.963 15.787 6.315 22.869 1.749 2.901 3.883 5.589 6.357 8.021 2.005 2.005 4.267 3.797 6.741 5.419l0.811 0.512 425.344 276.48c6.784 4.565 14.976 7.211 23.765 7.211s16.981-2.645 23.765-7.211l425.344-276.48c4.779-2.944 9.088-6.912 12.501-11.819 5.333-7.595 7.808-16.341 7.723-25.003v-297.643c0.085-7.851-1.963-15.787-6.315-22.869-1.749-2.859-3.883-5.589-6.357-8.021-2.005-2.005-4.267-3.797-6.741-5.419l-0.811-0.512zM554.667 340.437v-176.469l307.712 200.021-137.045 95.915zM469.333 163.968v176.512l-170.667 119.467-137.045-95.957z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "codepen"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 66,
+ "paths": [
+ "M616.149 181.12l-104.149 60.16-104.149-60.16 82.603-47.189c4.779-2.731 9.899-4.48 15.147-5.291 9.301-1.451 18.987 0.128 27.904 5.291zM170.667 585.941l106.667 61.611v120.747l-85.12-48.64c-4.736-2.773-8.832-6.315-12.16-10.453-5.931-7.339-9.387-16.469-9.387-26.539zM746.667 768.299v-120.747l106.667-61.611v96.725c-0.043 5.163-1.067 10.496-2.987 15.445-3.413 8.789-9.6 16.384-18.176 21.333zM809.003 291.328l-297.003 171.819-297.003-171.819 107.093-61.227 168.576 97.408c13.611 7.851 29.739 7.381 42.709 0l168.533-97.365zM491.776 979.669c6.016 3.243 12.928 5.077 20.224 5.077 7.381 0 14.336-1.877 20.395-5.163 15.189-2.475 29.909-7.68 43.392-15.36l136.448-77.995c9.301-1.835 17.536-6.699 23.637-13.483l138.624-79.232c26.368-15.232 45.227-38.272 55.424-64.597 5.675-14.592 8.619-30.165 8.747-46.251v-341.333c0-20.395-4.821-39.723-13.397-56.917-0.939-3.029-2.219-5.973-3.883-8.832-1.963-3.371-4.267-6.357-6.912-8.96-1.323-1.835-2.731-3.669-4.139-5.419-9.813-12.203-21.845-22.528-35.456-30.507l-139.008-79.403c-6.272-7.125-14.635-11.776-23.595-13.525l-136.405-77.952c-26.027-15.019-55.467-19.84-83.371-15.531-15.488 2.432-30.507 7.637-44.245 15.488l-136.533 77.995c-8.96 1.749-17.323 6.4-23.595 13.483l-138.624 79.232c-16.341 9.429-29.824 21.888-40.149 36.267-2.56 2.56-4.864 5.547-6.784 8.832-1.664 2.901-2.987 5.888-3.925 8.96-1.707 3.413-3.243 6.955-4.608 10.496-5.632 14.635-8.576 30.208-8.704 45.995v341.632c0.043 30.293 10.581 58.155 28.331 80.128 9.813 12.203 21.845 22.528 35.456 30.507l139.008 79.445c6.059 6.827 14.293 11.691 23.637 13.483l136.405 77.952c13.824 7.979 28.587 13.099 43.605 15.445zM469.333 537.045v340.949l-106.667-60.928v-194.133c0-15.701-8.491-29.44-21.333-36.949l-170.667-98.603v-123.093zM554.667 877.995v-340.949l298.667-172.757v123.093l-170.667 98.603c-13.611 7.851-21.248 22.059-21.333 36.949v194.133z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "codesandbox"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 67,
+ "paths": [
+ "M810.667 640v-256c35.371 0 67.285 14.293 90.496 37.504s37.504 55.125 37.504 90.496-14.293 67.285-37.504 90.496-55.125 37.504-90.496 37.504zM85.333 298.667c-23.552 0-42.667 19.115-42.667 42.667v384c0 58.88 23.936 112.299 62.464 150.869s91.989 62.464 150.869 62.464h341.333c58.88 0 112.299-23.936 150.869-62.464s62.464-91.989 62.464-150.869c58.88 0 112.299-23.936 150.869-62.464s62.464-91.989 62.464-150.869-23.936-112.299-62.464-150.869-91.989-62.464-150.869-62.464h-42.667zM128 384h597.333v341.333c0 35.371-14.293 67.285-37.504 90.496s-55.125 37.504-90.496 37.504h-341.333c-35.371 0-67.285-14.293-90.496-37.504s-37.504-55.125-37.504-90.496zM213.333 42.667v128c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-128c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM384 42.667v128c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-128c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM554.667 42.667v128c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-128c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "coffee"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 68,
+ "paths": [
+ "M512 170.667h298.667c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v597.333c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-298.667c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h298.667c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-597.333c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-298.667c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM512 85.333h-298.667c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v597.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h298.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-298.667c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-597.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h298.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM469.333 128v768c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-768c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "columns"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 69,
+ "paths": [
+ "M682.667 682.667h85.333c23.595 0 44.843 9.515 60.331 25.003s25.003 36.736 25.003 60.331-9.515 44.843-25.003 60.331-36.736 25.003-60.331 25.003-44.843-9.515-60.331-25.003-25.003-36.736-25.003-60.331zM341.333 682.667v85.333c0 23.595-9.515 44.843-25.003 60.331s-36.736 25.003-60.331 25.003-44.843-9.515-60.331-25.003-25.003-36.736-25.003-60.331 9.515-44.843 25.003-60.331 36.736-25.003 60.331-25.003zM341.333 341.333h-85.333c-23.595 0-44.843-9.515-60.331-25.003s-25.003-36.736-25.003-60.331 9.515-44.843 25.003-60.331 36.736-25.003 60.331-25.003 44.843 9.515 60.331 25.003 25.003 36.736 25.003 60.331zM682.667 341.333h-341.333v341.333h341.333zM768 170.667c23.595 0 44.843 9.515 60.331 25.003s25.003 36.736 25.003 60.331-9.515 44.843-25.003 60.331-36.736 25.003-60.331 25.003h-85.333v-85.333c0-23.595 9.515-44.843 25.003-60.331s36.736-25.003 60.331-25.003zM426.667 426.667v-170.667c0-47.104-19.157-89.856-50.005-120.661s-73.557-50.005-120.661-50.005-89.856 19.157-120.661 50.005-50.005 73.557-50.005 120.661 19.157 89.856 50.005 120.661 73.557 50.005 120.661 50.005zM426.667 597.333h-170.667c-47.104 0-89.856 19.157-120.661 50.005s-50.005 73.557-50.005 120.661 19.157 89.856 50.005 120.661 73.557 50.005 120.661 50.005 89.856-19.157 120.661-50.005 50.005-73.557 50.005-120.661zM597.333 597.333v170.667c0 47.104 19.157 89.856 50.005 120.661s73.557 50.005 120.661 50.005 89.856-19.157 120.661-50.005 50.005-73.557 50.005-120.661-19.157-89.856-50.005-120.661-73.557-50.005-120.661-50.005zM597.333 426.667v170.667h-170.667v-170.667zM768 85.333c-47.104 0-89.856 19.157-120.661 50.005s-50.005 73.557-50.005 120.661v170.667h170.667c47.104 0 89.856-19.157 120.661-50.005s50.005-73.557 50.005-120.661-19.157-89.856-50.005-120.661-73.557-50.005-120.661-50.005z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "command"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 70,
+ "paths": [
+ "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM896 512c0 106.069-42.923 201.984-112.469 271.531s-165.461 112.469-271.531 112.469-201.984-42.923-271.531-112.469-112.469-165.461-112.469-271.531 42.923-201.984 112.469-271.531 165.461-112.469 271.531-112.469 201.984 42.923 271.531 112.469 112.469 165.461 112.469 271.531zM733.397 344.576c2.816-8.363 3.072-17.835 0-26.965-7.467-22.357-31.616-34.432-53.973-26.965l-271.36 90.453c-12.373 4.181-22.571 13.781-26.965 26.965l-90.453 271.36c-2.816 8.363-3.072 17.835 0 26.965 7.467 22.357 31.616 34.432 53.973 26.965l271.36-90.453c12.373-4.181 22.571-13.781 26.965-26.965zM625.451 398.549l-56.747 170.155-170.155 56.747 56.704-170.155z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "compass"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 71,
+ "paths": [
+ "M469.333 341.333c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v384c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h384c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-384c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504zM469.333 426.667h384c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v384c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-384c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-384c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501zM213.333 597.333h-42.667c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-384c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h384c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v42.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-42.667c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-384c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v384c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h42.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "copy"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 72,
+ "paths": [
+ "M810.667 170.667v298.667c0 35.371-14.293 67.285-37.504 90.496s-55.125 37.504-90.496 37.504h-409.003l140.501-140.501c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-213.333 213.333c-3.925 3.925-7.083 8.619-9.259 13.824-6.4 15.445-3.328 33.92 9.259 46.507l213.333 213.333c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-140.501-140.501h409.003c58.88 0 112.299-23.936 150.869-62.464s62.464-91.989 62.464-150.869v-298.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "corner-down-left"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 73,
+ "paths": [
+ "M128 170.667v298.667c0 58.88 23.936 112.299 62.464 150.869s91.989 62.464 150.869 62.464h409.003l-140.501 140.501c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l213.333-213.333c3.925-3.925 7.083-8.619 9.259-13.824 6.4-15.445 3.328-33.92-9.259-46.507l-213.333-213.333c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l140.501 140.501h-409.003c-35.371 0-67.285-14.293-90.496-37.504s-37.504-55.125-37.504-90.496v-298.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "corner-down-right"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 74,
+ "paths": [
+ "M853.333 128h-298.667c-58.88 0-112.299 23.936-150.869 62.464s-62.464 91.989-62.464 150.869v409.003l-140.501-140.501c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l213.333 213.333c3.925 3.925 8.619 7.083 13.824 9.259 10.453 4.309 22.229 4.309 32.683 0 5.035-2.091 9.728-5.163 13.824-9.259l213.333-213.333c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-140.501 140.501v-409.003c0-35.371 14.293-67.285 37.504-90.496s55.125-37.504 90.496-37.504h298.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "corner-left-down"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 75,
+ "paths": [
+ "M853.333 810.667h-298.667c-35.371 0-67.285-14.293-90.496-37.504s-37.504-55.125-37.504-90.496v-409.003l140.501 140.501c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-213.333-213.333c-4.096-4.096-8.789-7.168-13.824-9.259s-10.539-3.243-16.341-3.243-11.307 1.152-16.341 3.243c-5.035 2.091-9.728 5.163-13.824 9.259l-213.333 213.333c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l140.501-140.501v409.003c0 58.88 23.936 112.299 62.464 150.869s91.989 62.464 150.869 62.464h298.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "corner-left-up"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 76,
+ "paths": [
+ "M170.667 213.333h298.667c35.371 0 67.285 14.293 90.496 37.504s37.504 55.125 37.504 90.496v409.003l-140.501-140.501c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l213.333 213.333c3.925 3.925 8.619 7.083 13.824 9.259 10.453 4.309 22.229 4.309 32.683 0 5.035-2.091 9.728-5.163 13.824-9.259l213.333-213.333c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-140.501 140.501v-409.003c0-58.88-23.936-112.299-62.464-150.869s-91.989-62.464-150.869-62.464h-298.667c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "corner-right-down"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 77,
+ "paths": [
+ "M170.667 896h298.667c58.88 0 112.299-23.936 150.869-62.464s62.464-91.989 62.464-150.869v-409.003l140.501 140.501c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-213.333-213.333c-3.925-3.925-8.619-7.083-13.824-9.259-15.445-6.4-33.92-3.328-46.507 9.259l-213.333 213.333c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l140.501-140.501v409.003c0 35.371-14.293 67.285-37.504 90.496s-55.125 37.504-90.496 37.504h-298.667c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "corner-right-up"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 78,
+ "paths": [
+ "M896 853.333v-298.667c0-58.88-23.936-112.299-62.464-150.869s-91.989-62.464-150.869-62.464h-409.003l140.501-140.501c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-213.333 213.333c-4.096 4.096-7.168 8.789-9.259 13.824s-3.243 10.539-3.243 16.341 1.152 11.307 3.243 16.341c2.091 5.035 5.163 9.728 9.259 13.824l213.333 213.333c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-140.501-140.501h409.003c35.371 0 67.285 14.293 90.496 37.504s37.504 55.125 37.504 90.496v298.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "corner-up-left"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 79,
+ "paths": [
+ "M213.333 853.333v-298.667c0-35.371 14.293-67.285 37.504-90.496s55.125-37.504 90.496-37.504h409.003l-140.501 140.501c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l213.333-213.333c3.925-3.925 7.083-8.619 9.259-13.824 4.309-10.453 4.309-22.229 0-32.683-2.091-5.035-5.163-9.728-9.259-13.824l-213.333-213.333c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l140.501 140.501h-409.003c-58.88 0-112.299 23.936-150.869 62.464s-62.464 91.989-62.464 150.869v298.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "corner-up-right"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 80,
+ "paths": [
+ "M256 213.333h512c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v512c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-512c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-512c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501zM384 341.333c-23.552 0-42.667 19.115-42.667 42.667v256c0 23.552 19.115 42.667 42.667 42.667h256c23.552 0 42.667-19.115 42.667-42.667v-256c0-23.552-19.115-42.667-42.667-42.667zM426.667 426.667h170.667v170.667h-170.667zM42.667 640h85.333v128c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h85.333v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-85.333h170.667v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-85.333h85.333c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-128h85.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-85.333v-128h85.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-85.333v-85.333c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-85.333v-85.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v85.333h-170.667v-85.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v85.333h-85.333c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v85.333h-85.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h85.333v128h-85.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cpu"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 81,
+ "paths": [
+ "M128 128c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v512c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h768c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-512c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504zM938.667 384h-853.333v-128c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h768c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165zM85.333 469.333h853.333v298.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-768c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "credit-card"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 82,
+ "paths": [
+ "M301.952 301.952l381.099-3.285c11.435 0 22.016 4.736 29.781 12.501s12.501 18.389 12.501 30.165v384h-384c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-29.781zM43.051 304.213l173.568-1.493-3.285 379.563c0 35.712 14.379 67.755 37.504 90.88s55.168 37.504 90.496 37.504h384v170.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-170.667h170.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-170.667v-384c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.88-37.504l-379.563 3.285 1.493-173.568c0.213-23.595-18.731-42.837-42.283-43.051s-42.837 18.731-43.051 42.283l-1.536 175.061-175.061 1.536c-23.552 0.213-42.496 19.456-42.283 43.051s19.456 42.496 43.051 42.283z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "crop"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 83,
+ "paths": [
+ "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM554.667 893.653v-125.653c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v125.653c-89.003-9.813-168.789-50.048-228.864-110.123s-100.309-139.861-110.123-228.864h125.653c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-125.653c9.813-89.003 50.048-168.789 110.123-228.864s139.861-100.309 228.864-110.123v125.653c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-125.653c89.003 9.813 168.789 50.048 228.864 110.123s100.309 139.861 110.123 228.864h-125.653c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h125.653c-9.813 89.003-50.048 168.789-110.123 228.864s-139.861 100.309-228.864 110.123z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "crosshair"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 84,
+ "paths": [
+ "M170.667 213.419c0 0 0.128-4.053 9.088-12.288 10.453-9.6 28.629-20.608 55.723-31.147 63.957-24.96 163.029-41.984 276.523-41.984s212.565 17.024 276.565 41.984c27.051 10.539 45.269 21.547 55.723 31.147 8.747 8.064 9.045 11.989 9.045 12.288 0 0.128-0.299 4.053-9.088 12.117-10.453 9.6-28.629 20.608-55.723 31.147-63.957 24.96-163.029 41.984-276.523 41.984s-212.565-17.024-276.565-41.984c-27.051-10.539-45.269-21.547-55.723-31.147-8.875-8.192-9.045-12.117-9.045-12.117zM853.333 620.032v190.763c-1.749 4.139-4.096 7.723-9.259 12.416-10.453 9.6-28.629 20.565-55.595 31.061-63.787 24.832-162.517 41.728-276.48 41.728s-212.693-16.896-276.48-41.728c-27.008-10.496-45.141-21.461-55.595-31.061-5.12-4.693-7.509-8.277-8.491-10.325l-0.256-192.597c10.581 5.376 21.76 10.325 33.365 14.848 76.672 29.824 186.752 47.531 307.456 47.531s230.784-17.707 307.456-47.531c11.819-4.608 23.168-9.6 33.877-15.104zM853.333 321.152v190.421c0 0.171 0 0.341 0 0.555-1.749 4.139-4.096 7.723-9.259 12.416-10.453 9.6-28.629 20.565-55.595 31.061-63.787 24.832-162.517 41.728-276.48 41.728s-212.693-16.896-276.48-41.728c-27.008-10.496-45.141-21.461-55.595-31.061-5.12-4.693-7.509-8.277-8.491-10.325-0.043-1.707-0.171-3.371-0.384-4.992l-0.213-188.032c10.581 5.461 21.888 10.411 33.621 15.019 76.843 29.952 187.221 47.787 307.541 47.787s230.699-17.835 307.541-47.787c11.776-4.608 23.125-9.6 33.792-15.061zM85.333 213.333v597.333c0 2.475 0.085 4.949 0.299 7.424 2.432 28.373 18.133 51.072 36.565 68.011 21.248 19.499 50.133 35.157 82.347 47.701 76.672 29.824 186.752 47.531 307.456 47.531s230.784-17.707 307.456-47.531c32.213-12.544 61.099-28.203 82.347-47.701 18.432-16.939 34.133-39.637 36.565-68.011 0.213-2.475 0.299-4.949 0.299-7.424v-597.333c0-2.389-0.085-4.779-0.299-7.168-2.347-28.331-18.005-50.987-36.352-67.84-21.248-19.584-50.219-35.285-82.475-47.872-76.843-29.952-187.221-47.787-307.541-47.787s-230.699 17.835-307.541 47.787c-32.256 12.587-61.227 28.331-82.475 47.872-18.347 16.853-34.005 39.552-36.352 67.84-0.213 2.389-0.299 4.779-0.299 7.168z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "database"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 85,
+ "paths": [
+ "M896 213.333c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v512c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-535.296l-261.333-298.667 261.333-298.667zM896 128h-554.667c-12.8 0-24.235 5.632-32.128 14.549l-298.667 341.333c-14.208 16.213-13.909 40.192 0 56.192l298.667 341.333c8.448 9.643 20.224 14.549 32.128 14.592h554.667c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-512c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504zM481.835 414.165l97.835 97.835-97.835 97.835c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l97.835-97.835 97.835 97.835c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-97.835-97.835 97.835-97.835c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-97.835 97.835-97.835-97.835c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "delete"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 86,
+ "paths": [
+ "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM896 512c0 106.069-42.923 201.984-112.469 271.531s-165.461 112.469-271.531 112.469-201.984-42.923-271.531-112.469-112.469-165.461-112.469-271.531 42.923-201.984 112.469-271.531 165.461-112.469 271.531-112.469 201.984 42.923 271.531 112.469 112.469 165.461 112.469 271.531zM682.667 512c0-47.104-19.157-89.856-50.005-120.661s-73.557-50.005-120.661-50.005-89.856 19.157-120.661 50.005-50.005 73.557-50.005 120.661 19.157 89.856 50.005 120.661 73.557 50.005 120.661 50.005 89.856-19.157 120.661-50.005 50.005-73.557 50.005-120.661zM597.333 512c0 23.595-9.515 44.843-25.003 60.331s-36.736 25.003-60.331 25.003-44.843-9.515-60.331-25.003-25.003-36.736-25.003-60.331 9.515-44.843 25.003-60.331 36.736-25.003 60.331-25.003 44.843 9.515 60.331 25.003 25.003 36.736 25.003 60.331z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "disc"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 87,
+ "paths": [
+ "M469.333 469.333h-64c-29.483 0-56.064-11.904-75.435-31.232s-31.232-45.952-31.232-75.435 11.904-56.064 31.232-75.435 45.952-31.232 75.435-31.232h64zM554.667 554.667h64c29.483 0 56.064 11.904 75.435 31.232s31.232 45.952 31.232 75.435-11.904 56.064-31.232 75.435-45.952 31.232-75.435 31.232h-64zM725.333 170.667h-170.667v-128c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v128h-64c-52.992 0-101.077 21.547-135.765 56.235s-56.235 82.773-56.235 135.765 21.547 101.077 56.235 135.765 82.773 56.235 135.765 56.235h64v213.333h-213.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h213.333v128c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-128h64c52.992 0 101.077-21.547 135.765-56.235s56.235-82.773 56.235-135.765-21.547-101.077-56.235-135.765-82.773-56.235-135.765-56.235h-64v-213.333h170.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "dollar-sign"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 88,
+ "paths": [
+ "M853.333 640v170.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-597.333c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-170.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v170.667c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h597.333c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-170.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM554.667 537.003v-409.003c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v409.003l-140.501-140.501c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l213.333 213.333c3.925 3.925 8.619 7.083 13.824 9.259s10.795 3.243 16.341 3.243c10.923 0 21.845-4.181 30.165-12.501l213.333-213.333c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "download"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 89,
+ "paths": [
+ "M469.333 512v281.003l-97.835-97.835c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l170.667 170.667c3.925 3.925 8.619 7.083 13.824 9.259 10.453 4.309 22.229 4.309 32.683 0 5.035-2.091 9.728-5.163 13.824-9.259l170.667-170.667c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-97.835 97.835v-281.003c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM915.413 806.741c57.813-40.661 93.696-100.992 104.96-165.461s-2.133-133.376-42.795-191.189c-35.2-50.091-85.248-83.755-140.245-99.157-22.443-6.272-45.739-9.515-69.163-9.6h-22.315c-30.805-87.808-91.179-158.293-166.699-203.008-84.523-50.005-188.245-67.797-290.944-41.472s-185.088 91.947-235.093 176.469-67.797 188.245-41.472 290.944c15.829 61.696 45.867 116.267 84.608 159.317 15.787 17.493 42.752 18.944 60.245 3.157s18.944-42.752 3.157-60.245c-29.525-32.811-52.992-75.093-65.408-123.435-20.523-79.915-6.699-160.469 32.256-226.304s102.912-116.736 182.827-137.216 160.469-6.699 226.304 32.256 116.736 102.912 137.216 182.827c4.949 18.56 21.589 32.043 41.387 32.043h53.589c15.787 0.043 31.445 2.219 46.507 6.443 36.736 10.283 69.931 32.64 93.44 66.048 27.136 38.571 36.053 84.395 28.544 127.488s-31.403 83.2-69.973 110.293c-19.285 13.568-23.893 40.149-10.368 59.435s40.149 23.893 59.435 10.368z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "download-cloud"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 90,
+ "paths": [
+ "M542.165 84.608c-16.683-16.683-43.733-16.64-60.373 0.043l-241.195 241.621c-74.965 75.008-112.427 173.355-112.384 271.573s37.547 196.565 112.555 271.488c74.923 74.88 173.184 112.341 271.275 112.384 98.475-0.043 196.821-37.589 271.787-112.555 74.88-74.923 112.341-173.184 112.384-271.275-0.043-98.517-37.589-196.821-112.555-271.744zM512.043 175.147l211.285 211.285c58.368 58.325 87.552 134.656 87.552 211.157s-29.099 152.875-87.424 211.2-134.656 87.509-211.157 87.552-152.875-29.099-211.2-87.424-87.509-134.656-87.552-211.157 29.099-152.875 87.424-211.2z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "droplet"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 91,
+ "paths": [
+ "M469.333 128h-298.667c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v597.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h597.333c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-298.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v298.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-597.333c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-597.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h298.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM759.168 76.501l-405.333 405.333c-5.205 5.163-9.259 11.947-11.221 19.84l-42.667 170.667c-1.664 6.4-1.792 13.568 0 20.693 5.717 22.869 28.885 36.779 51.755 31.061l170.667-42.667c7.125-1.749 14.080-5.504 19.84-11.221l405.333-405.333c25.984-25.984 38.997-60.16 38.997-94.165s-13.013-68.181-38.997-94.165-60.203-39.040-94.208-39.040-68.181 13.013-94.165 38.997zM819.499 136.832c9.344-9.344 21.504-13.995 33.835-13.995s24.491 4.651 33.835 13.995 13.995 21.504 13.995 33.835-4.651 24.491-13.995 33.835l-396.971 396.971-90.197 22.571 22.571-90.197z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "edit"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 92,
+ "paths": [
+ "M695.168 97.835l-576 576c-4.992 4.949-8.96 11.435-11.008 18.944l-64 234.667c-1.963 6.955-2.091 14.763 0 22.443 6.187 22.741 29.653 36.139 52.395 29.952l234.667-64c6.784-1.792 13.44-5.504 18.944-11.008l576-576c31.872-31.872 47.829-73.771 47.829-115.499s-15.957-83.627-47.829-115.499-73.771-47.829-115.499-47.829-83.627 15.957-115.499 47.829zM755.499 158.165c15.232-15.232 35.157-22.827 55.168-22.827s39.936 7.595 55.168 22.869 22.827 35.115 22.827 55.125-7.595 39.936-22.827 55.168l-567.979 567.979-151.723 41.387 41.387-151.68z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "edit-2"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 93,
+ "paths": [
+ "M512 896h384c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-384c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM673.835 119.168l-533.333 533.333c-5.205 5.163-9.259 11.947-11.221 19.84l-42.667 170.667c-1.664 6.4-1.792 13.568 0 20.693 5.717 22.869 28.885 36.779 51.755 31.061l170.667-42.667c7.125-1.749 14.080-5.504 19.84-11.221l533.333-533.333c25.984-25.984 38.997-60.16 38.997-94.165s-13.013-68.181-38.997-94.165-60.203-39.040-94.208-39.040-68.181 13.013-94.165 38.997zM734.165 179.499c9.344-9.344 21.504-13.995 33.835-13.995s24.491 4.651 33.835 13.995 13.995 21.504 13.995 33.835-4.651 24.491-13.995 33.835l-524.971 524.971-90.24 22.571 22.571-90.24z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "edit-3"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 94,
+ "paths": [
+ "M725.333 554.667v256c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-469.333c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-469.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h256c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-256c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v469.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h469.333c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-256c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM456.832 627.499l396.501-396.501v153.003c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-256c0-5.803-1.152-11.307-3.243-16.341s-5.163-9.728-9.216-13.781c-0.043-0.043-0.043-0.043-0.085-0.085-3.925-3.925-8.619-7.083-13.781-9.216-5.035-2.091-10.539-3.243-16.341-3.243h-256c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h153.003l-396.501 396.501c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "external-link"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 95,
+ "paths": [
+ "M4.523 492.928c-5.803 11.691-6.229 25.728 0 38.144 0 0 16.896 33.664 47.787 78.635 19.243 27.989 44.288 61.099 74.965 94.635 38.144 41.771 85.504 84.779 141.611 119.467 68.053 42.069 149.589 72.192 243.115 72.192s175.061-30.123 243.115-72.192c56.107-34.688 103.467-77.696 141.611-119.467 30.635-33.536 55.723-66.645 74.965-94.635 30.891-44.971 47.787-78.635 47.787-78.635 5.803-11.691 6.229-25.728 0-38.144 0 0-16.896-33.664-47.787-78.635-19.243-27.989-44.288-61.099-74.965-94.635-38.144-41.771-85.504-84.779-141.611-119.467-68.053-42.069-149.589-72.192-243.115-72.192s-175.061 30.123-243.115 72.192c-56.107 34.688-103.467 77.696-141.611 119.467-30.677 33.536-55.723 66.603-74.965 94.635-30.891 44.971-47.787 78.635-47.787 78.635zM91.307 512c6.955-11.989 17.365-29.056 31.317-49.408 17.493-25.429 40.107-55.296 67.627-85.376 34.347-37.589 75.733-74.923 123.477-104.448 57.6-35.584 123.776-59.435 198.272-59.435s140.672 23.851 198.229 59.435c47.744 29.525 89.131 66.859 123.477 104.448 27.477 30.080 50.133 59.947 67.627 85.376 13.995 20.352 24.405 37.376 31.317 49.408-6.955 11.989-17.365 29.056-31.317 49.408-17.493 25.429-40.107 55.296-67.627 85.376-34.347 37.589-75.733 74.923-123.477 104.448-57.557 35.584-123.733 59.435-198.229 59.435s-140.672-23.851-198.229-59.435c-47.744-29.525-89.131-66.859-123.477-104.448-27.477-30.080-50.133-59.947-67.627-85.376-13.995-20.352-24.405-37.419-31.36-49.408zM682.667 512c0-47.104-19.157-89.856-50.005-120.661s-73.557-50.005-120.661-50.005-89.856 19.157-120.661 50.005-50.005 73.557-50.005 120.661 19.157 89.856 50.005 120.661 73.557 50.005 120.661 50.005 89.856-19.157 120.661-50.005 50.005-73.557 50.005-120.661zM597.333 512c0 23.595-9.515 44.843-25.003 60.331s-36.736 25.003-60.331 25.003-44.843-9.515-60.331-25.003-25.003-36.736-25.003-60.331 9.515-44.843 25.003-60.331 36.736-25.003 60.331-25.003 44.843 9.515 60.331 25.003 25.003 36.736 25.003 60.331z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "eye"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 96,
+ "paths": [
+ "M432.128 222.464c27.776-6.485 55.296-9.429 79.36-9.131 75.008 0 141.184 23.851 198.741 59.435 47.744 29.525 89.131 66.859 123.477 104.448 27.477 30.080 50.133 59.947 67.627 85.376 13.952 20.267 24.32 37.291 31.275 49.28-23.296 40.661-49.493 77.696-75.861 108.459-15.317 17.877-13.269 44.843 4.608 60.16s44.843 13.269 60.16-4.608c34.901-40.704 68.736-90.112 97.408-143.787 6.315-11.904 6.955-26.368 0.555-39.211 0 0-16.896-33.664-47.787-78.635-19.243-27.989-44.288-61.099-74.965-94.635-38.144-41.771-85.504-84.779-141.611-119.467-68.053-42.027-149.589-72.149-242.603-72.149-31.317-0.384-65.707 3.371-99.84 11.349-22.955 5.376-37.205 28.331-31.829 51.285s28.331 37.205 51.285 31.829zM427.819 488.192l107.989 107.989c-7.765 2.603-15.872 4.011-24.021 4.309-21.888 0.768-43.947-6.784-61.184-22.869s-26.325-37.547-27.093-59.435c-0.341-10.155 1.067-20.309 4.309-30.037zM255.275 315.605l108.928 108.928c-18.517 29.483-27.136 63.317-25.941 96.683 1.536 43.605 19.755 86.741 54.229 118.827s78.763 47.232 122.368 45.696c29.525-1.024 58.837-9.728 84.651-25.941l99.072 99.072c-58.795 34.091-123.52 51.029-187.051 51.797-73.984 0-140.16-23.851-197.717-59.435-47.744-29.525-89.131-66.859-123.477-104.448-27.477-30.080-50.133-59.947-67.627-85.376-13.909-20.267-24.32-37.248-31.232-49.237 44.8-77.739 101.376-144.171 163.883-196.565zM12.501 72.832l182.229 182.229c-73.856 63.104-139.477 143.275-189.653 236.757-6.315 11.904-6.997 26.411-0.555 39.253 0 0 16.896 33.664 47.787 78.635 19.243 27.989 44.288 61.099 74.965 94.635 38.144 41.771 85.504 84.779 141.611 119.467 68.053 42.069 149.589 72.192 243.627 72.192 85.035-1.024 171.477-25.643 248.107-75.051l190.549 190.549c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-378.709-378.709c-0.085-0.085-0.213-0.213-0.299-0.299l-179.584-179.627c-0.341-0.299-0.683-0.683-1.024-1.024l-379.051-379.008c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "eye-off"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 97,
+ "paths": [
+ "M725.333 128v85.333h-85.333c-23.552 0-44.928 9.6-60.331 25.003s-25.003 36.779-25.003 60.331v128c0 23.552 19.115 42.667 42.667 42.667h116.011l-21.333 85.333h-94.677c-23.552 0-42.667 19.115-42.667 42.667v298.667h-85.333v-298.667c0-23.552-19.115-42.667-42.667-42.667h-85.333v-85.333h85.333c23.552 0 42.667-19.115 42.667-42.667v-128c0-47.147 19.072-89.728 50.005-120.661s73.515-50.005 120.661-50.005zM768 42.667h-128c-70.699 0-134.741 28.715-181.035 74.965s-74.965 110.336-74.965 181.035v85.333h-85.333c-23.552 0-42.667 19.115-42.667 42.667v170.667c0 23.552 19.115 42.667 42.667 42.667h85.333v298.667c0 23.552 19.115 42.667 42.667 42.667h170.667c23.552 0 42.667-19.115 42.667-42.667v-298.667h85.333c19.883 0 36.608-13.611 41.387-32.299l42.667-170.667c5.717-22.869-8.192-46.037-31.061-51.755-3.541-0.896-7.125-1.323-10.325-1.28h-128v-85.333h128c23.552 0 42.667-19.115 42.667-42.667v-170.667c0-23.552-19.115-42.667-42.667-42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "facebook"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 98,
+ "paths": [
+ "M597.333 723.413v-422.827l271.829 211.413zM128 723.413v-422.827l271.829 211.413zM111.531 844.331l384-298.667c10.709-8.32 16.341-20.736 16.469-33.28v298.283c0 23.552 19.115 42.667 42.667 42.667 9.899 0 19.029-3.371 26.197-9.003l384-298.667c18.603-14.464 21.931-41.259 7.467-59.861-2.304-2.944-4.907-5.504-7.467-7.467l-384-298.667c-18.603-14.464-45.397-11.136-59.861 7.467-6.101 7.851-9.045 17.109-9.003 26.197v298.24c-0.085-9.003-3.029-18.091-9.003-25.771-2.304-2.944-4.907-5.504-7.467-7.467l-384-298.667c-18.603-14.464-45.397-11.136-59.861 7.467-6.101 7.851-9.045 17.109-9.003 26.197v597.333c0 23.552 19.115 42.667 42.667 42.667 9.899 0 19.029-3.371 26.197-9.003z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fast-forward"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 99,
+ "paths": [
+ "M772.736 673.792c2.944-2.261 5.547-4.907 7.808-7.851l113.195-113.536c58.325-58.325 87.509-134.869 87.509-211.285s-29.184-152.96-87.509-211.285-134.869-87.509-211.285-87.509-152.96 29.184-211.285 87.509l-288 288c-8.32 8.32-12.501 19.243-12.501 30.165v345.003l-115.499 115.499c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l115.499-115.499h345.003c11.819 0 22.485-4.779 30.208-12.544zM401.664 682.667h241.707l-85.077 85.333h-241.963zM728.448 597.333h-241.451l225.835-225.835c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-396.501 396.501v-242.005l275.499-275.499c41.685-41.685 96.256-62.507 150.955-62.507s109.269 20.821 150.955 62.507 62.507 96.256 62.507 150.955-20.821 109.269-62.507 150.955z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "feather"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 100,
+ "paths": [
+ "M554.667 533.333c0-29.483 11.904-56.064 31.232-75.435s45.952-31.232 75.435-31.232 56.064 11.904 75.435 31.232 31.232 45.952 31.232 75.435-11.904 56.064-31.232 75.435-45.952 31.232-75.435 31.232-56.064-11.904-75.435-31.232-31.232-45.952-31.232-75.435zM362.667 341.333c-29.483 0-56.064-11.904-75.435-31.232s-31.232-45.952-31.232-75.435 11.904-56.064 31.232-75.435 45.952-31.232 75.435-31.232h106.667v213.333zM554.667 341.333v-213.333h106.667c29.483 0 56.064 11.904 75.435 31.232s31.232 45.952 31.232 75.435-11.904 56.064-31.232 75.435-45.952 31.232-75.435 31.232zM469.333 725.333v106.667c0 29.483-11.904 56.064-31.232 75.435s-45.952 31.232-75.435 31.232-56.064-11.904-75.435-31.232-31.232-45.952-31.232-75.435 11.904-56.064 31.232-75.435 45.952-31.232 75.435-31.232zM170.667 533.333c0 52.992 21.547 101.077 56.235 135.765 4.779 4.779 9.813 9.301 15.061 13.568-5.248 4.267-10.283 8.789-15.061 13.568-34.688 34.688-56.235 82.773-56.235 135.765s21.547 101.077 56.235 135.765 82.773 56.235 135.765 56.235 101.077-21.547 135.765-56.235 56.235-82.773 56.235-135.765v-139.008c30.507 20.395 67.2 32.341 106.667 32.341 52.992 0 101.077-21.547 135.765-56.235s56.235-82.773 56.235-135.765-21.547-101.077-56.235-135.765c-4.779-4.779-9.813-9.301-15.061-13.568 5.248-4.267 10.283-8.789 15.061-13.568 34.688-34.688 56.235-82.773 56.235-135.765s-21.547-101.077-56.235-135.765-82.773-56.235-135.765-56.235h-298.667c-52.992 0-101.077 21.547-135.765 56.235s-56.235 82.773-56.235 135.765 21.547 101.077 56.235 135.765c4.779 4.779 9.813 9.301 15.061 13.568-5.248 4.267-10.283 8.789-15.061 13.568-34.688 34.688-56.235 82.773-56.235 135.765zM256 533.333c0-29.483 11.904-56.064 31.232-75.435s45.952-31.232 75.435-31.232h106.667v213.333h-106.667c-29.483 0-56.064-11.904-75.435-31.232s-31.232-45.952-31.232-75.435z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "figma"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 101,
+ "paths": [
+ "M750.336 341.333h-153.003v-153.003zM883.499 353.835l-298.667-298.667c-3.925-3.925-8.619-7.083-13.824-9.259s-10.795-3.243-16.341-3.243h-298.667c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v682.667c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h512c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-469.333c0-11.776-4.779-22.443-12.501-30.165zM512 128v256c0 23.552 19.115 42.667 42.667 42.667h256v426.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-512c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-682.667c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 102,
+ "paths": [
+ "M750.336 298.667h-110.336v-110.336zM883.499 311.168l-256-256c-3.925-3.925-8.619-7.083-13.824-9.259s-10.795-3.243-16.341-3.243h-341.333c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v682.667c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h512c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-512c0-11.776-4.779-22.443-12.501-30.165zM554.667 128v213.333c0 23.552 19.115 42.667 42.667 42.667h213.333v469.333c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-512c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-682.667c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501zM384 682.667h256c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-256c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file-minus"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 103,
+ "paths": [
+ "M750.336 298.667h-110.336v-110.336zM883.499 311.168l-256-256c-3.925-3.925-8.619-7.083-13.824-9.259s-10.795-3.243-16.341-3.243h-341.333c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v682.667c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h512c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-512c0-11.776-4.779-22.443-12.501-30.165zM554.667 128v213.333c0 23.552 19.115 42.667 42.667 42.667h213.333v469.333c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-512c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-682.667c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501zM384 682.667h85.333v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-85.333h85.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-85.333v-85.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v85.333h-85.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file-plus"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 104,
+ "paths": [
+ "M750.336 298.667h-110.336v-110.336zM883.499 311.168l-256-256c-3.925-3.925-8.619-7.083-13.824-9.259s-10.795-3.243-16.341-3.243h-341.333c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v682.667c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h512c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-512c0-11.776-4.779-22.443-12.501-30.165zM554.667 128v213.333c0 23.552 19.115 42.667 42.667 42.667h213.333v469.333c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-512c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-682.667c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501zM682.667 512h-341.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h341.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM682.667 682.667h-341.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h341.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM426.667 341.333h-85.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h85.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file-text"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 105,
+ "paths": [
+ "M682.667 469.333h-341.333v-341.333h341.333zM341.333 554.667h341.333v341.333h-341.333zM256 256h-128v-77.653c0-13.909 5.589-26.453 14.763-35.584s21.675-14.763 35.584-14.763h77.653zM128 341.333h128v128h-128zM256 682.667h-128v-128h128zM128 768h128v128h-77.653c-13.909 0-26.453-5.589-35.584-14.763s-14.763-21.675-14.763-35.584zM896 682.667h-128v-128h128zM768 768h128v77.653c0 13.909-5.589 26.453-14.763 35.584s-21.675 14.763-35.584 14.763h-77.653zM896 256h-128v-128h77.653c13.909 0 26.453 5.589 35.584 14.763s14.763 21.675 14.763 35.584zM981.333 298.667v-120.32c0-37.461-15.232-71.424-39.723-95.957s-58.496-39.723-95.957-39.723h-667.307c-37.461 0-71.424 15.232-95.957 39.723s-39.723 58.496-39.723 95.957v667.307c0 37.461 15.232 71.424 39.723 95.957s58.496 39.723 95.957 39.723h667.307c37.461 0 71.424-15.232 95.957-39.723s39.723-58.496 39.723-95.957zM768 341.333h128v128h-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "film"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 106,
+ "paths": [
+ "M846.72 170.667l-281.984 333.397c-6.272 7.381-10.069 17.024-10.069 27.563v295.339l-85.333-42.667v-252.672c0.043-9.685-3.285-19.499-10.069-27.563l-281.984-333.397zM938.667 85.333h-853.333c-23.552 0-42.667 19.115-42.667 42.667 0 10.539 3.797 20.181 10.069 27.563l331.264 391.68v263.424c0 16.597 9.472 31.019 23.595 38.144l170.667 85.333c21.077 10.539 46.72 2.005 57.259-19.072 3.072-6.229 4.523-12.843 4.48-19.072v-348.757l331.264-391.68c15.232-18.005 12.971-44.928-5.035-60.117-8.064-6.827-17.877-10.155-27.563-10.112z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "filter"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 107,
+ "paths": [
+ "M213.333 571.605v-420.651c18.773-9.301 58.24-22.955 128-22.955 54.656 0 100.736 17.963 154.837 39.595 52.565 21.035 113.152 45.739 186.496 45.739 55.381 0 97.195-7.467 128-16.939v420.651c-18.773 9.301-58.24 22.955-128 22.955-54.656 0-100.736-17.963-154.837-39.595-52.565-21.035-113.152-45.739-186.496-45.739-55.381 0-97.195 7.467-128 16.939zM213.333 938.667v-275.712c18.773-9.301 58.24-22.955 128-22.955 54.656 0 100.736 17.963 154.837 39.595 52.565 21.035 113.152 45.739 186.496 45.739 138.539 0 192.299-46.635 200.832-55.168 8.32-8.32 12.501-19.243 12.501-30.165v-512c0-23.552-19.115-42.667-42.667-42.667-11.307 0-21.589 4.395-29.227 11.605-4.096 3.328-41.984 31.061-141.44 31.061-54.656 0-100.736-17.963-154.837-39.595-52.565-21.035-113.152-45.739-186.496-45.739-138.539 0-192.299 46.635-200.832 55.168-8.32 8.32-12.501 19.243-12.501 30.165v810.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "flag"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 108,
+ "paths": [
+ "M981.333 810.667v-469.333c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-361.173l-72.661-109.013c-7.765-11.52-20.736-18.987-35.499-18.987h-213.333c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v597.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h682.667c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496zM896 810.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-682.667c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-597.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h190.507l72.661 109.013c8.192 12.245 21.589 18.901 35.499 18.987h384c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "folder"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 109,
+ "paths": [
+ "M981.333 810.667v-469.333c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-361.173l-72.661-109.013c-7.765-11.52-20.736-18.987-35.499-18.987h-213.333c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v597.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h682.667c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496zM896 810.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-682.667c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-597.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h190.507l72.661 109.013c8.192 12.245 21.589 18.901 35.499 18.987h384c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165zM384 640h256c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-256c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "folder-minus"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 110,
+ "paths": [
+ "M981.333 810.667v-469.333c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-361.173l-72.661-109.013c-7.765-11.52-20.736-18.987-35.499-18.987h-213.333c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v597.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h682.667c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496zM896 810.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-682.667c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-597.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h190.507l72.661 109.013c8.192 12.245 21.589 18.901 35.499 18.987h384c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165zM384 640h85.333v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-85.333h85.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-85.333v-85.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v85.333h-85.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "folder-plus"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 111,
+ "paths": [
+ "M529.664 341.333l-213.333-213.333h451.669v213.333zM256 682.667v-256h238.336l213.333 213.333h-195.669c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h298.667c10.923 0 21.845-4.181 30.165-12.501 16.683-16.683 16.683-43.691 0-60.331l-225.835-225.835h195.669c23.552 0 42.667-19.115 42.667-42.667v-298.667c0-23.552-19.115-42.667-42.667-42.667h-597.333c-23.552 0-42.667 19.115-42.667 42.667 0 11.776 4.779 22.443 12.501 30.165l225.835 225.835h-195.669c-23.552 0-42.667 19.115-42.667 42.667v298.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM183.168 712.832l298.667 298.667c16.683 16.683 43.691 16.683 60.331 0 8.32-8.32 12.501-19.243 12.501-30.165v-298.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v195.669l-225.835-225.835c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331zM213.333 725.333h298.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-298.667c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "framer"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 112,
+ "paths": [
+ "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM896 512c0 106.069-42.923 201.984-112.469 271.531s-165.461 112.469-271.531 112.469-201.984-42.923-271.531-112.469-112.469-165.461-112.469-271.531 42.923-201.984 112.469-271.531 165.461-112.469 271.531-112.469 201.984 42.923 271.531 112.469 112.469 165.461 112.469 271.531zM716.8 657.067c0 0-5.589-7.381-14.123-16.341-6.187-6.528-14.421-14.549-24.619-23.040-14.379-11.989-32.939-25.173-55.339-36.395-30.080-15.019-67.371-26.624-110.72-26.624s-80.64 11.605-110.72 26.624c-22.4 11.221-40.96 24.405-55.339 36.395-10.197 8.491-18.432 16.512-24.619 23.040-8.533 8.96-14.123 16.341-14.123 16.341-14.123 18.859-10.325 45.611 8.533 59.733s45.611 10.325 59.733-8.533c1.749-2.133 7.723-8.789 7.723-8.789 4.267-4.48 10.112-10.197 17.408-16.299 10.368-8.661 23.424-17.877 38.827-25.6 20.48-10.197 44.8-17.579 72.576-17.579s52.096 7.381 72.576 17.621c15.36 7.68 28.459 16.939 38.827 25.6 7.296 6.101 13.141 11.819 17.408 16.299 5.973 6.613 7.723 8.747 7.723 8.747 14.123 18.859 40.875 22.656 59.733 8.533s22.656-40.875 8.533-59.733zM384 426.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667zM640 426.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "frown"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 113,
+ "paths": [
+ "M469.333 554.667v341.333h-256v-341.333zM554.667 896v-341.333h256v341.333zM320 256c-17.664 0-33.621-7.125-45.269-18.731s-18.731-27.605-18.731-45.269 7.125-33.621 18.731-45.269 27.605-18.731 45.269-18.731c26.837 0 48.725 9.515 67.584 25.003 16.043 13.141 29.909 30.677 41.643 50.219 10.283 17.109 18.475 35.029 24.747 51.328zM569.429 256c6.869-17.749 15.061-35.669 25.301-52.779 11.733-19.584 25.643-37.077 41.643-50.219 18.901-15.488 40.789-25.003 67.627-25.003 17.664 0 33.621 7.125 45.269 18.731s18.731 27.605 18.731 45.269-7.125 33.621-18.731 45.269-27.605 18.731-45.269 18.731zM469.333 341.333v128h-341.333v-128h192zM838.955 256c9.216-19.413 14.379-41.088 14.379-64 0-41.216-16.768-78.635-43.733-105.6s-64.384-43.733-105.6-43.733c-49.493 0-89.984 18.347-121.685 44.331-25.728 21.077-45.568 47.061-60.715 72.277-3.413 5.675-6.613 11.349-9.6 16.981-2.987-5.632-6.187-11.307-9.6-16.981-15.147-25.216-34.987-51.2-60.715-72.277-31.701-25.984-72.192-44.331-121.685-44.331-41.216 0-78.635 16.768-105.6 43.733s-43.733 64.384-43.733 105.6c0 22.912 5.163 44.587 14.379 64h-99.712c-23.552 0-42.667 19.115-42.667 42.667v213.333c0 23.552 19.115 42.667 42.667 42.667h42.667v384c0 23.552 19.115 42.667 42.667 42.667h682.667c23.552 0 42.667-19.115 42.667-42.667v-384h42.667c23.552 0 42.667-19.115 42.667-42.667v-213.333c0-23.552-19.115-42.667-42.667-42.667zM554.667 341.333h341.333v128h-341.333z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "gift"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 114,
+ "paths": [
+ "M853.333 256c0 23.595-9.515 44.843-25.003 60.331s-36.736 25.003-60.331 25.003-44.843-9.515-60.331-25.003-25.003-36.736-25.003-60.331 9.515-44.843 25.003-60.331 36.736-25.003 60.331-25.003 44.843 9.515 60.331 25.003 25.003 36.736 25.003 60.331zM341.333 768c0 23.595-9.515 44.843-25.003 60.331s-36.736 25.003-60.331 25.003-44.843-9.515-60.331-25.003-25.003-36.736-25.003-60.331 9.515-44.843 25.003-60.331 36.736-25.003 60.331-25.003 44.843 9.515 60.331 25.003 25.003 36.736 25.003 60.331zM723.371 420.779c-8.533 79.573-44.331 150.912-98.005 204.587s-125.013 89.515-204.587 98.005c-7.893-29.227-23.339-55.339-44.075-76.075-21.205-21.163-48.043-36.864-78.037-44.587v-474.709c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v474.709c-29.995 7.723-56.832 23.424-77.995 44.587-30.848 30.848-50.005 73.6-50.005 120.704s19.157 89.856 50.005 120.661 73.557 50.005 120.661 50.005 89.856-19.157 120.661-50.005c21.589-21.589 37.461-48.981 45.013-79.659 102.784-9.003 195.157-54.485 264.021-123.307s114.304-161.237 123.307-264.021c30.677-7.552 58.069-23.424 79.659-45.013 30.848-30.805 50.005-73.557 50.005-120.661s-19.157-89.856-50.005-120.661-73.557-50.005-120.661-50.005-89.856 19.157-120.661 50.005-50.005 73.557-50.005 120.661 19.157 89.856 50.005 120.661c20.736 20.736 46.848 36.181 76.075 44.075z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "git-branch"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 115,
+ "paths": [
+ "M640 512c0 35.371-14.293 67.285-37.504 90.496s-55.125 37.504-90.496 37.504-67.285-14.293-90.496-37.504-37.504-55.125-37.504-90.496 14.293-67.285 37.504-90.496 55.125-37.504 90.496-37.504 67.285 14.293 90.496 37.504 37.504 55.125 37.504 90.496zM725.76 554.667h253.867c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-253.867c-1.579 0-3.115 0.085-4.651 0.256-8.448-41.899-29.227-79.36-58.24-108.416-38.571-38.571-91.989-62.507-150.869-62.507s-112.299 23.936-150.869 62.464c-29.056 29.056-49.792 66.517-58.24 108.373-1.365-0.085-2.816-0.171-4.224-0.171h-253.867c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h253.867c1.408 0 2.859-0.085 4.224-0.213 8.448 41.899 29.227 79.36 58.24 108.373 38.571 38.571 91.989 62.507 150.869 62.507s112.299-23.936 150.869-62.464c29.056-29.056 49.792-66.517 58.24-108.416 1.536 0.171 3.072 0.256 4.651 0.256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "git-commit"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 116,
+ "paths": [
+ "M853.333 768c0 23.595-9.515 44.843-25.003 60.331s-36.736 25.003-60.331 25.003-44.843-9.515-60.331-25.003-25.003-36.736-25.003-60.331 9.515-44.843 25.003-60.331 36.736-25.003 60.331-25.003 44.843 9.515 60.331 25.003 25.003 36.736 25.003 60.331zM341.333 256c0 23.595-9.515 44.843-25.003 60.331s-36.736 25.003-60.331 25.003-44.843-9.515-60.331-25.003-25.003-36.736-25.003-60.331 9.515-44.843 25.003-60.331 36.736-25.003 60.331-25.003 44.843 9.515 60.331 25.003 25.003 36.736 25.003 60.331zM298.667 896v-255.957c12.117 16.171 25.387 31.403 39.637 45.653 68.864 68.864 161.237 114.304 264.021 123.307 7.552 30.677 23.424 58.069 45.013 79.659 30.805 30.848 73.557 50.005 120.661 50.005s89.856-19.157 120.661-50.005 50.005-73.557 50.005-120.661-19.157-89.856-50.005-120.661-73.557-50.005-120.661-50.005-89.856 19.157-120.661 50.005c-20.736 20.736-36.181 46.848-44.075 76.075-79.573-8.533-150.912-44.331-204.587-98.005s-89.515-125.013-98.005-204.587c29.141-7.936 55.253-23.424 75.989-44.16 30.848-30.805 50.005-73.557 50.005-120.661s-19.157-89.856-50.005-120.661-73.557-50.005-120.661-50.005-89.856 19.157-120.661 50.005-50.005 73.557-50.005 120.661 19.157 89.856 50.005 120.661c21.163 21.205 48 36.907 77.995 44.629v474.709c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "git-merge"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 117,
+ "paths": [
+ "M853.333 768c0 23.595-9.515 44.843-25.003 60.331s-36.736 25.003-60.331 25.003-44.843-9.515-60.331-25.003-25.003-36.736-25.003-60.331 9.515-44.843 25.003-60.331 36.736-25.003 60.331-25.003 44.843 9.515 60.331 25.003 25.003 36.736 25.003 60.331zM341.333 256c0 23.595-9.515 44.843-25.003 60.331s-36.736 25.003-60.331 25.003-44.843-9.515-60.331-25.003-25.003-36.736-25.003-60.331 9.515-44.843 25.003-60.331 36.736-25.003 60.331-25.003 44.843 9.515 60.331 25.003 25.003 36.736 25.003 60.331zM554.667 298.667h128c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v261.376c-29.995 7.723-56.832 23.424-77.995 44.587-30.848 30.848-50.005 73.6-50.005 120.704s19.157 89.856 50.005 120.661 73.557 50.005 120.661 50.005 89.856-19.157 120.661-50.005 50.005-73.557 50.005-120.661-19.157-89.856-50.005-120.661c-21.205-21.205-48-36.864-77.995-44.587v-261.419c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-128c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM213.333 421.291v474.709c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-474.709c29.995-7.723 56.832-23.424 77.995-44.587 30.848-30.848 50.005-73.6 50.005-120.704s-19.157-89.856-50.005-120.661-73.557-50.005-120.661-50.005-89.856 19.157-120.661 50.005-50.005 73.557-50.005 120.661 19.157 89.856 50.005 120.661c21.163 21.205 48 36.907 77.995 44.629z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "git-pull-request"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 118,
+ "paths": [
+ "M371.755 769.792c-54.101 16.213-87.893 14.293-110.208 7.253-9.856-3.115-18.389-7.509-26.197-12.885-17.536-12.117-31.019-28.8-47.744-50.005-15.189-19.243-36.267-47.232-66.176-62.976-7.893-4.181-16.469-7.552-25.771-9.899-22.869-5.717-46.037 8.192-51.755 31.061s8.192 46.037 31.061 51.755c3.157 0.981 6.613 2.56 6.613 2.56 10.752 5.675 20.779 17.237 38.997 40.363 15.616 19.797 36.523 46.848 66.261 67.371 14.165 9.771 30.336 18.176 49.024 24.064 43.307 13.696 95.403 12.629 160.427-6.912 22.571-6.784 35.371-30.549 28.587-53.12s-30.549-35.371-53.12-28.587zM725.333 938.667v-161.792c2.219-29.184-2.389-57.301-12.459-82.859 33.152-7.296 66.688-18.219 98.005-35.115 88.875-47.957 149.163-138.325 149.163-295.381 0-64.128-22.016-123.179-58.837-169.856 15.147-57.387 9.643-116.309-12.501-167.808-5.205-12.075-15.317-20.565-27.051-24.064-15.232-4.523-73.899-13.184-186.581 58.112-96.981-23.083-194.432-21.717-283.563-0.085-112.597-71.211-171.221-62.549-186.453-58.027-12.629 3.755-22.229 12.8-27.093 24.107-23.637 55.125-26.624 114.005-12.459 167.765-39.68 50.261-59.179 110.976-58.837 171.392 0 154.539 59.264 244.181 146.816 292.651 32.085 17.749 66.56 29.227 100.565 36.992-7.893 19.968-12.203 41.003-12.971 62.123-0.213 6.016-0.128 12.075 0.213 18.091l0.043 163.755c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-165.12c0-0.896-0.043-1.92-0.085-2.944-0.256-3.584-0.299-7.168-0.171-10.752 0.853-24.235 10.283-48.043 28.373-66.731 6.187-6.357 10.496-14.805 11.691-24.405 2.901-23.381-13.696-44.715-37.077-47.616-14.507-1.792-28.885-4.011-42.923-6.784-33.707-6.656-64.768-16.427-91.605-31.275-55.68-30.848-102.016-88.363-102.827-215.125 0.555-52.949 17.877-98.944 52.224-135.040 10.965-11.648 14.933-28.629 9.045-44.373-11.947-31.915-14.549-67.413-5.973-102.059 20.949 4.565 57.771 17.749 112.939 54.699 10.027 6.699 22.741 9.131 35.2 5.675 85.205-23.765 180.992-25.685 276.053 0.085 11.563 3.115 24.277 1.408 34.901-5.76 55.168-36.949 91.989-50.133 112.939-54.699 8.064 32.683 6.699 68.053-6.016 102.059-5.504 15.019-2.475 32.213 9.088 44.373 32.341 33.92 52.224 79.872 52.224 130.56 0 131.2-47.531 189.653-104.32 220.288-26.581 14.336-57.301 23.68-90.581 29.867-13.739 2.56-27.776 4.523-41.941 6.101-8.96 0.981-17.835 4.864-24.917 11.733-16.939 16.384-17.408 43.392-1.024 60.331 2.859 2.987 5.547 6.101 8.021 9.387 14.507 19.157 22.229 43.307 20.224 68.992 0 1.024-0.043 2.176-0.128 3.328v165.205c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "github"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 119,
+ "paths": [
+ "M991.488 648.491c11.136-7.253 21.035-19.029 27.093-32.597 7.339-16.427 9.131-35.456 3.2-55.68l-54.016-159.957-103.765-319.317c-2.901-9.771-8.32-18.901-16.939-27.179-11.349-10.325-25.728-15.659-40.149-15.872-14.976-0.213-30.165 5.077-41.643 15.573-7.040 6.272-12.629 14.251-16.128 23.339-0.256 0.64-0.512 1.408-0.768 2.219l-94.592 290.901h-283.605l-94.165-288.981c-2.901-9.771-8.32-18.901-16.939-27.179-11.307-10.325-25.685-15.659-40.107-15.872-14.976-0.256-30.165 5.035-41.643 15.573-7.083 6.229-12.629 14.251-16.171 23.296-0.256 0.683-0.512 1.451-0.768 2.219l-104.149 320.512-52.053 161.28c-4.523 14.037-4.992 28.843-1.621 42.837 4.181 17.365 14.336 33.408 29.952 44.885l454.4 330.24c14.763 10.581 34.901 11.093 50.176 0zM938.795 581.291l-426.795 310.187-425.941-309.547 51.413-156.245 80.469-247.68 80.683 247.808c5.845 17.92 22.4 29.312 40.576 29.44h345.6c18.859 0 34.859-12.245 40.576-29.483l80.469-247.637 80.725 248.491z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "gitlab"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 120,
+ "paths": [
+ "M723.243 469.333c-9.131-114.773-47.019-228.395-114.091-328.96 66.987 17.451 126.848 52.565 174.379 100.096 60.075 60.075 100.309 139.861 110.123 228.864zM609.237 883.584c63.275-94.976 103.979-207.061 113.877-328.917h170.539c-9.813 89.003-50.048 168.789-110.123 228.864-47.488 47.488-107.349 82.603-174.293 100.053zM300.757 554.667c9.131 114.773 47.019 228.395 114.091 328.96-66.987-17.451-126.848-52.565-174.379-100.096-60.075-60.075-100.309-139.861-110.123-228.864zM414.763 140.416c-63.232 94.976-103.936 207.061-113.877 328.917h-170.539c9.813-89.003 50.048-168.789 110.123-228.864 47.531-47.488 107.349-82.603 174.293-100.053zM512.171 42.667c0 0 0 0 0 0-129.877 0.043-247.211 52.608-332.032 137.472-84.907 84.864-137.472 202.283-137.472 331.861s52.565 246.997 137.472 331.861c84.821 84.864 202.155 137.429 331.691 137.472 0 0 0 0 0 0 129.877-0.043 247.168-52.608 332.032-137.472 84.907-84.864 137.472-202.283 137.472-331.861s-52.565-246.997-137.472-331.861c-84.821-84.864-202.155-137.429-331.691-137.472zM637.696 554.667c-10.752 118.955-56.149 228.693-125.653 317.909-73.771-94.763-115.456-205.568-125.653-317.909zM511.957 151.424c73.771 94.763 115.456 205.568 125.653 317.909h-251.307c10.752-118.955 56.149-228.693 125.653-317.909z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "globe"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 121,
+ "paths": [
+ "M128 85.333c-23.552 0-42.667 19.115-42.667 42.667v298.667c0 23.552 19.115 42.667 42.667 42.667h298.667c23.552 0 42.667-19.115 42.667-42.667v-298.667c0-23.552-19.115-42.667-42.667-42.667zM170.667 170.667h213.333v213.333h-213.333zM597.333 85.333c-23.552 0-42.667 19.115-42.667 42.667v298.667c0 23.552 19.115 42.667 42.667 42.667h298.667c23.552 0 42.667-19.115 42.667-42.667v-298.667c0-23.552-19.115-42.667-42.667-42.667zM640 170.667h213.333v213.333h-213.333zM597.333 554.667c-23.552 0-42.667 19.115-42.667 42.667v298.667c0 23.552 19.115 42.667 42.667 42.667h298.667c23.552 0 42.667-19.115 42.667-42.667v-298.667c0-23.552-19.115-42.667-42.667-42.667zM640 640h213.333v213.333h-213.333zM128 554.667c-23.552 0-42.667 19.115-42.667 42.667v298.667c0 23.552 19.115 42.667 42.667 42.667h298.667c23.552 0 42.667-19.115 42.667-42.667v-298.667c0-23.552-19.115-42.667-42.667-42.667zM170.667 640h213.333v213.333h-213.333z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "grid"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 122,
+ "paths": [
+ "M896 554.667v213.333c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-682.667c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-213.333zM270.677 237.141c2.816-5.589 6.827-10.496 11.605-14.379 7.339-5.931 16.512-9.429 26.624-9.429h405.888c6.4 0.043 12.587 1.451 18.176 4.011 8.576 3.925 15.787 10.624 20.352 19.797l116.267 232.192h-715.179zM194.389 198.912l-146.816 293.205c-1.323 2.517-2.389 5.163-3.2 7.979-1.195 4.011-1.749 8.021-1.707 11.904v256c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h682.667c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-256c0-6.443-1.408-12.501-3.883-17.792-0.213-0.427-0.427-0.896-0.64-1.323l-0.384-0.768-146.816-293.205c-13.44-27.051-35.371-47.403-61.141-59.179-16.555-7.552-34.645-11.605-53.077-11.733h-406.485c-30.336 0-58.325 10.624-80.341 28.459-14.123 11.435-25.813 25.856-34.176 42.453zM256 725.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667zM426.667 725.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hard-drive"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 123,
+ "paths": [
+ "M606.549 426.667l-18.944 170.667h-170.155l18.944-170.667zM640.256 123.307l-24.235 218.027h-170.155l23.168-208.64c2.603-23.424-14.293-44.501-37.675-47.104s-44.501 14.293-47.104 37.717l-24.235 218.027h-189.355c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h179.883l-18.944 170.667h-160.939c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h151.424l-23.168 208.64c-2.603 23.424 14.293 44.501 37.675 47.104s44.501-14.293 47.104-37.675l24.277-218.069h170.155l-23.168 208.64c-2.603 23.424 14.293 44.501 37.675 47.104s44.501-14.293 47.104-37.675l24.235-218.069h189.355c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-179.883l18.944-170.667h160.939c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-151.424l23.168-208.64c2.603-23.424-14.293-44.501-37.675-47.104s-44.501 14.293-47.104 37.675z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hash"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 124,
+ "paths": [
+ "M853.333 810.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-42.667c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-128c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h85.333v128zM170.667 810.667v-170.667h85.333c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v128c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-42.667c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165zM85.333 810.667c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h42.667c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-128c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-85.333v-42.667c0-94.251 38.144-179.541 99.968-241.365s147.115-99.968 241.365-99.968 179.541 38.144 241.365 99.968 99.968 147.115 99.968 241.365v42.667h-85.333c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v128c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h42.667c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-298.667c0-117.803-47.787-224.555-124.971-301.696s-183.893-124.971-301.696-124.971-224.555 47.787-301.696 124.971-124.971 183.893-124.971 301.696v256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "headphones"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 125,
+ "paths": [
+ "M859.008 226.859c37.547 37.589 56.277 86.656 56.277 135.851s-18.773 98.261-56.277 135.765l-347.008 347.008-347.008-347.008c-37.504-37.504-56.235-86.571-56.235-135.808s18.731-98.304 56.235-135.808 86.571-56.235 135.808-56.235 98.304 18.731 135.808 56.235l45.227 45.227c16.683 16.683 43.691 16.683 60.331 0l45.312-45.312c37.504-37.504 86.571-56.235 135.765-56.192s98.261 18.773 135.765 56.277zM919.339 166.528c-54.144-54.144-125.184-81.237-196.096-81.28s-141.952 27.051-196.139 81.195l-15.104 15.147-15.061-15.061c-54.144-54.144-125.227-81.237-196.139-81.237s-141.995 27.093-196.139 81.237-81.237 125.227-81.237 196.139 27.093 141.995 81.237 196.139l377.173 377.173c16.683 16.683 43.691 16.683 60.331 0l377.173-377.173c54.144-54.144 81.237-125.184 81.28-196.096s-27.051-141.952-81.28-196.181z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "heart"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 126,
+ "paths": [
+ "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM896 512c0 106.069-42.923 201.984-112.469 271.531s-165.461 112.469-271.531 112.469-201.984-42.923-271.531-112.469-112.469-165.461-112.469-271.531 42.923-201.984 112.469-271.531 165.461-112.469 271.531-112.469 201.984 42.923 271.531 112.469 112.469 165.461 112.469 271.531zM428.075 398.165c7.808-22.229 23.851-39.168 43.605-48.64s42.965-11.392 65.195-3.541c19.541 6.869 34.944 20.053 44.8 36.651 7.808 13.099 12.117 28.373 12.203 44.245 0 6.613-1.664 13.184-4.992 19.797-3.413 6.827-8.661 13.867-15.701 20.907-30.251 30.251-78.123 46.592-78.123 46.592-22.357 7.467-34.432 31.616-26.965 53.973s31.616 34.432 53.973 26.965c0 0 65.877-21.589 111.488-67.2 11.904-11.904 23.253-26.197 31.701-43.093 8.533-17.067 13.995-36.608 13.995-58.411-0.171-31.189-8.704-61.312-24.192-87.424-19.755-33.195-50.773-59.819-89.813-73.557-44.459-15.616-91.093-11.733-130.432 7.125s-71.595 52.821-87.211 97.28c-7.851 22.229 3.84 46.592 26.069 54.4s46.592-3.883 54.4-26.069zM512 768c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "help-circle"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 127,
+ "paths": [
+ "M853.333 682.667c-0.043 5.163-1.067 10.496-2.987 15.445-3.413 8.789-9.6 16.384-18.176 21.333l-298.624 170.624c-4.779 2.731-9.899 4.48-15.147 5.291-9.301 1.451-18.987-0.128-27.904-5.291l-298.283-170.453c-4.736-2.773-8.832-6.315-12.16-10.453-5.931-7.296-9.387-16.427-9.387-26.496v-341.035c0.043-5.461 1.067-10.795 2.987-15.744 3.413-8.789 9.6-16.384 18.176-21.333l298.624-170.624c4.779-2.731 9.899-4.48 15.147-5.291 9.301-1.451 18.987 0.128 27.904 5.291l298.283 170.453c4.736 2.773 8.832 6.315 12.16 10.453 5.931 7.296 9.387 16.427 9.387 26.496zM938.667 682.667v-341.333c-0.043-30.293-10.581-58.155-28.331-80.128-9.813-12.203-21.845-22.528-35.456-30.507l-299.051-170.88c-26.027-15.019-55.467-19.84-83.371-15.531-15.488 2.432-30.507 7.637-44.245 15.488l-298.709 170.709c-26.368 15.232-45.227 38.272-55.424 64.597-5.675 14.592-8.619 30.165-8.747 45.952v341.632c0.043 30.293 10.581 58.155 28.331 80.128 9.813 12.203 21.845 22.528 35.456 30.507l299.051 170.88c26.027 15.019 55.467 19.84 83.371 15.531 15.488-2.432 30.507-7.637 44.245-15.488l298.709-170.709c26.368-15.232 45.227-38.272 55.424-64.597 5.675-14.592 8.619-30.165 8.747-46.251z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hexagon"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 128,
+ "paths": [
+ "M101.803 350.336c-10.069 7.851-16.469 20.011-16.469 33.664v469.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h597.333c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-469.333c-0.043-12.8-5.717-25.301-16.469-33.664l-384-298.667c-15.275-11.733-36.736-12.16-52.395 0zM682.667 896v-384c0-23.552-19.115-42.667-42.667-42.667h-256c-23.552 0-42.667 19.115-42.667 42.667v384h-128c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-448.469l341.333-265.472 341.333 265.472v448.469c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501zM426.667 896v-341.333h170.667v341.333z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "home"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 129,
+ "paths": [
+ "M213.333 85.333c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v597.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h597.333c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-597.333c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504zM469.333 362.667c0-29.44-11.989-56.149-31.232-75.435s-45.995-31.232-75.435-31.232-56.149 11.989-75.435 31.232-31.232 45.995-31.232 75.435 11.989 56.149 31.232 75.435 45.995 31.232 75.435 31.232 56.149-11.989 75.435-31.232 31.232-45.995 31.232-75.435zM384 362.667c0 5.888-2.347 11.179-6.229 15.104s-9.216 6.229-15.104 6.229-11.179-2.347-15.104-6.229-6.229-9.216-6.229-15.104 2.347-11.179 6.229-15.104 9.216-6.229 15.104-6.229 11.179 2.347 15.104 6.229 6.229 9.216 6.229 15.104zM316.331 853.333l366.336-366.336 170.667 170.667v153.003c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501zM853.333 537.003l-140.501-140.501c-16.683-16.683-43.691-16.683-60.331 0l-454.144 454.144c-5.76-2.133-10.88-5.504-15.189-9.813-7.765-7.765-12.501-18.389-12.501-30.165v-597.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h597.333c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "image"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 130,
+ "paths": [
+ "M896 554.667v213.333c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-682.667c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-213.333h190.507l72.661 109.013c7.765 11.52 20.736 18.987 35.499 18.987h170.667c13.909-0.085 27.307-6.741 35.499-18.987l72.661-109.013zM270.677 237.141c2.816-5.589 6.827-10.496 11.605-14.379 7.339-5.931 16.512-9.429 26.624-9.429h405.888c6.4 0.043 12.587 1.451 18.176 4.011 8.576 3.925 15.787 10.624 20.352 19.797l116.267 232.192h-186.923c-14.763 0-27.733 7.467-35.499 18.987l-72.661 109.013h-125.013l-72.661-109.013c-8.192-12.245-21.589-18.901-35.499-18.987h-186.923zM194.389 198.912l-146.816 293.205c-1.323 2.517-2.389 5.163-3.2 7.979-1.195 4.011-1.749 8.021-1.707 11.904v256c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h682.667c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-256c0-6.443-1.408-12.501-3.883-17.792-0.213-0.427-0.427-0.896-0.64-1.323l-0.384-0.768-146.816-293.205c-13.44-27.051-35.371-47.403-61.141-59.179-16.555-7.552-34.645-11.605-53.077-11.733h-406.485c-30.336 0-58.325 10.624-80.341 28.459-14.123 11.435-25.813 25.856-34.176 42.453z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "inbox"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 131,
+ "paths": [
+ "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM896 512c0 106.069-42.923 201.984-112.469 271.531s-165.461 112.469-271.531 112.469-201.984-42.923-271.531-112.469-112.469-165.461-112.469-271.531 42.923-201.984 112.469-271.531 165.461-112.469 271.531-112.469 201.984 42.923 271.531 112.469 112.469 165.461 112.469 271.531zM554.667 682.667v-170.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v170.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM512 384c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "info"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 132,
+ "paths": [
+ "M298.667 42.667c-70.699 0-134.741 28.715-181.035 74.965s-74.965 110.336-74.965 181.035v426.667c0 70.699 28.715 134.741 74.965 181.035s110.336 74.965 181.035 74.965h426.667c70.699 0 134.741-28.715 181.035-74.965s74.965-110.336 74.965-181.035v-426.667c0-70.699-28.715-134.741-74.965-181.035s-110.336-74.965-181.035-74.965zM298.667 128h426.667c47.147 0 89.728 19.072 120.661 50.005s50.005 73.515 50.005 120.661v426.667c0 47.147-19.072 89.728-50.005 120.661s-73.515 50.005-120.661 50.005h-426.667c-47.147 0-89.728-19.072-120.661-50.005s-50.005-73.515-50.005-120.661v-426.667c0-47.147 19.072-89.728 50.005-120.661s73.515-50.005 120.661-50.005zM724.864 478.848c-6.4-41.472-24.363-79.232-50.944-109.525-32.171-36.736-76.971-62.507-128.384-70.144-19.797-3.157-41.387-3.285-63.019-0.085-58.283 8.619-107.563 40.149-140.032 83.925s-48.341 100.139-39.68 158.379 40.149 107.563 83.925 140.032 100.139 48.341 158.379 39.68 107.563-40.149 140.032-83.925 48.341-100.139 39.68-158.379zM640.469 491.392c5.205 34.987-4.267 68.651-23.808 95.019s-49.067 45.184-84.011 50.347-68.651-4.267-95.019-23.808-45.184-49.067-50.347-84.011 4.267-68.651 23.808-95.019 49.067-45.184 84.011-50.347c13.355-1.963 26.24-1.792 37.12-0.085 31.573 4.693 58.283 20.053 77.568 42.069 16 18.261 26.88 41.088 30.72 65.835zM746.667 320c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "instagram"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 133,
+ "paths": [
+ "M578.432 213.333l-224 597.333h-141.099c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h384c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-151.765l224-597.333h141.099c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-384c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "italic"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 134,
+ "paths": [
+ "M865.835 55.168l-85.333 85.333c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l85.333-85.333c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0zM515.925 464.981c-53.845-53.077-124.075-79.744-194.261-79.915-70.485-0.128-141.141 26.453-195.328 79.915-54.485 53.76-82.048 124.629-82.56 195.541s26.197 142.165 79.957 196.651c57.173 56.448 128.384 83.029 199.296 82.56s141.781-28.032 195.541-82.56 80.384-125.739 79.915-196.651-28.032-141.781-82.56-195.541zM456.021 525.739c37.76 37.248 56.832 86.187 57.131 135.381s-18.091 98.389-55.339 136.149-86.187 56.832-135.381 57.131-98.389-18.091-136.149-55.339c-39.083-39.552-57.472-88.747-57.131-137.941s19.413-98.133 57.131-135.381c37.504-36.992 86.315-55.424 135.211-55.296 48.683 0.085 97.237 18.56 134.485 55.296zM516.139 525.525l175.36-175.36c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-175.36 175.36c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0zM631.168 350.165l128 128c16.683 16.683 43.691 16.683 60.331 0l149.333-149.333c16.683-16.683 16.683-43.691 0-60.331l-128-128c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l97.835 97.835-89.003 89.003-97.835-97.835c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331zM691.499 350.165l149.333-149.333c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-149.333 149.333c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "key"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 135,
+ "paths": [
+ "M512 133.035l331.264 165.632-331.264 165.632-331.264-165.632zM492.928 47.189l-426.667 213.333c-21.077 10.539-29.611 36.139-19.072 57.216 4.309 8.661 11.136 15.189 19.072 19.072l426.667 213.333c12.459 6.229 26.453 5.803 38.144 0l426.667-213.333c21.077-10.539 29.611-36.181 19.072-57.259-4.309-8.619-11.179-15.147-19.072-19.072l-426.667-213.333c-12.459-6.229-26.453-5.803-38.144 0zM66.261 763.477l426.667 213.333c12.459 6.229 26.453 5.803 38.144 0l426.667-213.333c21.077-10.539 29.611-36.181 19.072-57.259s-36.181-29.611-57.259-19.072l-407.552 203.819-407.595-203.776c-21.077-10.539-46.72-2.005-57.259 19.072s-2.005 46.72 19.072 57.259zM66.261 550.144l426.667 213.333c12.459 6.229 26.453 5.803 38.144 0l426.667-213.333c21.077-10.539 29.611-36.181 19.072-57.259s-36.181-29.611-57.259-19.072l-407.552 203.819-407.595-203.776c-21.077-10.539-46.72-2.005-57.259 19.072s-2.005 46.72 19.072 57.259z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "layers"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 136,
+ "paths": [
+ "M213.333 85.333c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v597.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h597.333c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-597.333c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504zM853.333 341.333h-682.667v-128c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h597.333c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165zM341.333 426.667v426.667h-128c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-384zM426.667 853.333v-426.667h426.667v384c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "layout"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 137,
+ "paths": [
+ "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM640 512c0 35.371-14.293 67.285-37.504 90.496s-55.125 37.504-90.496 37.504-67.285-14.293-90.496-37.504-37.504-55.125-37.504-90.496 14.293-67.285 37.504-90.496 55.125-37.504 90.496-37.504 67.285 14.293 90.496 37.504 37.504 55.125 37.504 90.496zM751.701 211.968l-122.027 122.027c0 0 0 0 0 0-33.749-22.315-74.197-35.328-117.675-35.328s-83.925 13.013-117.632 35.371l-122.027-122.027c65.664-52.608 148.992-84.011 239.659-84.011s173.995 31.403 239.701 83.968zM812.032 272.299c52.565 65.707 83.968 149.035 83.968 239.701s-31.403 173.995-83.968 239.701l-122.027-122.027c22.315-33.749 35.328-74.197 35.328-117.675s-13.013-83.925-35.371-117.632zM334.037 629.632l-122.027 122.027c-52.608-65.664-84.011-148.992-84.011-239.659s31.403-173.995 83.968-239.701l122.027 122.027c-22.315 33.749-35.328 74.197-35.328 117.675s13.013 83.925 35.371 117.632zM272.299 812.032l122.027-122.027c33.749 22.315 74.197 35.328 117.675 35.328s83.925-13.013 117.632-35.371l122.027 122.027c-65.664 52.608-148.992 84.011-239.659 84.011s-173.995-31.403-239.701-83.968z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "life-buoy"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 138,
+ "paths": [
+ "M392.491 580.224c42.325 56.619 103.68 90.709 168.448 100.053s133.248-6.059 189.867-48.384c10.197-7.637 19.84-16 27.947-24.235l127.787-127.787c49.621-51.371 73.472-117.376 72.363-182.827s-27.264-130.603-78.123-179.669c-50.005-48.299-114.688-72.192-179.157-71.808-63.659 0.341-127.317 24.363-176.512 71.808l-73.856 73.429c-16.725 16.597-16.811 43.648-0.171 60.331s43.648 16.811 60.331 0.171l72.917-72.491c32.853-31.659 75.221-47.659 117.76-47.915 43.051-0.256 86.016 15.659 119.381 47.872 33.92 32.768 51.328 76.075 52.096 119.808s-15.147 87.637-47.36 121.003l-128.213 128.213c-4.864 4.949-11.221 10.539-18.261 15.787-37.76 28.245-83.285 38.485-126.592 32.256s-84.096-28.928-112.299-66.688c-14.123-18.859-40.832-22.741-59.733-8.619s-22.741 40.832-8.619 59.733zM631.509 443.776c-42.325-56.619-103.68-90.709-168.448-100.053s-133.291 6.059-189.909 48.384c-10.197 7.637-19.797 16-27.947 24.235l-127.787 127.787c-49.621 51.371-73.472 117.376-72.363 182.827s27.264 130.603 78.123 179.669c50.005 48.299 114.688 72.192 179.157 71.808 63.659-0.341 127.317-24.363 176.512-71.808l73.515-73.515c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-72.363 72.448c-32.853 31.659-75.221 47.659-117.76 47.915-43.051 0.256-86.016-15.659-119.381-47.872-33.92-32.768-51.328-76.075-52.096-119.808s15.147-87.637 47.36-121.003l128.213-128.213c4.864-4.949 11.221-10.539 18.261-15.787 37.76-28.245 83.285-38.485 126.592-32.256s84.096 28.928 112.299 66.688c14.123 18.859 40.832 22.741 59.733 8.619s22.741-40.832 8.619-59.733z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "link"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 139,
+ "paths": [
+ "M640 341.333h128c47.147 0 89.728 19.072 120.661 50.005s50.005 73.515 50.005 120.661-19.072 89.728-50.005 120.661-73.515 50.005-120.661 50.005h-128c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h128c70.699 0 134.741-28.715 181.035-74.965s74.965-110.336 74.965-181.035-28.715-134.741-74.965-181.035-110.336-74.965-181.035-74.965h-128c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM384 682.667h-128c-47.147 0-89.728-19.072-120.661-50.005s-50.005-73.515-50.005-120.661 19.072-89.728 50.005-120.661 73.515-50.005 120.661-50.005h128c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-128c-70.699 0-134.741 28.715-181.035 74.965s-74.965 110.336-74.965 181.035 28.715 134.741 74.965 181.035 110.336 74.965 181.035 74.965h128c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM341.333 554.667h341.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-341.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "link-2"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 140,
+ "paths": [
+ "M682.667 298.667c-82.475 0-157.184 33.493-211.2 87.467s-87.467 128.725-87.467 211.2v298.667c0 23.552 19.115 42.667 42.667 42.667h170.667c23.552 0 42.667-19.115 42.667-42.667v-298.667c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501 22.4 4.736 30.165 12.501 12.501 18.389 12.501 30.165v298.667c0 23.552 19.115 42.667 42.667 42.667h170.667c23.552 0 42.667-19.115 42.667-42.667v-298.667c0-82.475-33.493-157.184-87.467-211.2s-128.725-87.467-211.2-87.467zM682.667 384c58.923 0 112.213 23.851 150.869 62.464s62.464 91.947 62.464 150.869v256h-85.333v-256c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504-67.413 14.379-90.496 37.504-37.504 55.168-37.504 90.496v256h-85.333v-256c0-58.923 23.851-112.213 62.464-150.869s91.947-62.464 150.869-62.464zM85.333 341.333c-23.552 0-42.667 19.115-42.667 42.667v512c0 23.552 19.115 42.667 42.667 42.667h170.667c23.552 0 42.667-19.115 42.667-42.667v-512c0-23.552-19.115-42.667-42.667-42.667zM128 426.667h85.333v426.667h-85.333zM298.667 170.667c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504-67.413 14.379-90.496 37.504-37.504 55.168-37.504 90.496 14.379 67.413 37.504 90.496 55.168 37.504 90.496 37.504 67.413-14.379 90.496-37.504 37.504-55.168 37.504-90.496zM213.333 170.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501-22.4-4.736-30.165-12.501-12.501-18.389-12.501-30.165 4.736-22.4 12.501-30.165 18.389-12.501 30.165-12.501 22.4 4.736 30.165 12.501 12.501 18.389 12.501 30.165z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "linkedin"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 141,
+ "paths": [
+ "M341.333 298.667h554.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-554.667c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM341.333 554.667h554.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-554.667c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM341.333 810.667h554.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-554.667c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM128 298.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667zM128 554.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667zM128 810.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "list"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 142,
+ "paths": [
+ "M469.333 85.333v170.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-170.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM469.333 768v170.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-170.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM180.181 240.512l120.747 120.747c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-120.747-120.747c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331zM662.741 723.072l120.747 120.747c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-120.747-120.747c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331zM85.333 554.667h170.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-170.667c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM768 554.667h170.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-170.667c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM240.512 843.819l120.747-120.747c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-120.747 120.747c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0zM723.072 361.259l120.747-120.747c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-120.747 120.747c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "loader"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 143,
+ "paths": [
+ "M213.333 512h597.333c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v298.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-597.333c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-298.667c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501zM768 426.667v-128c0-70.699-28.715-134.741-74.965-181.035s-110.336-74.965-181.035-74.965-134.741 28.715-181.035 74.965-74.965 110.336-74.965 181.035v128h-42.667c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v298.667c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h597.333c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-298.667c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504zM341.333 426.667v-128c0-47.147 19.072-89.728 50.005-120.661s73.515-50.005 120.661-50.005 89.728 19.072 120.661 50.005 50.005 73.515 50.005 120.661v128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "lock"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 144,
+ "paths": [
+ "M640 170.667h170.667c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v597.333c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-170.667c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h170.667c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-597.333c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-170.667c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM537.003 469.333h-409.003c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h409.003l-140.501 140.501c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l213.333-213.333c4.096-4.096 7.168-8.789 9.259-13.824s3.243-10.539 3.243-16.341c0-5.547-1.067-11.136-3.243-16.341-2.091-5.035-5.163-9.728-9.259-13.824l-213.333-213.333c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "log-in"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 145,
+ "paths": [
+ "M384 853.333h-170.667c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-597.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h170.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-170.667c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v597.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h170.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM793.003 469.333h-409.003c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h409.003l-140.501 140.501c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l213.333-213.333c3.925-3.925 7.083-8.619 9.259-13.824 6.4-15.445 3.328-33.92-9.259-46.507l-213.333-213.333c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "log-out"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 146,
+ "paths": [
+ "M128 337.963l359.552 251.691c14.507 10.027 33.92 10.496 48.939 0l359.509-251.691v430.037c0 11.605-4.693 22.229-12.587 30.080s-18.475 12.587-30.080 12.587h-682.667c-11.605 0-22.229-4.693-30.080-12.587s-12.587-18.475-12.587-30.080zM42.667 255.275c0 0.427 0 0.853 0 1.28v511.445c0 35.328 14.507 67.371 37.547 90.453s55.125 37.547 90.453 37.547h682.667c35.328 0 67.371-14.507 90.453-37.547s37.547-55.125 37.547-90.453v-511.488c0-0.427 0-0.853 0-1.28-0.213-35.029-14.635-66.773-37.547-89.685-23.083-23.040-55.125-37.547-90.453-37.547h-682.667c-35.328 0-67.371 14.507-90.453 37.547-22.912 22.912-37.333 54.656-37.547 89.728zM891.477 236.971l-379.477 265.6-379.477-265.6c2.048-4.096 4.779-7.808 8.021-11.051 7.893-7.893 18.517-12.587 30.123-12.587h682.667c11.605 0 22.229 4.693 30.080 12.587 3.243 3.243 5.973 6.997 8.021 11.051z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mail"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 147,
+ "paths": [
+ "M298.667 158.848v584.405l-213.333 121.899v-584.405zM725.333 865.152v-584.405l213.333-121.899v584.363zM662.827 976.427c3.499 1.835 7.253 3.2 11.221 4.011 1.408 0.299 2.859 0.512 4.309 0.64s2.901 0.213 4.352 0.213c-0.043 0.043-0.043 0.043-0.043 0.043s0 0 0.043 0c7.381 0 14.677-1.963 21.163-5.632l0.64-0.384 298.027-170.283c13.653-7.808 21.376-22.101 21.461-37.035v-682.667c0-23.552-19.115-42.667-42.667-42.667-7.808 0-15.104 2.091-21.163 5.632l-278.827 159.317-320.128-160.085c-3.541-1.792-7.296-3.2-11.264-4.011-1.451-0.299-2.859-0.512-4.309-0.64s-2.901-0.213-4.352-0.213c0.043 0 0.043 0 0.043 0s0 0-0.043 0c-7.381 0-14.677 1.963-21.12 5.632l-0.64 0.341-298.027 170.325c-13.696 7.808-21.419 22.101-21.504 37.035v682.667c0 23.552 19.115 42.667 42.667 42.667 7.808 0 15.104-2.091 21.163-5.632l278.827-159.317zM640 282.368v587.264l-256-128v-587.264z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "map"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 148,
+ "paths": [
+ "M938.667 426.667c0-117.803-47.787-224.555-124.971-301.696s-183.893-124.971-301.696-124.971-224.555 47.787-301.696 124.971-124.971 183.893-124.971 301.696c0 24.277 2.261 48.128 6.4 71.509 11.691 66.048 38.357 128.171 71.765 184.32 116.565 195.883 324.821 334.336 324.821 334.336 14.123 9.259 32.64 9.771 47.317 0 0 0 208.299-138.453 324.821-334.336 33.408-56.149 60.075-118.272 71.765-184.32 4.181-23.381 6.443-47.232 6.443-71.509zM853.333 426.667c0 18.944-1.749 37.845-5.077 56.661-9.429 53.333-31.445 105.728-61.099 155.563-81.579 137.131-214.869 245.205-271.744 287.573-59.648-39.083-195.755-148.352-278.613-287.573-29.653-49.835-51.669-102.229-61.099-155.563-3.285-18.816-5.035-37.717-5.035-56.661 0-94.251 38.144-179.541 99.968-241.365s147.115-99.968 241.365-99.968 179.541 38.144 241.365 99.968 99.968 147.115 99.968 241.365zM682.667 426.667c0-47.104-19.157-89.856-50.005-120.661s-73.557-50.005-120.661-50.005-89.856 19.157-120.661 50.005-50.005 73.557-50.005 120.661 19.157 89.856 50.005 120.661 73.557 50.005 120.661 50.005 89.856-19.157 120.661-50.005 50.005-73.557 50.005-120.661zM597.333 426.667c0 23.595-9.515 44.843-25.003 60.331s-36.736 25.003-60.331 25.003-44.843-9.515-60.331-25.003-25.003-36.736-25.003-60.331 9.515-44.843 25.003-60.331 36.736-25.003 60.331-25.003 44.843 9.515 60.331 25.003 25.003 36.736 25.003 60.331z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "map-pin"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 149,
+ "paths": [
+ "M341.333 85.333h-128c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v128c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-128c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h128c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM938.667 341.333v-128c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-128c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h128c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v128c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM682.667 938.667h128c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-128c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v128c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-128c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM85.333 682.667v128c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h128c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-128c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-128c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "maximize"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 150,
+ "paths": [
+ "M793.003 170.667l-225.835 225.835c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l225.835-225.835v153.003c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-256c0-5.803-1.152-11.307-3.243-16.341s-5.163-9.728-9.216-13.781c-0.043-0.043-0.043-0.043-0.085-0.085-3.925-3.925-8.619-7.083-13.781-9.216-5.035-2.091-10.539-3.243-16.341-3.243h-256c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM230.997 853.333l225.835-225.835c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-225.835 225.835v-153.003c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v256c0 23.552 19.115 42.667 42.667 42.667h256c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "maximize-2"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 151,
+ "paths": [
+ "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM896 512c0 106.069-42.923 201.984-112.469 271.531s-165.461 112.469-271.531 112.469-201.984-42.923-271.531-112.469-112.469-165.461-112.469-271.531 42.923-201.984 112.469-271.531 165.461-112.469 271.531-112.469 201.984 42.923 271.531 112.469 112.469 165.461 112.469 271.531zM341.333 682.667h341.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-341.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM384 426.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667zM640 426.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "meh"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 152,
+ "paths": [
+ "M128 554.667h768c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-768c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM128 298.667h768c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-768c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM128 810.667h768c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-768c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "menu"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 153,
+ "paths": [
+ "M938.667 490.539v-21.205c0-0.725-0.043-1.621-0.085-2.475-5.803-99.755-47.488-190.336-112.725-258.176-68.352-71.125-162.731-117.419-268.843-123.264-0.683-0.043-1.536-0.085-2.347-0.085h-20.864c-59.947-0.683-122.965 13.227-181.931 43.008-52.181 26.496-97.749 63.488-133.931 108.16-56.405 69.717-89.899 158.080-89.941 253.696-0.597 54.4 10.795 111.36 35.157 165.419l-75.605 226.859c-2.816 8.363-3.072 17.835 0 26.965 7.467 22.357 31.616 34.432 53.973 26.965l226.731-75.563c49.493 22.485 105.984 35.243 165.376 35.115 58.539-0.384 115.797-13.141 168.149-36.949 81.579-37.163 151.040-101.248 193.749-186.667 27.477-53.291 43.307-115.84 43.136-181.803zM853.333 490.795c0.128 52.267-12.459 101.333-33.664 142.464-34.176 68.352-88.832 118.827-153.259 148.139-41.387 18.859-86.827 28.971-133.376 29.269-52.096 0.128-101.163-12.459-142.293-33.664-10.624-5.504-22.528-6.059-33.067-2.56l-162.261 54.101 54.101-162.261c3.755-11.221 2.56-22.912-2.389-32.725-23.552-46.677-34.304-96.171-33.792-142.421 0.043-76.331 26.411-145.92 70.955-200.917 28.629-35.371 64.768-64.725 106.24-85.76 46.592-23.552 96.085-34.304 142.336-33.792h19.456c83.712 4.565 158.037 41.003 212.011 97.152 51.285 53.376 84.139 124.416 89.003 202.795z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "message-circle"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 154,
+ "paths": [
+ "M938.667 640v-426.667c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-597.333c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v682.667c0 10.923 4.181 21.845 12.501 30.165 16.683 16.683 43.691 16.683 60.331 0l158.165-158.165h494.336c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496zM853.333 640c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-512c-11.776 0-22.443 4.779-30.165 12.501l-97.835 97.835v-579.669c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h597.333c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "message-square"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 155,
+ "paths": [
+ "M512 85.333c23.595 0 44.843 9.515 60.331 25.003s25.003 36.736 25.003 60.331v341.333c0 23.595-9.515 44.843-25.003 60.331s-36.736 25.003-60.331 25.003-44.843-9.515-60.331-25.003-25.003-36.736-25.003-60.331v-341.333c0-23.595 9.515-44.843 25.003-60.331s36.736-25.003 60.331-25.003zM512 0c-47.104 0-89.856 19.157-120.661 50.005s-50.005 73.557-50.005 120.661v341.333c0 47.104 19.157 89.856 50.005 120.661s73.557 50.005 120.661 50.005 89.856-19.157 120.661-50.005 50.005-73.557 50.005-120.661v-341.333c0-47.104-19.157-89.856-50.005-120.661s-73.557-50.005-120.661-50.005zM341.333 1024h341.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-128v-87.979c77.184-9.643 146.432-45.056 198.699-97.323 61.696-61.739 99.968-147.115 99.968-241.365v-85.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v85.333c0 70.699-28.587 134.656-74.965 181.035s-110.336 74.965-181.035 74.965-134.656-28.587-181.035-74.965-74.965-110.336-74.965-181.035v-85.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v85.333c0 94.251 38.272 179.627 99.968 241.365 52.267 52.267 121.472 87.68 198.699 97.323v87.979h-128c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mic"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 156,
+ "paths": [
+ "M534.016 594.347c-6.997 1.877-14.336 2.859-21.931 2.859-23.68-0.043-44.928-9.515-60.373-24.96-15.488-15.445-25.045-36.693-25.045-60.245v-25.003zM682.667 398.507v-227.84c0.043-47.061-19.072-89.813-49.877-120.704s-73.515-50.048-120.619-50.091c-43.264-0.043-82.901 16.085-113.024 42.752-27.136 24.021-46.592 56.619-54.357 93.739-4.821 23.083 9.984 45.653 33.067 50.475s45.653-9.984 50.475-33.067c3.925-18.773 13.739-35.2 27.349-47.275 14.933-13.227 34.389-21.205 55.808-21.291 24.363 0.128 45.483 9.643 60.885 25.045 15.488 15.531 25.003 36.779 24.96 60.416v227.84c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM768 426.667v85.333c0 16.043-1.493 31.573-3.968 44.587-4.352 23.168 10.88 45.483 34.048 49.835s45.483-10.88 49.835-34.048c3.499-18.517 5.419-39.339 5.419-60.373v-85.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM341.333 1024h341.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-128v-86.357c61.696-8.064 119.083-31.232 167.851-69.419l228.651 228.651c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-249.088-249.088c-1.92-3.371-4.309-6.528-7.211-9.344-2.688-2.645-5.632-4.821-8.747-6.613l-673.621-673.664c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l328.832 328.832v110.336c0.043 47.147 19.243 89.856 50.091 120.661s73.6 49.92 120.704 49.877c31.531-0.043 61.141-8.619 86.485-23.595l63.019 63.019c-40.917 29.568-88.661 45.568-137.045 47.915-4.011-1.237-8.235-1.877-12.587-1.877-4.395 0-8.576 0.64-12.587 1.877-60.459-2.944-119.979-27.179-166.613-72.832-49.195-48.171-74.795-111.275-76.715-175.189-0.085-4.779-0.085-9.557-0.085-9.557v-85.632c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v85.035c0 6.357 0.128 12.715 0.128 12.715 2.56 85.077 36.736 169.344 102.315 233.6 55.424 54.315 124.757 85.888 196.224 94.848v85.803h-128c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mic-off"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 157,
+ "paths": [
+ "M298.667 128v128c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-128c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h128c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-128c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM896 298.667h-128c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-128c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v128c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h128c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM725.333 896v-128c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h128c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-128c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v128c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM128 725.333h128c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v128c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-128c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-128c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "minimize"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 158,
+ "paths": [
+ "M700.331 384l225.835-225.835c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-225.835 225.835v-153.003c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v256c0 5.803 1.152 11.307 3.243 16.341s5.163 9.728 9.216 13.781c0.043 0.043 0.043 0.043 0.085 0.085 3.925 3.925 8.619 7.083 13.781 9.216 5.035 2.091 10.539 3.243 16.341 3.243h256c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM158.165 926.165l225.835-225.835v153.003c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-256c0-5.803-1.152-11.307-3.243-16.341s-5.163-9.728-9.216-13.781c-0.043-0.043-0.043-0.043-0.085-0.085-4.096-4.053-8.789-7.125-13.781-9.216-5.035-2.091-10.539-3.243-16.341-3.243h-256c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h153.003l-225.835 225.835c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "minimize-2"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 159,
+ "paths": [
+ "M213.333 554.667h597.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-597.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "minus"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 160,
+ "paths": [
+ "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM896 512c0 106.069-42.923 201.984-112.469 271.531s-165.461 112.469-271.531 112.469-201.984-42.923-271.531-112.469-112.469-165.461-112.469-271.531 42.923-201.984 112.469-271.531 165.461-112.469 271.531-112.469 201.984 42.923 271.531 112.469 112.469 165.461 112.469 271.531zM341.333 554.667h341.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-341.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "minus-circle"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 161,
+ "paths": [
+ "M213.333 85.333c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v597.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h597.333c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-597.333c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504zM213.333 170.667h597.333c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v597.333c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-597.333c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-597.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501zM341.333 554.667h341.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-341.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "minus-square"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 162,
+ "paths": [
+ "M512 682.667h-341.333c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-426.667c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h682.667c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v426.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501zM469.333 768v85.333h-128c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h341.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-128v-85.333h298.667c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-426.667c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-682.667c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v426.667c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "monitor"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 163,
+ "paths": [
+ "M938.496 549.632c0.939-9.941-1.621-20.309-8.021-29.056-13.867-19.029-40.576-23.211-59.605-9.344-40.533 29.568-87.893 46.336-136.021 49.579-58.368 3.925-117.973-12.075-168.533-49.408-56.875-42.027-91.264-103.040-100.992-167.893s5.291-133.291 47.317-190.123c6.059-8.149 9.216-18.56 8.149-29.483-2.261-23.467-23.125-40.619-46.592-38.315-96.341 9.387-184.064 50.347-251.52 113.109-74.069 68.907-123.819 164.139-133.845 272.469-10.837 117.291 26.923 227.968 96.683 311.936s171.605 141.355 288.939 152.192 227.968-26.923 311.936-96.683 141.355-171.605 152.192-288.939zM834.859 626.091c-20.907 58.155-56.96 108.501-103.083 146.816-67.243 55.851-155.648 86.016-249.515 77.355s-175.275-54.528-231.125-121.771-86.016-155.648-77.355-249.515c7.979-86.699 47.659-162.731 106.965-217.856 33.365-31.061 72.96-55.467 116.523-71.339-19.456 53.931-24.619 111.189-16.384 166.357 12.928 86.315 58.88 167.851 134.656 223.872 67.328 49.792 147.115 71.168 224.939 65.92 32.085-2.133 63.829-8.832 94.293-19.84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "moon"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 164,
+ "paths": [
+ "M597.333 512c0-23.552-9.6-44.928-25.003-60.331s-36.779-25.003-60.331-25.003-44.928 9.6-60.331 25.003-25.003 36.779-25.003 60.331 9.6 44.928 25.003 60.331 36.779 25.003 60.331 25.003 44.928-9.6 60.331-25.003 25.003-36.779 25.003-60.331zM896 512c0-23.552-9.6-44.928-25.003-60.331s-36.779-25.003-60.331-25.003-44.928 9.6-60.331 25.003-25.003 36.779-25.003 60.331 9.6 44.928 25.003 60.331 36.779 25.003 60.331 25.003 44.928-9.6 60.331-25.003 25.003-36.779 25.003-60.331zM298.667 512c0-23.552-9.6-44.928-25.003-60.331s-36.779-25.003-60.331-25.003-44.928 9.6-60.331 25.003-25.003 36.779-25.003 60.331 9.6 44.928 25.003 60.331 36.779 25.003 60.331 25.003 44.928-9.6 60.331-25.003 25.003-36.779 25.003-60.331z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "more-horizontal"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 165,
+ "paths": [
+ "M597.333 512c0-23.552-9.6-44.928-25.003-60.331s-36.779-25.003-60.331-25.003-44.928 9.6-60.331 25.003-25.003 36.779-25.003 60.331 9.6 44.928 25.003 60.331 36.779 25.003 60.331 25.003 44.928-9.6 60.331-25.003 25.003-36.779 25.003-60.331zM597.333 213.333c0-23.552-9.6-44.928-25.003-60.331s-36.779-25.003-60.331-25.003-44.928 9.6-60.331 25.003-25.003 36.779-25.003 60.331 9.6 44.928 25.003 60.331 36.779 25.003 60.331 25.003 44.928-9.6 60.331-25.003 25.003-36.779 25.003-60.331zM597.333 810.667c0-23.552-9.6-44.928-25.003-60.331s-36.779-25.003-60.331-25.003-44.928 9.6-60.331 25.003-25.003 36.779-25.003 60.331 9.6 44.928 25.003 60.331 36.779 25.003 60.331 25.003 44.928-9.6 60.331-25.003 25.003-36.779 25.003-60.331z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "more-vertical"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 166,
+ "paths": [
+ "M207.232 207.232l524.117 218.368-208.341 70.741c-12.16 4.181-22.272 13.653-26.667 26.667l-70.741 208.341zM555.093 615.424l225.408 225.408c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-225.408-225.408 250.368-85.035c22.315-7.595 34.261-31.829 26.667-54.101-4.096-12.075-13.056-21.077-23.979-25.643l-724.053-301.653c-21.76-9.045-46.72 1.237-55.808 22.997-4.565 10.923-4.224 22.699 0 32.811l301.653 724.053c9.045 21.76 34.048 32.043 55.808 22.997 11.733-4.907 20.139-14.421 23.979-25.643z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mouse-pointer"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 167,
+ "paths": [
+ "M469.333 188.331v281.003h-281.003l55.168-55.168c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-128 128c-7.723 7.723-12.501 18.389-12.501 30.165 0 5.803 1.152 11.307 3.243 16.341s5.163 9.728 9.259 13.824l128 128c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-55.168-55.168h281.003v281.003l-55.168-55.168c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l128 128c4.096 4.096 8.789 7.168 13.824 9.259s10.539 3.243 16.341 3.243c5.547 0 11.136-1.067 16.341-3.243 5.035-2.091 9.728-5.163 13.824-9.259l128-128c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-55.168 55.168v-281.003h281.003l-55.168 55.168c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l128-128c4.096-4.096 7.168-8.789 9.259-13.824 6.4-15.445 3.328-33.92-9.259-46.507l-128-128c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l55.168 55.168h-281.003v-281.003l55.168 55.168c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-128-128c-3.925-3.925-8.619-7.083-13.824-9.259-10.453-4.309-22.229-4.309-32.683 0-5.035 2.091-9.728 5.163-13.824 9.259l-128 128c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "move"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 168,
+ "paths": [
+ "M341.333 768c0 23.595-9.515 44.843-25.003 60.331s-36.736 25.003-60.331 25.003-44.843-9.515-60.331-25.003-25.003-36.736-25.003-60.331 9.515-44.843 25.003-60.331 36.736-25.003 60.331-25.003 44.843 9.515 60.331 25.003 25.003 36.736 25.003 60.331zM938.667 682.667v-554.667c0-2.133-0.171-4.565-0.597-6.997-3.883-23.253-25.856-38.955-49.109-35.072l-512 85.333c-20.309 3.456-35.627 20.992-35.627 42.069v406.827c-25.088-14.507-54.272-22.827-85.333-22.827-47.104 0-89.856 19.157-120.661 50.005s-50.005 73.557-50.005 120.661 19.157 89.856 50.005 120.661 73.557 50.005 120.661 50.005 89.856-19.157 120.661-50.005 50.005-73.557 50.005-120.661v-518.528l426.667-71.125v356.48c-25.088-14.507-54.272-22.827-85.333-22.827-47.104 0-89.856 19.157-120.661 50.005s-50.005 73.557-50.005 120.661 19.157 89.856 50.005 120.661 73.557 50.005 120.661 50.005 89.856-19.157 120.661-50.005 50.005-73.557 50.005-120.661zM853.333 682.667c0 23.595-9.515 44.843-25.003 60.331s-36.736 25.003-60.331 25.003-44.843-9.515-60.331-25.003-25.003-36.736-25.003-60.331 9.515-44.843 25.003-60.331 36.736-25.003 60.331-25.003 44.843 9.515 60.331 25.003 25.003 36.736 25.003 60.331z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "music"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 169,
+ "paths": [
+ "M109.739 430.763c-11.179 5.333-19.925 15.36-23.125 28.203-5.717 22.869 8.192 46.037 31.061 51.755l316.501 79.104 79.104 316.501c3.029 11.989 11.136 22.528 23.125 28.203 21.291 10.069 46.72 0.981 56.832-20.309l384-810.667c5.291-11.221 5.675-24.533 0-36.523-10.069-21.291-35.541-30.379-56.832-20.309zM253.995 456.875l594.987-281.856-281.856 594.987-56.405-225.707c-3.925-15.744-16.128-27.221-31.061-31.061z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "navigation"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 170,
+ "paths": [
+ "M552.021 70.571c-4.224-11.349-13.099-20.821-25.301-25.301-22.101-8.149-46.635 3.157-54.784 25.301l-298.667 810.667c-4.181 11.477-3.499 24.576 2.987 35.925 11.691 20.48 37.76 27.563 58.197 15.872l277.547-158.549 277.504 158.549c10.624 6.016 23.637 7.509 35.925 2.987 22.101-8.149 33.451-32.683 25.301-54.784zM512 208.768l218.155 592.085-196.992-112.555c-13.525-7.723-29.483-7.253-42.325 0l-196.992 112.555z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "navigation-2"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 171,
+ "paths": [
+ "M335.36 42.667c-10.923 0-21.845 4.181-30.165 12.501l-250.027 250.027c-7.723 7.723-12.501 18.389-12.501 30.165v353.28c0 10.923 4.181 21.845 12.501 30.165l250.027 250.027c7.723 7.723 18.389 12.501 30.165 12.501h353.28c10.923 0 21.845-4.181 30.165-12.501l250.027-250.027c7.723-7.723 12.501-18.389 12.501-30.165v-353.28c0-10.923-4.181-21.845-12.501-30.165l-250.027-250.027c-7.723-7.723-18.389-12.501-30.165-12.501zM353.024 128h317.952l225.024 225.024v317.952l-225.024 225.024h-317.952l-225.024-225.024v-317.952z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "octagon"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 172,
+ "paths": [
+ "M618.965 401.28l-106.965 61.867-297.003-171.819 107.136-61.227zM809.003 291.328l-104.789 60.629-296.277-170.88 82.517-47.147c4.779-2.731 9.899-4.48 15.147-5.291 9.301-1.451 18.987 0.128 27.904 5.291zM491.776 979.669c6.016 3.243 12.928 5.077 20.224 5.077 7.381 0 14.336-1.877 20.395-5.163 15.189-2.475 29.909-7.68 43.392-15.36l298.709-170.709c26.368-15.232 45.227-38.272 55.424-64.597 5.675-14.592 8.619-30.165 8.747-46.251v-341.333c0-20.395-4.821-39.723-13.397-56.917-0.939-3.029-2.219-5.973-3.883-8.832-1.963-3.371-4.267-6.357-6.912-8.96-1.323-1.835-2.731-3.669-4.139-5.419-9.813-12.203-21.845-22.528-35.456-30.507l-299.051-170.88c-26.027-15.019-55.467-19.84-83.371-15.531-15.488 2.432-30.507 7.637-44.245 15.488l-136.491 77.995c-8.96 1.749-17.323 6.4-23.595 13.483l-138.624 79.232c-16.341 9.429-29.824 21.888-40.149 36.267-2.56 2.56-4.864 5.547-6.784 8.832-1.664 2.901-2.987 5.888-3.925 8.96-1.707 3.413-3.243 6.955-4.608 10.496-5.632 14.635-8.576 30.208-8.704 45.995v341.632c0.043 30.293 10.581 58.155 28.331 80.128 9.813 12.203 21.845 22.528 35.456 30.507l299.051 170.88c13.824 7.979 28.587 13.099 43.605 15.445zM469.333 537.045v340.949l-277.12-158.336c-4.736-2.773-8.832-6.315-12.16-10.453-5.931-7.339-9.387-16.469-9.387-26.539v-318.379zM554.667 877.995v-340.949l298.667-172.757v318.379c-0.043 5.163-1.067 10.496-2.987 15.445-3.413 8.789-9.6 16.384-18.176 21.333z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "package"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 173,
+ "paths": [
+ "M884.608 441.301l-392.107 392.107c-41.685 41.685-96.256 62.507-150.955 62.507s-109.269-20.821-150.955-62.507-62.507-96.256-62.507-150.955 20.821-109.269 62.507-150.955l392.107-392.107c25.003-25.003 57.728-37.504 90.581-37.504s65.536 12.501 90.581 37.504 37.504 57.728 37.504 90.581-12.501 65.536-37.504 90.581l-392.533 392.107c-8.363 8.363-19.243 12.544-30.208 12.544s-21.845-4.181-30.208-12.501-12.501-19.2-12.501-30.208 4.181-21.845 12.501-30.208l362.24-361.813c16.683-16.64 16.683-43.648 0.043-60.331s-43.648-16.683-60.331-0.043l-362.24 361.813c-25.003 25.003-37.504 57.856-37.504 90.539s12.501 65.536 37.504 90.539 57.856 37.504 90.539 37.504 65.536-12.501 90.539-37.504l392.533-392.107c41.685-41.685 62.507-96.341 62.507-150.912s-20.864-109.269-62.507-150.912-96.341-62.507-150.912-62.507-109.269 20.864-150.912 62.507l-392.107 392.107c-58.325 58.325-87.509 134.869-87.509 211.285s29.184 152.96 87.509 211.285 134.869 87.509 211.285 87.509 152.96-29.184 211.285-87.509l392.107-392.107c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "paperclip"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 174,
+ "paths": [
+ "M256 128c-23.552 0-42.667 19.115-42.667 42.667v682.667c0 23.552 19.115 42.667 42.667 42.667h170.667c23.552 0 42.667-19.115 42.667-42.667v-682.667c0-23.552-19.115-42.667-42.667-42.667zM298.667 213.333h85.333v597.333h-85.333zM597.333 128c-23.552 0-42.667 19.115-42.667 42.667v682.667c0 23.552 19.115 42.667 42.667 42.667h170.667c23.552 0 42.667-19.115 42.667-42.667v-682.667c0-23.552-19.115-42.667-42.667-42.667zM640 213.333h85.333v597.333h-85.333z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pause"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 175,
+ "paths": [
+ "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM896 512c0 106.069-42.923 201.984-112.469 271.531s-165.461 112.469-271.531 112.469-201.984-42.923-271.531-112.469-112.469-165.461-112.469-271.531 42.923-201.984 112.469-271.531 165.461-112.469 271.531-112.469 201.984 42.923 271.531 112.469 112.469 165.461 112.469 271.531zM469.333 640v-256c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v256c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM640 640v-256c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v256c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pause-circle"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 176,
+ "paths": [
+ "M798.165 584.832l12.501-12.501 67.669 67.669-238.336 238.336-67.669-67.669 12.501-12.501zM96.085 44.032c-1.493-0.384-2.987-0.683-4.523-0.896-6.101-0.939-12.117-0.469-17.792 1.109-5.632 1.579-11.051 4.352-15.787 8.32-3.925 3.285-7.296 7.296-9.856 11.904-2.56 4.523-4.224 9.387-4.949 14.379-0.853 5.461-0.64 10.88 0.512 15.829 0.043 0.213 0.128 0.469 0.171 0.683l0.171 0.725 149.163 617.941c4.011 16.555 17.195 28.544 33.109 31.829l245.973 49.195c-6.016 15.317-2.859 33.408 9.557 45.781l128 128c16.683 16.683 43.691 16.683 60.331 0l298.667-298.667c16.683-16.683 16.683-43.691 0-60.331l-128-128c-12.373-12.373-30.464-15.573-45.781-9.557l-49.195-245.973c-3.328-16.725-16.043-29.184-31.829-33.109zM597.333 469.333c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504c-19.755 0-38.485 4.48-55.168 12.501l-191.445-191.445 444.8 107.349 54.187 270.891-181.035 181.035-270.891-54.187-107.392-444.757 191.445 191.445c-8.021 16.683-12.501 35.413-12.501 55.168 0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504 67.413-14.379 90.496-37.504 37.504-55.168 37.504-90.496zM512 469.333c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501-22.4-4.736-30.165-12.501-12.501-18.389-12.501-30.165c0-11.52 4.523-21.931 11.989-29.653 0.171-0.171 0.341-0.341 0.555-0.512s0.341-0.341 0.512-0.555c7.68-7.424 18.091-11.947 29.611-11.947 11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pen-tool"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 177,
+ "paths": [
+ "M780.501 183.168l-597.333 597.333c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l597.333-597.333c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0zM426.667 277.333c0-41.216-16.768-78.635-43.733-105.6s-64.384-43.733-105.6-43.733-78.635 16.768-105.6 43.733-43.733 64.384-43.733 105.6 16.768 78.635 43.733 105.6 64.384 43.733 105.6 43.733 78.635-16.768 105.6-43.733 43.733-64.384 43.733-105.6zM341.333 277.333c0 17.664-7.125 33.621-18.731 45.269s-27.605 18.731-45.269 18.731-33.621-7.125-45.269-18.731-18.731-27.605-18.731-45.269 7.125-33.621 18.731-45.269 27.605-18.731 45.269-18.731 33.621 7.125 45.269 18.731 18.731 27.605 18.731 45.269zM896 746.667c0-41.216-16.768-78.635-43.733-105.6s-64.384-43.733-105.6-43.733-78.635 16.768-105.6 43.733-43.733 64.384-43.733 105.6 16.768 78.635 43.733 105.6 64.384 43.733 105.6 43.733 78.635-16.768 105.6-43.733 43.733-64.384 43.733-105.6zM810.667 746.667c0 17.664-7.125 33.621-18.731 45.269s-27.605 18.731-45.269 18.731-33.621-7.125-45.269-18.731-18.731-27.605-18.731-45.269 7.125-33.621 18.731-45.269 27.605-18.731 45.269-18.731 33.621 7.125 45.269 18.731 18.731 27.605 18.731 45.269z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "percent"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 178,
+ "paths": [
+ "M981.333 721.92c0.683-30.464-10.069-59.904-28.715-82.901-19.627-24.149-48.171-41.259-82.133-46.080-34.133-4.181-72.32-13.397-110.336-27.563-18.475-6.784-38.101-9.301-57.344-7.424-28.288 2.731-55.765 14.891-77.611 36.48l-30.72 30.72c-75.52-47.659-143.36-113.792-195.541-195.797l30.976-30.976c13.739-14.080 24.021-30.976 30.165-49.323 9.045-26.965 9.131-57.003-1.664-85.803-12.331-32.128-22.101-70.144-27.477-110.72-4.437-30.464-19.456-57.387-41.088-76.971-22.997-20.736-53.589-33.237-86.485-32.896h-127.829c-3.755 0-7.765 0.171-11.648 0.512-35.157 3.2-65.792 20.395-86.741 45.483s-32.341 58.325-29.141 93.824c12.8 131.243 58.24 266.368 137.216 388.352 64.085 102.955 155.648 197.248 268.715 269.056 109.568 72.405 242.517 122.112 387.669 137.856 3.925 0.384 8.149 0.555 12.288 0.555 35.328-0.128 67.328-14.635 90.368-37.845s37.248-55.339 37.12-90.496zM896 721.92v128c0.043 11.947-4.651 22.613-12.373 30.379s-18.304 12.587-30.123 12.629c-134.357-14.336-254.336-59.349-352.555-124.245-103.595-65.835-185.984-150.912-243.285-242.944-72.405-111.787-113.28-233.856-124.757-351.488-1.024-11.435 2.731-22.443 9.771-30.891s17.195-14.080 28.928-15.147l131.755-0.213c11.563-0.128 21.632 4.011 29.312 10.923 7.253 6.571 12.288 15.616 13.781 25.941 6.059 45.739 17.408 90.325 32.299 129.067 3.456 9.216 3.413 19.072 0.427 28.075-2.091 6.187-5.589 11.989-10.325 16.853l-53.845 53.803c-13.824 13.824-16.171 34.731-6.912 51.243 67.584 118.827 163.797 211.499 272.256 272.128 16.939 9.472 37.632 6.144 50.987-7.083l54.187-54.187c7.083-6.997 16.085-10.965 25.515-11.904 6.485-0.64 13.227 0.213 19.584 2.56 43.605 16.256 88.32 27.136 129.451 32.171 10.283 1.451 19.712 7.083 26.24 15.147 6.272 7.723 9.856 17.579 9.643 29.099z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "phone"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 179,
+ "paths": [
+ "M633.984 255.189c40.235 7.851 74.24 29.141 98.56 58.624 17.92 21.76 30.549 47.957 36.352 76.501 4.651 23.083 27.179 38.016 50.261 33.365s38.016-27.179 33.365-50.261c-8.533-42.325-27.307-81.365-54.144-113.877-36.437-44.203-87.765-76.331-148.053-88.064-23.125-4.523-45.525 10.581-50.048 33.707s10.581 45.525 33.707 50.048zM637.44 85.077c85.333 9.472 159.701 49.579 213.547 108.544 47.701 52.224 79.275 119.211 87.979 192.811 2.773 23.381 23.979 40.149 47.36 37.376s40.149-23.979 37.376-47.36c-10.795-91.605-50.176-175.189-109.696-240.384-67.328-73.728-160.512-123.989-267.136-135.808-23.424-2.603-44.501 14.293-47.104 37.675s14.293 44.501 37.675 47.104zM981.333 721.92c0.683-30.464-10.069-59.904-28.715-82.901-19.627-24.149-48.171-41.259-82.133-46.080-34.133-4.181-72.32-13.397-110.336-27.563-18.475-6.784-38.101-9.301-57.344-7.424-28.288 2.731-55.765 14.891-77.611 36.48l-30.72 30.72c-75.52-47.659-143.36-113.792-195.541-195.797l30.976-30.976c13.739-14.080 24.021-30.976 30.165-49.323 9.045-26.965 9.131-57.003-1.664-85.803-12.331-32.128-22.101-70.144-27.477-110.72-4.437-30.464-19.456-57.387-41.088-76.971-22.997-20.736-53.589-33.237-86.485-32.896h-127.829c-3.755 0-7.765 0.171-11.648 0.512-35.157 3.2-65.792 20.395-86.741 45.483s-32.341 58.325-29.141 93.824c12.8 131.243 58.24 266.368 137.216 388.352 64.085 102.955 155.648 197.248 268.715 269.056 109.568 72.405 242.517 122.112 387.669 137.856 3.925 0.384 8.149 0.555 12.288 0.555 35.328-0.128 67.328-14.635 90.368-37.845s37.248-55.339 37.12-90.496zM896 721.92v128c0.043 11.947-4.651 22.613-12.373 30.379s-18.304 12.587-30.123 12.629c-134.357-14.336-254.336-59.349-352.555-124.245-103.595-65.835-185.984-150.912-243.285-242.944-72.405-111.787-113.28-233.856-124.757-351.488-1.024-11.435 2.731-22.443 9.771-30.891s17.195-14.080 28.928-15.147l131.755-0.213c11.563-0.128 21.632 4.011 29.312 10.923 7.253 6.571 12.288 15.616 13.781 25.941 6.059 45.739 17.408 90.325 32.299 129.067 3.456 9.216 3.413 19.072 0.427 28.075-2.091 6.187-5.589 11.989-10.325 16.853l-53.845 53.803c-13.824 13.824-16.171 34.731-6.912 51.243 67.584 118.827 163.797 211.499 272.256 272.128 16.939 9.472 37.632 6.144 50.987-7.083l54.187-54.187c7.083-6.997 16.085-10.965 25.515-11.904 6.485-0.64 13.227 0.213 19.584 2.56 43.605 16.256 88.32 27.136 129.451 32.171 10.283 1.451 19.712 7.083 26.24 15.147 6.272 7.723 9.856 17.579 9.643 29.099z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "phone-call"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 180,
+ "paths": [
+ "M640 256h238.336l-97.835 97.835c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l170.667-170.667c3.925-3.925 7.083-8.619 9.259-13.824 4.309-10.453 4.309-22.229 0-32.683-2.091-5.035-5.163-9.728-9.259-13.824l-170.667-170.667c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l97.835 97.835h-238.336c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM981.333 721.92c0.683-30.464-10.069-59.904-28.715-82.901-19.627-24.149-48.171-41.259-82.133-46.080-34.133-4.181-72.32-13.397-110.336-27.563-18.475-6.784-38.101-9.301-57.344-7.424-28.288 2.731-55.765 14.891-77.611 36.48l-30.72 30.72c-75.52-47.659-143.36-113.792-195.541-195.797l30.976-30.976c13.739-14.080 24.021-30.976 30.165-49.323 9.045-26.965 9.131-57.003-1.664-85.803-12.331-32.128-22.101-70.144-27.477-110.72-4.437-30.464-19.456-57.387-41.088-76.971-22.997-20.736-53.589-33.237-86.485-32.896h-127.829c-3.755 0-7.765 0.171-11.648 0.512-35.157 3.2-65.792 20.395-86.741 45.483s-32.341 58.325-29.141 93.824c12.8 131.243 58.24 266.368 137.216 388.352 64.085 102.955 155.648 197.248 268.715 269.056 109.568 72.405 242.517 122.112 387.669 137.856 3.925 0.384 8.149 0.555 12.288 0.555 35.328-0.128 67.328-14.635 90.368-37.845s37.248-55.339 37.12-90.496zM896 721.92v128c0.043 11.947-4.651 22.613-12.373 30.379s-18.304 12.587-30.123 12.629c-134.357-14.336-254.336-59.349-352.555-124.245-103.595-65.835-185.984-150.912-243.285-242.944-72.405-111.787-113.28-233.856-124.757-351.488-1.024-11.435 2.731-22.443 9.771-30.891s17.195-14.080 28.928-15.147l131.755-0.213c11.563-0.128 21.632 4.011 29.312 10.923 7.253 6.571 12.288 15.616 13.781 25.941 6.059 45.739 17.408 90.325 32.299 129.067 3.456 9.216 3.413 19.072 0.427 28.075-2.091 6.187-5.589 11.989-10.325 16.853l-53.845 53.803c-13.824 13.824-16.171 34.731-6.912 51.243 67.584 118.827 163.797 211.499 272.256 272.128 16.939 9.472 37.632 6.144 50.987-7.083l54.187-54.187c7.083-6.997 16.085-10.965 25.515-11.904 6.485-0.64 13.227 0.213 19.584 2.56 43.605 16.256 88.32 27.136 129.451 32.171 10.283 1.451 19.712 7.083 26.24 15.147 6.272 7.723 9.856 17.579 9.643 29.099z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "phone-forwarded"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 181,
+ "paths": [
+ "M951.168 12.501l-225.835 225.835v-153.003c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v256c0 10.923 4.181 21.845 12.501 30.165 4.096 4.096 8.789 7.168 13.824 9.259s10.539 3.243 16.341 3.243h256c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-153.003l225.835-225.835c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0zM981.333 721.92c0.683-30.464-10.069-59.904-28.715-82.901-19.627-24.149-48.171-41.259-82.133-46.080-34.133-4.181-72.32-13.397-110.336-27.563-18.475-6.784-38.101-9.301-57.344-7.424-28.288 2.731-55.765 14.891-77.611 36.48l-30.72 30.72c-75.52-47.659-143.36-113.792-195.541-195.797l30.976-30.976c13.739-14.080 24.021-30.976 30.165-49.323 9.045-26.965 9.131-57.003-1.664-85.803-12.331-32.128-22.101-70.144-27.477-110.72-4.437-30.464-19.456-57.387-41.088-76.971-22.997-20.736-53.589-33.237-86.485-32.896h-127.829c-3.755 0-7.765 0.171-11.648 0.512-35.157 3.2-65.792 20.395-86.741 45.483s-32.341 58.325-29.141 93.824c12.8 131.243 58.24 266.368 137.216 388.352 64.085 102.955 155.648 197.248 268.715 269.056 109.568 72.405 242.517 122.112 387.669 137.856 3.925 0.384 8.149 0.555 12.288 0.555 35.328-0.128 67.328-14.635 90.368-37.845s37.248-55.339 37.12-90.496zM896 721.92v128c0.043 11.947-4.651 22.613-12.373 30.379s-18.304 12.587-30.123 12.629c-134.357-14.336-254.336-59.349-352.555-124.245-103.595-65.835-185.984-150.912-243.285-242.944-72.405-111.787-113.28-233.856-124.757-351.488-1.024-11.435 2.731-22.443 9.771-30.891s17.195-14.080 28.928-15.147l131.755-0.213c11.563-0.128 21.632 4.011 29.312 10.923 7.253 6.571 12.288 15.616 13.781 25.941 6.059 45.739 17.408 90.325 32.299 129.067 3.456 9.216 3.413 19.072 0.427 28.075-2.091 6.187-5.589 11.989-10.325 16.853l-53.845 53.803c-13.824 13.824-16.171 34.731-6.912 51.243 67.584 118.827 163.797 211.499 272.256 272.128 16.939 9.472 37.632 6.144 50.987-7.083l54.187-54.187c7.083-6.997 16.085-10.965 25.515-11.904 6.485-0.64 13.227 0.213 19.584 2.56 43.605 16.256 88.32 27.136 129.451 32.171 10.283 1.451 19.712 7.083 26.24 15.147 6.272 7.723 9.856 17.579 9.643 29.099z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "phone-incoming"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 182,
+ "paths": [
+ "M695.168 72.832l97.835 97.835-97.835 97.835c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l97.835-97.835 97.835 97.835c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-97.835-97.835 97.835-97.835c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-97.835 97.835-97.835-97.835c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331zM981.333 721.92c0.683-30.464-10.069-59.904-28.715-82.901-19.627-24.149-48.171-41.259-82.133-46.080-34.133-4.181-72.32-13.397-110.336-27.563-18.475-6.784-38.101-9.301-57.344-7.424-28.288 2.731-55.765 14.891-77.611 36.48l-30.72 30.72c-75.52-47.659-143.36-113.792-195.541-195.797l30.976-30.976c13.739-14.080 24.021-30.976 30.165-49.323 9.045-26.965 9.131-57.003-1.664-85.803-12.331-32.128-22.101-70.144-27.477-110.72-4.437-30.464-19.456-57.387-41.088-76.971-22.997-20.736-53.589-33.237-86.485-32.896h-127.829c-3.755 0-7.765 0.171-11.648 0.512-35.157 3.2-65.792 20.395-86.741 45.483s-32.341 58.325-29.141 93.824c12.8 131.243 58.24 266.368 137.216 388.352 64.085 102.955 155.648 197.248 268.715 269.056 109.568 72.405 242.517 122.112 387.669 137.856 3.925 0.384 8.149 0.555 12.288 0.555 35.328-0.128 67.328-14.635 90.368-37.845s37.248-55.339 37.12-90.496zM896 721.92v128c0.043 11.947-4.651 22.613-12.373 30.379s-18.304 12.587-30.123 12.629c-134.357-14.336-254.336-59.349-352.555-124.245-103.595-65.835-185.984-150.912-243.285-242.944-72.405-111.787-113.28-233.856-124.757-351.488-1.024-11.435 2.731-22.443 9.771-30.891s17.195-14.080 28.928-15.147l131.755-0.213c11.563-0.128 21.632 4.011 29.312 10.923 7.253 6.571 12.288 15.616 13.781 25.941 6.059 45.739 17.408 90.325 32.299 129.067 3.456 9.216 3.413 19.072 0.427 28.075-2.091 6.187-5.589 11.989-10.325 16.853l-53.845 53.803c-13.824 13.824-16.171 34.731-6.912 51.243 67.584 118.827 163.797 211.499 272.256 272.128 16.939 9.472 37.632 6.144 50.987-7.083l54.187-54.187c7.083-6.997 16.085-10.965 25.515-11.904 6.485-0.64 13.227 0.213 19.584 2.56 43.605 16.256 88.32 27.136 129.451 32.171 10.283 1.451 19.712 7.083 26.24 15.147 6.272 7.723 9.856 17.579 9.643 29.099z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "phone-missed"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 183,
+ "paths": [
+ "M257.237 523.349c-71.765-110.635-112.64-232.107-124.331-349.227-1.024-11.349 2.731-22.315 9.771-30.763s17.195-14.080 28.928-15.147l131.755-0.213c11.563-0.128 21.632 4.011 29.312 10.923 7.253 6.571 12.288 15.616 13.781 25.941 6.059 45.739 17.408 90.325 32.299 129.067 3.456 9.216 3.413 19.072 0.427 28.075-2.091 6.187-5.589 11.989-10.325 16.853l-53.845 53.803c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l54.571-54.571c13.739-14.080 24.021-30.976 30.165-49.323 9.045-26.965 9.131-57.003-1.664-85.803-12.331-32.128-22.101-70.144-27.477-110.72-4.437-30.507-19.456-57.429-41.088-77.013-22.997-20.736-53.589-33.237-86.485-32.896h-127.829c-3.755 0-7.765 0.171-11.648 0.512-35.157 3.2-65.792 20.395-86.741 45.483s-32.341 58.325-29.141 93.909c13.056 130.645 58.496 265.131 137.643 387.2 12.8 19.755 39.253 25.387 59.008 12.587s25.387-39.253 12.587-59.008zM396.16 688.213l60.629-60.629c39.637 35.328 81.835 65.323 123.691 88.533 16.939 9.429 37.547 6.059 50.901-7.125l54.187-54.187c7.083-6.997 16.085-10.965 25.515-11.904 6.485-0.64 13.227 0.213 19.584 2.56 43.605 16.256 88.32 27.136 129.451 32.171 10.24 1.451 19.541 6.997 26.112 15.019 6.229 7.595 9.856 17.28 9.771 27.691v128.256c0.043 11.947-4.651 22.613-12.373 30.379s-18.304 12.587-30.123 12.629c-134.357-14.336-254.336-59.349-352.555-124.245-38.699-24.576-74.112-51.627-104.832-79.189zM951.168 12.501l-521.856 521.813c-1.323 1.024-2.603 2.176-3.797 3.371-1.237 1.237-2.347 2.517-3.413 3.84l-409.6 409.6c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l262.912-262.912c35.115 31.915 75.264 62.72 118.187 89.984 109.568 72.405 242.517 122.112 387.669 137.856 3.925 0.384 8.149 0.555 12.288 0.555 35.328-0.128 67.328-14.635 90.368-37.845s37.248-55.339 37.12-90.496v-127.744c0.171-30.848-10.624-59.733-29.099-82.304-19.627-23.936-48-40.875-81.792-45.653-34.133-4.181-72.32-13.397-110.336-27.563-18.475-6.784-38.101-9.301-57.344-7.424-28.288 2.731-55.765 14.891-77.611 36.48l-30.72 30.72c-25.984-16.512-52.096-36.011-77.227-58.069l494.251-494.208c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "phone-off"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 184,
+ "paths": [
+ "M712.832 371.499l225.835-225.835v153.003c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-256c0-5.803-1.152-11.307-3.243-16.341s-5.163-9.728-9.216-13.781c-0.043-0.043-0.043-0.043-0.085-0.085-3.925-3.925-8.619-7.083-13.781-9.216-5.035-2.091-10.539-3.243-16.341-3.243h-256c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h153.003l-225.835 225.835c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0zM981.333 721.92c0.683-30.464-10.069-59.904-28.715-82.901-19.627-24.149-48.171-41.259-82.133-46.080-34.133-4.181-72.32-13.397-110.336-27.563-18.475-6.784-38.101-9.301-57.344-7.424-28.288 2.731-55.765 14.891-77.611 36.48l-30.72 30.72c-75.52-47.659-143.36-113.792-195.541-195.797l30.976-30.976c13.739-14.080 24.021-30.976 30.165-49.323 9.045-26.965 9.131-57.003-1.664-85.803-12.331-32.128-22.101-70.144-27.477-110.72-4.437-30.464-19.456-57.387-41.088-76.971-22.997-20.736-53.589-33.237-86.485-32.896h-127.829c-3.755 0-7.765 0.171-11.648 0.512-35.157 3.2-65.792 20.395-86.741 45.483s-32.341 58.325-29.141 93.824c12.8 131.243 58.24 266.368 137.216 388.352 64.085 102.955 155.648 197.248 268.715 269.056 109.568 72.405 242.517 122.112 387.669 137.856 3.925 0.384 8.149 0.555 12.288 0.555 35.328-0.128 67.328-14.635 90.368-37.845s37.248-55.339 37.12-90.496zM896 721.92v128c0.043 11.947-4.651 22.613-12.373 30.379s-18.304 12.587-30.123 12.629c-134.357-14.336-254.336-59.349-352.555-124.245-103.595-65.835-185.984-150.912-243.285-242.944-72.405-111.787-113.28-233.856-124.757-351.488-1.024-11.435 2.731-22.443 9.771-30.891s17.195-14.080 28.928-15.147l131.755-0.213c11.563-0.128 21.632 4.011 29.312 10.923 7.253 6.571 12.288 15.616 13.781 25.941 6.059 45.739 17.408 90.325 32.299 129.067 3.456 9.216 3.413 19.072 0.427 28.075-2.091 6.187-5.589 11.989-10.325 16.853l-53.845 53.803c-13.824 13.824-16.171 34.731-6.912 51.243 67.584 118.827 163.797 211.499 272.256 272.128 16.939 9.472 37.632 6.144 50.987-7.083l54.187-54.187c7.083-6.997 16.085-10.965 25.515-11.904 6.485-0.64 13.227 0.213 19.584 2.56 43.605 16.256 88.32 27.136 129.451 32.171 10.283 1.451 19.712 7.083 26.24 15.147 6.272 7.723 9.856 17.579 9.643 29.099z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "phone-outgoing"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 185,
+ "paths": [
+ "M865.664 661.376c-41.301 97.664-118.229 169.301-209.323 206.293s-196.224 39.125-293.888-2.176-169.301-118.229-206.293-209.323-39.168-196.267 2.133-293.931c39.936-94.464 113.152-164.523 200.064-202.368 21.589-9.429 31.488-34.56 22.101-56.149s-34.56-31.488-56.149-22.101c-106.197 46.251-195.797 132.011-244.608 247.381-50.475 119.381-47.744 247.979-2.645 359.211s132.779 205.397 252.117 255.872 247.979 47.744 359.211 2.645 205.397-132.779 255.872-252.117c9.173-21.717-0.981-46.72-22.699-55.936s-46.72 0.981-55.936 22.699zM893.653 469.333h-338.987v-338.987c89.003 9.813 168.789 50.048 228.864 110.123s100.309 139.861 110.123 228.864zM981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472c-23.552 0-42.667 19.115-42.667 42.667v426.667c0 23.552 19.115 42.667 42.667 42.667h426.667c23.552 0 42.667-19.115 42.667-42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pie-chart"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 186,
+ "paths": [
+ "M236.416 92.117c-6.528-4.267-14.507-6.784-23.083-6.784-23.552 0-42.667 19.115-42.667 42.667v768c-0.043 7.765 2.133 15.872 6.784 23.083 12.757 19.84 39.125 25.557 58.965 12.8l597.333-384c4.864-3.072 9.344-7.424 12.8-12.8 12.757-19.84 6.997-46.208-12.8-58.965zM256 206.165l475.776 305.835-475.776 305.835z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "play"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 187,
+ "paths": [
+ "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM896 512c0 106.069-42.923 201.984-112.469 271.531s-165.461 112.469-271.531 112.469-201.984-42.923-271.531-112.469-112.469-165.461-112.469-271.531 42.923-201.984 112.469-271.531 165.461-112.469 271.531-112.469 201.984 42.923 271.531 112.469 112.469 165.461 112.469 271.531zM450.347 305.835c-6.656-4.48-14.848-7.168-23.68-7.168-23.552 0-42.667 19.115-42.667 42.667v341.333c-0.043 8.021 2.261 16.341 7.168 23.68 13.056 19.627 39.552 24.917 59.179 11.819l256-170.667c4.395-2.901 8.533-6.912 11.819-11.819 13.056-19.627 7.765-46.080-11.819-59.179zM469.333 421.077l136.405 90.923-136.405 90.923z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "play-circle"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 188,
+ "paths": [
+ "M213.333 554.667h256v256c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-256h256c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-256v-256c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v256h-256c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "plus"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 189,
+ "paths": [
+ "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM896 512c0 106.069-42.923 201.984-112.469 271.531s-165.461 112.469-271.531 112.469-201.984-42.923-271.531-112.469-112.469-165.461-112.469-271.531 42.923-201.984 112.469-271.531 165.461-112.469 271.531-112.469 201.984 42.923 271.531 112.469 112.469 165.461 112.469 271.531zM341.333 554.667h128v128c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-128h128c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-128v-128c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v128h-128c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "plus-circle"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 190,
+ "paths": [
+ "M213.333 85.333c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v597.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h597.333c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-597.333c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504zM213.333 170.667h597.333c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v597.333c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-597.333c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-597.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501zM341.333 554.667h128v128c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-128h128c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-128v-128c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v128h-128c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "plus-square"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 191,
+ "paths": [
+ "M170.667 85.333c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v256c0 129.579 52.565 246.997 137.472 331.861s202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861v-256c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504zM170.667 170.667h682.667c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v256c0 106.069-42.923 201.984-112.469 271.531s-165.461 112.469-271.531 112.469-201.984-42.923-271.531-112.469-112.469-165.461-112.469-271.531v-256c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501zM311.168 456.832l170.667 170.667c16.683 16.683 43.691 16.683 60.331 0l170.667-170.667c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-140.501 140.501-140.501-140.501c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pocket"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 192,
+ "paths": [
+ "M753.195 313.472c66.645 66.688 99.968 153.941 99.925 241.365s-33.365 174.677-100.011 241.323c-66.645 66.603-153.856 99.925-241.237 99.925-87.552 0-174.848-33.365-241.451-100.011-66.645-66.645-99.925-153.941-99.925-241.323s33.323-174.677 99.925-241.323c16.64-16.683 16.64-43.691 0-60.331s-43.691-16.64-60.331 0c-83.285 83.285-124.928 192.555-124.928 301.653s41.643 218.368 124.928 301.653c83.285 83.328 192.555 125.013 301.696 125.013s218.411-41.643 301.739-124.928c83.328-83.285 125.013-192.555 125.013-301.653-0.043-109.269-41.685-218.453-124.928-301.739-16.64-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331zM469.333 85.333v426.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-426.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "power"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 193,
+ "paths": [
+ "M725.333 341.333h-426.667v-213.333h426.667zM213.333 810.667v128c0 23.552 19.115 42.667 42.667 42.667h512c23.552 0 42.667-19.115 42.667-42.667v-128h42.667c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-213.333c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-42.667v-256c0-23.552-19.115-42.667-42.667-42.667h-512c-23.552 0-42.667 19.115-42.667 42.667v256h-42.667c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v213.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504zM256 554.667c-23.552 0-42.667 19.115-42.667 42.667v128h-42.667c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-213.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h682.667c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v213.333c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-42.667v-128c0-23.552-19.115-42.667-42.667-42.667zM298.667 640h426.667v256h-426.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "printer"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 194,
+ "paths": [
+ "M640 512c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504-67.413 14.379-90.496 37.504-37.504 55.168-37.504 90.496 14.379 67.413 37.504 90.496 55.168 37.504 90.496 37.504 67.413-14.379 90.496-37.504 37.504-55.168 37.504-90.496zM554.667 512c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501-22.4-4.736-30.165-12.501-12.501-18.389-12.501-30.165 4.736-22.4 12.501-30.165 18.389-12.501 30.165-12.501 22.4 4.736 30.165 12.501 12.501 18.389 12.501 30.165zM662.741 361.301c41.685 41.643 62.549 96.171 62.549 150.827s-20.779 109.184-62.379 150.869c-16.64 16.683-16.64 43.691 0.043 60.331s43.691 16.64 60.331-0.043c58.283-58.325 87.381-134.869 87.339-211.243s-29.269-152.875-87.595-211.157c-16.683-16.64-43.691-16.64-60.331 0.043s-16.64 43.691 0.043 60.331zM361.259 662.699c-41.685-41.6-62.549-96.128-62.592-150.784s20.779-109.184 62.379-150.869c16.64-16.683 16.64-43.691-0.043-60.331s-43.691-16.64-60.331 0.043c-58.24 58.283-87.381 134.827-87.339 211.2s29.269 152.875 87.595 211.157c16.683 16.64 43.691 16.64 60.331-0.043s16.64-43.691-0.043-60.331zM783.488 240.512c74.965 75.008 112.427 173.184 112.427 271.531 0 98.304-37.461 196.48-112.427 271.445-16.64 16.683-16.64 43.691 0 60.331s43.691 16.64 60.331 0c91.605-91.605 137.387-211.755 137.429-331.776 0-120.107-45.824-240.256-137.429-331.861-16.64-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331zM240.512 783.488c-74.965-75.008-112.427-173.184-112.427-271.531 0-98.304 37.461-196.48 112.427-271.445 16.64-16.683 16.64-43.691 0-60.331s-43.691-16.64-60.331 0c-91.605 91.605-137.387 211.755-137.429 331.776 0 120.021 45.824 240.213 137.429 331.861 16.64 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "radio"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 195,
+ "paths": [
+ "M914.475 369.749c-39.296-111.061-119.979-195.712-218.453-242.731s-215.040-56.448-326.101-17.152c-62.805 22.229-117.419 57.771-159.744 100.864l-124.843 117.333v-157.397c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v255.915c0 0.64 0 1.28 0.043 1.877 0.213 4.907 1.237 9.6 2.944 13.909 1.707 4.352 4.181 8.448 7.381 12.16 0.512 0.555 1.024 1.152 1.536 1.664 3.883 4.053 8.576 7.339 13.824 9.6 5.077 2.176 10.624 3.413 16.469 3.499 0.171 0 0.299 0 0.469 0h256c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.624-42.667-42.624h-148.309l120.747-113.451c33.152-33.792 76.672-62.293 127.275-80.213 88.875-31.445 181.973-23.936 260.864 13.739s143.317 105.301 174.763 194.176c7.851 22.229 32.256 33.835 54.443 25.984s33.835-32.256 25.984-54.443zM873.6 640l-119.467 112.256c-67.584 67.627-154.88 100.949-242.304 100.949s-174.72-33.28-241.365-99.925c-37.973-37.973-64.981-82.389-80.341-127.189-7.68-22.272-31.915-34.133-54.229-26.496s-34.133 31.915-26.496 54.229c19.627 57.131 53.632 112.725 100.736 159.787 83.328 83.285 192.597 124.928 301.739 124.885s218.368-41.728 300.715-124.117l126.080-118.4v157.355c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-255.915c0-0.64 0-1.28-0.043-1.877-0.213-4.907-1.237-9.6-2.944-13.909-1.707-4.352-4.181-8.448-7.381-12.16-0.512-0.555-1.024-1.152-1.536-1.664-3.883-4.053-8.576-7.339-13.824-9.6-5.077-2.176-10.624-3.413-16.469-3.499-0.171 0-0.299 0-0.469 0h-256c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "refresh-ccw"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 196,
+ "paths": [
+ "M189.995 398.251c31.445-88.875 95.872-156.544 174.763-194.219s172.032-45.184 260.864-13.739c50.603 17.92 94.123 46.421 127.275 80.213l120.747 113.493h-148.309c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h255.872c0.213 0 0.384 0 0.597 0 5.845-0.043 11.435-1.323 16.469-3.499 5.077-2.176 9.771-5.376 13.824-9.6 0.512-0.555 1.024-1.109 1.536-1.664 3.2-3.712 5.675-7.808 7.381-12.16s2.731-9.003 2.944-13.909c0.043-0.64 0.043-1.237 0.043-1.835v-256c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v157.397l-124.843-117.291c-42.325-43.093-96.896-78.635-159.701-100.864-111.061-39.296-227.627-29.824-326.101 17.152s-179.157 131.669-218.453 242.731c-7.893 22.187 3.755 46.549 25.941 54.443s46.592-3.755 54.443-25.984zM85.333 695.979l126.080 118.485c82.304 82.389 191.573 124.075 300.715 124.117s218.411-41.6 301.739-124.885c47.104-47.104 81.109-102.699 100.736-159.787 7.68-22.272-4.181-46.549-26.496-54.229s-46.549 4.181-54.229 26.496c-15.403 44.8-42.368 89.216-80.341 127.189-66.688 66.645-153.984 99.925-241.365 99.925s-174.677-33.365-242.304-100.949l-119.467-112.341h148.267c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-255.872c-0.213 0-0.384 0-0.597 0-5.845 0.043-11.435 1.323-16.469 3.499-5.077 2.176-9.771 5.376-13.824 9.6-0.512 0.555-1.024 1.109-1.536 1.664-3.2 3.712-5.675 7.808-7.381 12.16s-2.731 9.003-2.944 13.909c-0.043 0.64-0.043 1.237-0.043 1.835v256c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "refresh-cw"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 197,
+ "paths": [
+ "M170.667 469.333v-85.333c0-35.371 14.293-67.285 37.504-90.496s55.125-37.504 90.496-37.504h494.336l-97.835 97.835c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l170.667-170.667c4.096-4.096 7.168-8.789 9.259-13.824s3.243-10.539 3.243-16.341c0-5.547-1.067-11.136-3.243-16.341-2.091-5.035-5.163-9.728-9.259-13.824l-170.667-170.667c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l97.835 97.835h-494.336c-58.88 0-112.299 23.936-150.869 62.464s-62.464 91.989-62.464 150.869v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM853.333 554.667v85.333c0 35.371-14.293 67.285-37.504 90.496s-55.125 37.504-90.496 37.504h-494.336l97.835-97.835c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-170.667 170.667c-3.925 3.925-7.083 8.619-9.259 13.824s-3.243 10.795-3.243 16.341c0 10.923 4.181 21.845 12.501 30.165l170.667 170.667c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-97.835-97.835h494.336c58.88 0 112.299-23.936 150.869-62.464s62.464-91.989 62.464-150.869v-85.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "repeat"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 198,
+ "paths": [
+ "M426.667 723.413l-271.829-211.413 271.829-211.413zM912.469 844.331c7.168 5.632 16.299 9.003 26.197 9.003 23.552 0 42.667-19.115 42.667-42.667v-597.333c0.043-9.088-2.901-18.347-9.003-26.197-14.464-18.603-41.259-21.931-59.861-7.467l-384 298.667c-2.603 1.963-5.205 4.523-7.467 7.467-5.973 7.68-8.917 16.725-9.003 25.771v-298.24c0.043-9.088-2.901-18.347-9.003-26.197-14.464-18.603-41.259-21.931-59.861-7.467l-384 298.667c-2.603 1.963-5.205 4.523-7.467 7.467-14.464 18.603-11.136 45.397 7.467 59.861l384 298.667c7.168 5.632 16.299 9.003 26.197 9.003 23.552 0 42.667-19.115 42.667-42.667v-298.283c0.128 12.587 5.76 24.96 16.469 33.28zM896 723.413l-271.829-211.413 271.829-211.413z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "rewind"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 199,
+ "paths": [
+ "M109.525 654.165c39.168 111.104 119.68 195.883 218.112 243.029s214.955 56.747 326.101 17.621 195.883-119.68 243.029-218.112 56.747-214.955 17.621-326.101-119.68-195.883-218.112-243.029-214.955-56.747-326.101-17.621c-62.891 22.187-117.547 57.685-159.957 100.779l-124.885 117.333v-157.397c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v255.915c0 0.64 0 1.28 0.043 1.877 0.213 4.907 1.237 9.6 2.944 13.909 1.707 4.352 4.181 8.448 7.381 12.16 0.512 0.555 1.024 1.152 1.536 1.664 3.883 4.053 8.576 7.339 13.824 9.6 5.077 2.176 10.624 3.413 16.469 3.499 0.171 0 0.299 0 0.469 0h256c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.624-42.667-42.624h-148.309l120.704-113.451c33.237-33.792 76.8-62.251 127.445-80.085 88.917-31.317 182.016-23.68 260.864 14.080s143.189 105.515 174.507 194.432 23.68 182.016-14.080 260.864-105.515 143.189-194.432 174.507-182.016 23.68-260.864-14.080-143.189-105.515-174.507-194.432c-7.851-22.229-32.213-33.877-54.4-26.069s-33.877 32.213-26.069 54.4z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "rotate-ccw"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 200,
+ "paths": [
+ "M834.005 625.792c-31.403 88.875-95.787 156.587-174.677 194.261s-171.989 45.269-260.864 13.867-156.587-95.787-194.261-174.677-45.269-171.989-13.867-260.864 95.787-156.587 174.677-194.261 171.989-45.269 260.864-13.867c50.688 17.92 94.251 46.421 127.445 80.299l120.491 113.451h-148.48c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h255.872c0.171 0 0.384 0 0.555 0 5.845-0.043 11.392-1.28 16.469-3.499 5.077-2.176 9.771-5.376 13.824-9.6 0.512-0.512 0.981-1.067 1.451-1.621 3.243-3.712 5.717-7.851 7.467-12.245 1.749-4.352 2.773-9.088 2.944-13.995 0.085-0.597 0.085-1.195 0.085-1.792v-255.915c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v157.227l-124.416-117.12c-42.368-43.179-97.024-78.763-159.915-100.949-111.104-39.296-227.669-29.781-326.144 17.28s-179.072 131.755-218.325 242.859-29.696 227.627 17.323 326.101 131.755 179.072 242.859 218.325 227.627 29.739 326.101-17.323 179.072-131.755 218.325-242.859c7.851-22.229-3.797-46.592-26.027-54.443s-46.592 3.797-54.443 26.027z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "rotate-cw"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 201,
+ "paths": [
+ "M170.667 512c94.251 0 179.541 38.144 241.365 99.968s99.968 147.115 99.968 241.365c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667c0-117.803-47.787-224.555-124.971-301.696s-183.893-124.971-301.696-124.971c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM170.667 213.333c176.725 0 336.683 71.595 452.565 187.435s187.435 275.84 187.435 452.565c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667c0-200.277-81.237-381.696-212.437-512.896s-312.619-212.437-512.896-212.437c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM298.667 810.667c0-23.552-9.6-44.928-25.003-60.331s-36.779-25.003-60.331-25.003-44.928 9.6-60.331 25.003-25.003 36.779-25.003 60.331 9.6 44.928 25.003 60.331 36.779 25.003 60.331 25.003 44.928-9.6 60.331-25.003 25.003-36.779 25.003-60.331z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "rss"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 202,
+ "paths": [
+ "M810.667 938.667c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-469.333c0-10.923-4.181-21.845-12.501-30.165l-213.333-213.333c-7.723-7.723-18.389-12.501-30.165-12.501h-469.333c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v597.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504zM341.333 853.333v-256h341.333v256zM256 170.667v170.667c0 23.552 19.115 42.667 42.667 42.667h341.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-298.667v-128h323.669l188.331 188.331v451.669c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-42.667v-298.667c0-23.552-19.115-42.667-42.667-42.667h-426.667c-23.552 0-42.667 19.115-42.667 42.667v298.667h-42.667c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-597.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "save"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 203,
+ "paths": [
+ "M314.795 706.176c0.469 0.512 0.981 1.067 1.493 1.536s1.024 0.981 1.536 1.493c14.635 15.317 23.509 35.968 23.509 58.795 0 23.595-9.515 44.843-25.003 60.331s-36.736 25.003-60.331 25.003-44.843-9.515-60.331-25.003-25.003-36.736-25.003-60.331 9.515-44.843 25.003-60.331 36.736-25.003 60.331-25.003c22.827 0 43.477 8.875 58.795 23.509zM587.264 648.021l235.947 235.52c16.683 16.64 43.691 16.64 60.331-0.043s16.64-43.691-0.043-60.331l-235.947-235.52c-16.683-16.64-43.691-16.64-60.331 0.043s-16.64 43.691 0.043 60.331zM317.824 314.795c-0.512 0.469-1.024 0.981-1.536 1.493s-1.024 1.024-1.493 1.536c-15.317 14.635-35.968 23.509-58.795 23.509-23.595 0-44.843-9.515-60.331-25.003s-25.003-36.736-25.003-60.331 9.515-44.843 25.003-60.331 36.736-25.003 60.331-25.003 44.843 9.515 60.331 25.003 25.003 36.736 25.003 60.331c0 22.827-8.875 43.477-23.509 58.795zM342.699 403.029l108.971 108.971-108.971 108.971c-25.429-15.019-55.083-23.637-86.699-23.637-47.104 0-89.856 19.157-120.661 50.005s-50.005 73.557-50.005 120.661 19.157 89.856 50.005 120.661 73.557 50.005 120.661 50.005 89.856-19.157 120.661-50.005 50.005-73.557 50.005-120.661c0-31.616-8.619-61.269-23.637-86.699l480.469-480.469c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-311.168 311.168-108.971-108.971c15.019-25.429 23.637-55.083 23.637-86.699 0-47.104-19.157-89.856-50.005-120.661s-73.557-50.005-120.661-50.005-89.856 19.157-120.661 50.005-50.005 73.557-50.005 120.661 19.157 89.856 50.005 120.661 73.557 50.005 120.661 50.005c31.616 0 61.269-8.619 86.699-23.637z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "scissors"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 204,
+ "paths": [
+ "M684.416 676.523c-1.451 1.109-2.859 2.347-4.224 3.712s-2.56 2.731-3.712 4.224c-53.675 51.755-126.677 83.541-207.147 83.541-82.475 0-157.099-33.365-211.2-87.467s-87.467-128.725-87.467-211.2 33.365-157.099 87.467-211.2 128.725-87.467 211.2-87.467 157.099 33.365 211.2 87.467 87.467 128.725 87.467 211.2c0 80.469-31.787 153.472-83.584 207.189zM926.165 865.835l-156.8-156.8c52.523-65.707 83.968-149.035 83.968-239.701 0-106.027-43.008-202.069-112.469-271.531s-165.504-112.469-271.531-112.469-202.069 43.008-271.531 112.469-112.469 165.504-112.469 271.531 43.008 202.069 112.469 271.531 165.504 112.469 271.531 112.469c90.667 0 173.995-31.445 239.701-83.968l156.8 156.8c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "search"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 205,
+ "paths": [
+ "M979.755 96.811c1.835-6.443 2.133-13.397 0.64-20.309-1.024-4.821-2.901-9.557-5.589-13.867-2.731-4.352-6.187-8.107-10.155-11.179-4.992-3.84-10.624-6.4-16.469-7.723s-12.032-1.451-18.176-0.171c-1.792 0.384-3.627 0.896-5.376 1.493l-0.896 0.299-852.48 298.368c-10.752 3.755-19.925 11.776-24.917 22.955-9.557 21.547 0.128 46.763 21.675 56.32l369.024 164.011 164.011 369.024c4.608 10.368 13.355 18.901 24.875 22.955 22.229 7.765 46.592-3.925 54.357-26.197l298.368-852.437c0.427-1.152 0.811-2.304 1.152-3.499zM459.904 503.765l-258.901-115.029 575.275-201.387zM836.651 247.723l-201.387 575.275-115.029-258.901z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "send"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 206,
+ "paths": [
+ "M170.667 42.667c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v170.667c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h682.667c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-170.667c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504zM170.667 128h682.667c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v170.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-682.667c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-170.667c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501zM170.667 554.667c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v170.667c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h682.667c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-170.667c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504zM170.667 640h682.667c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v170.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-682.667c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-170.667c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501zM256 298.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667zM256 810.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "server"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 207,
+ "paths": [
+ "M682.667 512c0-47.104-19.157-89.856-50.005-120.661s-73.557-50.005-120.661-50.005-89.856 19.157-120.661 50.005-50.005 73.557-50.005 120.661 19.157 89.856 50.005 120.661 73.557 50.005 120.661 50.005 89.856-19.157 120.661-50.005 50.005-73.557 50.005-120.661zM597.333 512c0 23.595-9.515 44.843-25.003 60.331s-36.736 25.003-60.331 25.003-44.843-9.515-60.331-25.003-25.003-36.736-25.003-60.331 9.515-44.843 25.003-60.331 36.736-25.003 60.331-25.003 44.843 9.515 60.331 25.003 25.003 36.736 25.003 60.331zM866.773 657.237c1.963-4.48 4.779-8.149 8.192-10.965 4.779-3.925 10.709-6.229 17.195-6.272h3.84c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496-14.379-67.413-37.504-90.496-55.168-37.504-90.496-37.504h-6.784c-4.693-0.043-9.173-1.195-13.141-3.243-5.419-2.816-9.813-7.339-12.459-13.312-0.128-1.237-0.171-2.517-0.171-3.797-1.024-2.347-1.707-4.736-2.091-7.168 0.853-14.251 3.285-19.371 7.168-23.339l2.645-2.645c24.96-25.003 37.461-57.856 37.419-90.539s-12.544-65.536-37.589-90.539c-25.003-24.96-57.856-37.461-90.539-37.419s-65.536 12.544-90.453 37.504l-1.963 1.963c-3.541 3.413-7.808 5.803-12.288 7.083-5.973 1.664-12.416 1.365-18.688-1.408-4.309-1.877-7.979-4.693-10.795-8.107-3.925-4.779-6.229-10.709-6.272-17.195v-3.84c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504-67.413 14.379-90.496 37.504-37.504 55.168-37.504 90.496v6.784c-0.043 4.693-1.195 9.173-3.243 13.141-2.816 5.419-7.339 9.813-13.312 12.459-1.237 0.128-2.517 0.171-3.797 0.171-2.347 1.024-4.736 1.707-7.168 2.091-14.293-0.896-19.413-3.328-23.381-7.211l-2.645-2.645c-25.003-24.96-57.813-37.461-90.539-37.461s-65.493 12.544-90.539 37.632c-24.96 25.003-37.461 57.813-37.461 90.539s12.544 65.536 37.504 90.453l2.048 2.005c3.413 3.541 5.803 7.808 7.083 12.288 1.664 5.973 1.365 12.416-1.323 18.517-0.256 0.683-0.555 1.451-0.896 2.219-1.749 4.651-4.608 8.661-8.149 11.733-4.693 4.053-10.667 6.528-16.341 6.656h-3.84c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.211-37.504 90.539 14.379 67.413 37.504 90.496 55.168 37.504 90.496 37.504h6.784c4.693 0.043 9.173 1.195 13.141 3.243 5.461 2.859 9.941 7.424 12.629 13.696 1.024 2.347 1.707 4.736 2.091 7.168-0.853 14.251-3.285 19.371-7.168 23.339l-2.645 2.645c-24.96 25.003-37.461 57.856-37.419 90.539s12.544 65.536 37.589 90.539c25.003 24.96 57.856 37.461 90.539 37.419s65.536-12.544 90.453-37.504l2.005-2.048c3.541-3.413 7.808-5.803 12.288-7.083 5.973-1.664 12.416-1.365 18.517 1.323 0.683 0.256 1.451 0.555 2.219 0.896 4.651 1.749 8.661 4.608 11.733 8.149 4.053 4.693 6.528 10.667 6.656 16.341v3.925c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504 67.413-14.379 90.496-37.504 37.504-55.168 37.504-90.496v-6.784c0.043-4.693 1.195-9.173 3.243-13.141 2.859-5.461 7.424-9.941 13.696-12.629 2.347-1.024 4.736-1.707 7.168-2.091 14.251 0.853 19.371 3.285 23.339 7.168l2.645 2.645c25.003 24.96 57.856 37.461 90.539 37.419s65.536-12.544 90.539-37.589c24.96-25.003 37.461-57.856 37.419-90.539s-12.544-65.536-37.504-90.453l-2.048-2.005c-3.413-3.541-5.803-7.808-7.083-12.288-1.664-5.973-1.365-12.416 1.323-18.517zM784.896 396.885c-0.512-8.576-1.621-12.672-3.243-16.299v3.413c0 1.835 0.128 3.584 0.341 5.333 0.896 2.56 1.835 5.077 2.901 7.552 0.171 3.84 0.213 3.883 0.213 3.925 10.624 24.789 29.184 43.947 51.541 55.595 15.829 8.235 33.493 12.715 51.669 12.928h7.68c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165-4.736 22.4-12.501 30.165-18.389 12.501-30.165 12.501h-3.84c-27.179 0.128-52.053 9.728-71.467 25.728-13.781 11.349-24.789 25.899-32 42.368-10.965 24.832-12.288 51.627-5.419 76.032 5.077 18.048 14.549 34.731 27.819 48.469l3.072 3.115c8.363 8.363 12.544 19.2 12.544 30.165s-4.139 21.845-12.459 30.165c-8.405 8.405-19.243 12.587-30.251 12.587s-21.845-4.139-30.165-12.459l-2.603-2.603c-19.755-19.328-44.373-29.952-69.632-32.085-18.645-1.579-37.632 1.451-55.168 9.045-24.661 10.581-43.819 29.141-55.467 51.456-8.235 15.829-12.715 33.493-12.928 51.669v7.723c0 11.776-4.736 22.4-12.501 30.165s-18.347 12.459-30.123 12.459-22.4-4.736-30.165-12.501-12.501-18.389-12.501-30.165v-3.84c-0.64-28.16-10.88-52.992-27.477-72.192-12.117-13.995-27.563-24.96-45.141-31.744-24.533-10.539-50.901-11.691-74.923-4.949-18.048 5.077-34.731 14.549-48.469 27.819l-3.115 3.072c-8.363 8.363-19.2 12.544-30.165 12.544s-21.845-4.139-30.165-12.459c-8.405-8.405-12.587-19.243-12.587-30.251s4.139-21.845 12.459-30.165l2.603-2.603c19.328-19.755 29.952-44.373 32.085-69.632 1.579-18.645-1.451-37.632-9.045-55.168-10.581-24.661-29.141-43.819-51.456-55.467-15.829-8.235-33.493-12.715-51.669-12.928l-7.68 0.043c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165 4.736-22.4 12.501-30.165 18.389-12.501 30.165-12.501h3.84c28.16-0.64 52.992-10.88 72.192-27.477 13.995-12.117 24.96-27.563 31.744-45.141 10.539-24.533 11.691-50.901 4.949-74.923-5.077-18.048-14.549-34.731-27.819-48.469l-3.115-3.115c-8.363-8.363-12.544-19.2-12.544-30.165s4.139-21.845 12.459-30.165c8.405-8.405 19.243-12.587 30.251-12.587s21.845 4.139 30.165 12.459l2.603 2.603c19.755 19.328 44.373 29.952 69.632 32.085 15.787 1.365 31.787-0.597 46.976-5.845 4.096-0.512 7.936-1.536 11.349-3.072-1.323 0.043-2.603 0.128-3.797 0.171-8.576 0.512-12.672 1.621-16.299 3.243h3.413c1.835 0 3.584-0.128 5.333-0.341 2.56-0.896 5.077-1.835 7.552-2.901 3.84-0.171 3.883-0.213 3.925-0.213 24.789-10.624 43.947-29.184 55.595-51.541 8.235-15.787 12.715-33.493 12.928-51.627v-7.723c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501 22.4 4.736 30.165 12.501 12.501 18.389 12.501 30.165v3.84c0.128 27.179 9.728 52.053 25.728 71.467 11.349 13.781 25.899 24.789 42.496 32.043 24.661 10.88 51.456 12.203 75.861 5.333 18.048-5.077 34.731-14.549 48.469-27.819l3.115-3.072c8.363-8.363 19.2-12.544 30.165-12.544s21.845 4.139 30.165 12.459c8.405 8.405 12.587 19.243 12.587 30.251s-4.139 21.845-12.459 30.165l-2.603 2.603c-19.328 19.755-29.952 44.373-32.085 69.632-1.365 15.787 0.597 31.787 5.845 46.976 0.512 4.053 1.579 7.893 3.072 11.349-0.043-1.365-0.085-2.645-0.171-3.797z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "settings"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 208,
+ "paths": [
+ "M128 512v341.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h512c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-341.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v341.333c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-512c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-341.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM469.333 188.331v451.669c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-451.669l97.835 97.835c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-170.667-170.667c-3.925-3.925-8.619-7.083-13.824-9.259-10.453-4.309-22.229-4.309-32.683 0-5.035 2.091-9.728 5.163-13.824 9.259l-170.667 170.667c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "share"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 209,
+ "paths": [
+ "M691.797 772.181c1.067-1.408 2.048-2.859 2.987-4.437 0.853-1.493 1.621-3.029 2.304-4.565 3.115-4.608 6.656-8.917 10.581-12.843 15.488-15.488 36.736-25.003 60.331-25.003s44.843 9.515 60.331 25.003 25.003 36.736 25.003 60.331-9.515 44.843-25.003 60.331-36.736 25.003-60.331 25.003-44.843-9.515-60.331-25.003-25.003-36.736-25.003-60.331c0-13.867 3.285-26.923 9.131-38.485zM695.509 258.389c-0.384-0.725-0.768-1.451-1.195-2.176s-0.853-1.451-1.323-2.133c-6.571-12.075-10.325-25.941-10.325-40.747 0-23.595 9.515-44.843 25.003-60.331s36.736-25.003 60.331-25.003 44.843 9.515 60.331 25.003 25.003 36.736 25.003 60.331-9.515 44.843-25.003 60.331-36.736 25.003-60.331 25.003-44.843-9.515-60.331-25.003c-4.608-4.608-8.704-9.728-12.16-15.275zM328.491 466.944c0.384 0.725 0.768 1.451 1.195 2.176s0.853 1.451 1.323 2.133c6.571 12.075 10.325 25.941 10.325 40.747s-3.755 28.672-10.368 40.789c-0.469 0.683-0.896 1.408-1.323 2.133s-0.811 1.408-1.152 2.133c-3.456 5.547-7.552 10.667-12.16 15.275-15.488 15.488-36.736 25.003-60.331 25.003s-44.843-9.515-60.331-25.003-25.003-36.736-25.003-60.331 9.515-44.843 25.003-60.331 36.736-25.003 60.331-25.003 44.843 9.515 60.331 25.003c4.608 4.608 8.704 9.728 12.16 15.275zM603.733 259.755l-226.475 132.139c-0.171-0.213-0.384-0.384-0.597-0.597-30.805-30.805-73.557-49.963-120.661-49.963s-89.856 19.157-120.661 50.005-50.005 73.557-50.005 120.661 19.157 89.856 50.005 120.661 73.557 50.005 120.661 50.005 89.856-19.157 120.661-50.005c0.213-0.213 0.384-0.384 0.597-0.597l226.517 132.011c-4.181 14.805-6.443 30.464-6.443 46.592 0 47.104 19.157 89.856 50.005 120.661s73.557 50.005 120.661 50.005 89.856-19.157 120.661-50.005 50.005-73.557 50.005-120.661-19.157-89.856-50.005-120.661-73.557-50.005-120.661-50.005-89.856 19.157-120.661 50.005c-0.128 0.128-0.299 0.299-0.427 0.427l-226.645-132.053c4.181-14.763 6.4-30.293 6.4-46.379s-2.219-31.659-6.4-46.421l226.475-132.181c0.171 0.213 0.384 0.384 0.597 0.597 30.805 30.848 73.557 50.005 120.661 50.005s89.856-19.157 120.661-50.005 50.005-73.557 50.005-120.661-19.157-89.856-50.005-120.661-73.557-50.005-120.661-50.005-89.856 19.157-120.661 50.005-50.005 73.557-50.005 120.661c0 16.085 2.219 31.659 6.4 46.421z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "share-2"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 210,
+ "paths": [
+ "M512 890.112c-50.517-28.672-188.587-114.987-258.133-236.757-3.371-5.888-6.528-11.776-9.515-17.792-19.456-38.869-31.019-80.128-31.019-123.563v-269.099l298.667-112 298.667 112v269.099c0 43.435-11.563 84.693-30.976 123.605-2.987 5.973-6.187 11.904-9.515 17.792-69.589 121.771-207.659 208.043-258.133 236.757zM531.072 976.811c0 0 212.864-105.6 313.173-281.131 4.096-7.168 8.021-14.507 11.776-21.973 24.235-48.427 39.979-102.741 39.979-161.707v-298.667c0-18.176-11.392-33.707-27.691-39.936l-341.333-128c-10.069-3.797-20.693-3.499-29.952 0l-341.333 128c-17.024 6.357-27.563 22.485-27.691 39.936v298.667c0 58.965 15.744 113.28 40.021 161.749 3.712 7.467 7.637 14.763 11.776 21.973 100.309 175.531 313.173 281.131 313.173 281.131 12.459 6.229 26.453 5.803 38.144 0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "shield"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 211,
+ "paths": [
+ "M880.853 609.963c10.283-33.109 15.275-66.859 15.147-98.133v-298.496c0-18.176-11.392-33.707-27.691-39.936l-341.333-128c-10.069-3.755-20.651-3.499-29.909 0l-134.827 50.347c-22.059 8.192-33.28 32.768-25.045 54.869s32.811 33.28 54.912 25.045l119.851-44.757 298.709 112v269.269c0.085 22.272-3.499 47.403-11.307 72.533-6.997 22.485 5.589 46.421 28.117 53.376s46.421-5.589 53.376-28.117zM213.333 273.664l479.189 479.189c-50.731 51.499-112.213 98.731-181.845 136.491-51.584-29.44-187.819-115.285-256.811-235.989-3.371-5.888-6.528-11.776-9.515-17.792-19.456-38.869-31.019-80.128-31.019-123.563zM12.501 72.832l120.491 120.533c-3.2 6.059-4.949 12.885-4.992 19.968v298.667c0 58.965 15.744 113.28 40.021 161.749 3.712 7.467 7.637 14.763 11.776 21.973 100.309 175.531 313.173 281.131 313.173 281.131 12.715 6.357 27.136 5.76 38.997-0.427 84.693-44.672 159.573-100.949 220.928-163.2l198.315 198.315c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-938.709-938.709c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "shield-off"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 212,
+ "paths": [
+ "M810.667 213.333h-597.333l64-85.333h469.333zM929.877 230.059l-127.744-170.325c-8.363-11.136-21.077-17.024-34.133-17.067h-512c-13.909 0-26.283 6.656-34.133 17.067l-127.744 170.325c-1.835 2.389-3.456 4.992-4.736 7.765-2.773 5.845-4.096 12.075-4.053 18.176v597.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h597.333c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-597.333c0-9.344-3.029-18.005-8.064-24.96-0.171-0.213-0.299-0.427-0.469-0.64zM170.667 298.667h682.667v554.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-597.333c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165zM640 426.667c0 35.371-14.293 67.285-37.504 90.496s-55.125 37.504-90.496 37.504-67.285-14.293-90.496-37.504-37.504-55.125-37.504-90.496c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667c0 58.88 23.936 112.299 62.464 150.869s91.989 62.464 150.869 62.464 112.299-23.936 150.869-62.464 62.464-91.989 62.464-150.869c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "shopping-bag"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 213,
+ "paths": [
+ "M469.333 896c0-23.552-9.6-44.928-25.003-60.331s-36.779-25.003-60.331-25.003-44.928 9.6-60.331 25.003-25.003 36.779-25.003 60.331 9.6 44.928 25.003 60.331 36.779 25.003 60.331 25.003 44.928-9.6 60.331-25.003 25.003-36.779 25.003-60.331zM938.667 896c0-23.552-9.6-44.928-25.003-60.331s-36.779-25.003-60.331-25.003-44.928 9.6-60.331 25.003-25.003 36.779-25.003 60.331 9.6 44.928 25.003 60.331 36.779 25.003 60.331 25.003 44.928-9.6 60.331-25.003 25.003-36.779 25.003-60.331zM308.096 298.667h621.653l-58.496 306.816c-1.963 9.728-7.083 18.133-14.165 24.235-7.68 6.656-17.621 10.496-29.355 10.283h-415.317c-9.899 0.128-19.243-3.029-26.709-8.661-8.107-6.101-14.037-14.976-16.171-25.728zM42.667 85.333h135.68l36.181 180.864c4.608 18.645 21.419 32.469 41.472 32.469h52.096l-17.067-85.333h-35.029c-23.552 0-42.667 19.115-42.667 42.667 0 2.261 0.171 4.48 0.512 6.613 0.171 1.195 0.427 2.432 0.725 3.584l71.296 356.139c6.357 32.043 24.32 59.008 48.64 77.269 22.229 16.725 49.92 26.155 79.104 25.728h414.123c31.915 0.64 62.080-11.136 85.12-31.019 21.077-18.176 36.181-43.221 42.027-71.808l68.352-358.485c4.395-23.168-10.752-45.483-33.92-49.92-2.773-0.555-5.547-0.811-7.979-0.768h-690.347l-35.84-179.029c-4.011-19.712-21.205-34.304-41.813-34.304h-170.667c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "shopping-cart"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 214,
+ "paths": [
+ "M200.832 883.499l652.501-652.501v110.336c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-213.333c0-5.803-1.152-11.307-3.243-16.341s-5.163-9.728-9.216-13.781c-0.043-0.043-0.043-0.043-0.085-0.085-3.925-3.925-8.619-7.083-13.781-9.216-5.035-2.091-10.539-3.243-16.341-3.243h-213.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h110.336l-652.501 652.501c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0zM609.835 670.165l183.168 183.168h-110.336c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h213.333c5.547 0 11.136-1.067 16.341-3.243s9.899-5.333 13.824-9.259c4.096-4.096 7.168-8.789 9.259-13.824s3.243-10.539 3.243-16.341v-213.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v110.336l-183.168-183.168c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331zM140.501 200.832l213.333 213.333c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-213.333-213.333c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "shuffle"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 215,
+ "paths": [
+ "M213.333 85.333c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v597.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h597.333c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-597.333c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504zM426.667 853.333v-682.667h384c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v597.333c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501zM341.333 170.667v682.667h-128c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-597.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sidebar"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 216,
+ "paths": [
+ "M784 886.656c7.253 5.803 16.555 9.344 26.667 9.344 23.552 0 42.667-19.115 42.667-42.667v-682.667c0.043-9.301-3.029-18.731-9.344-26.667-14.72-18.389-41.557-21.376-59.989-6.656l-426.667 341.333c-2.261 1.792-4.608 4.053-6.656 6.656-14.72 18.389-11.733 45.269 6.656 59.989zM768 764.544l-315.691-252.544 315.691-252.544zM256 810.667v-597.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v597.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "skip-back"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 217,
+ "paths": [
+ "M240 137.344c-7.253-5.803-16.555-9.344-26.667-9.344-23.552 0-42.667 19.115-42.667 42.667v682.667c-0.043 9.301 3.029 18.731 9.344 26.667 14.72 18.389 41.557 21.376 59.989 6.656l426.667-341.333c2.261-1.792 4.608-4.053 6.656-6.656 14.72-18.389 11.733-45.269-6.656-59.989zM256 259.456l315.691 252.544-315.691 252.544zM768 213.333v597.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-597.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "skip-forward"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 218,
+ "paths": [
+ "M618.667 469.333c29.44 0 56.149-11.947 75.435-31.232s31.232-45.995 31.232-75.435v-213.333c0-29.44-11.947-56.149-31.232-75.435s-45.995-31.232-75.435-31.232-56.149 11.947-75.435 31.232-31.232 45.995-31.232 75.435v213.333c0 29.44 11.947 56.149 31.232 75.435s45.995 31.232 75.435 31.232zM618.667 384c-5.973 0-11.264-2.347-15.104-6.229s-6.229-9.131-6.229-15.104v-213.333c0-5.973 2.347-11.264 6.229-15.104s9.131-6.229 15.104-6.229 11.264 2.347 15.104 6.229 6.229 9.131 6.229 15.104v213.333c0 5.973-2.347 11.264-6.229 15.104s-9.131 6.229-15.104 6.229zM874.667 469.333c29.44 0 56.149-11.947 75.435-31.232s31.232-45.995 31.232-75.435-11.947-56.149-31.232-75.435-45.995-31.232-75.435-31.232-56.149 11.947-75.435 31.232-31.232 45.995-31.232 75.435v64c0 23.552 19.115 42.667 42.667 42.667zM874.667 384h-21.333v-21.333c0-5.973 2.347-11.264 6.229-15.104s9.131-6.229 15.104-6.229 11.264 2.347 15.104 6.229 6.229 9.131 6.229 15.104-2.347 11.264-6.229 15.104-9.131 6.229-15.104 6.229zM405.333 554.667c-29.44 0-56.149 11.947-75.435 31.232s-31.232 45.995-31.232 75.435v213.333c0 29.44 11.947 56.149 31.232 75.435s45.995 31.232 75.435 31.232 56.149-11.947 75.435-31.232 31.232-45.995 31.232-75.435v-213.333c0-29.44-11.947-56.149-31.232-75.435s-45.995-31.232-75.435-31.232zM405.333 640c5.973 0 11.264 2.347 15.104 6.229s6.229 9.131 6.229 15.104v213.333c0 5.973-2.347 11.264-6.229 15.104s-9.131 6.229-15.104 6.229-11.264-2.347-15.104-6.229-6.229-9.131-6.229-15.104v-213.333c0-5.973 2.347-11.264 6.229-15.104s9.131-6.229 15.104-6.229zM149.333 554.667c-29.44 0-56.149 11.947-75.435 31.232s-31.232 45.995-31.232 75.435 11.947 56.149 31.232 75.435 45.995 31.232 75.435 31.232 56.149-11.947 75.435-31.232 31.232-45.995 31.232-75.435v-64c0-23.552-19.115-42.667-42.667-42.667zM149.333 640h21.333v21.333c0 5.973-2.347 11.264-6.229 15.104s-9.131 6.229-15.104 6.229-11.264-2.347-15.104-6.229-6.229-9.131-6.229-15.104 2.347-11.264 6.229-15.104 9.131-6.229 15.104-6.229zM554.667 618.667c0 29.44 11.947 56.149 31.232 75.435s45.995 31.232 75.435 31.232h213.333c29.44 0 56.149-11.947 75.435-31.232s31.232-45.995 31.232-75.435-11.947-56.149-31.232-75.435-45.995-31.232-75.435-31.232h-213.333c-29.44 0-56.149 11.947-75.435 31.232s-31.232 45.995-31.232 75.435zM640 618.667c0-5.973 2.347-11.264 6.229-15.104s9.131-6.229 15.104-6.229h213.333c5.973 0 11.264 2.347 15.104 6.229s6.229 9.131 6.229 15.104-2.347 11.264-6.229 15.104-9.131 6.229-15.104 6.229h-213.333c-5.973 0-11.264-2.347-15.104-6.229s-6.229-9.131-6.229-15.104zM661.333 853.333c5.973 0 11.264 2.347 15.104 6.229s6.229 9.131 6.229 15.104-2.347 11.264-6.229 15.104-9.131 6.229-15.104 6.229-11.264-2.347-15.104-6.229-6.229-9.131-6.229-15.104v-21.333zM661.333 768h-64c-23.552 0-42.667 19.115-42.667 42.667v64c0 29.44 11.947 56.149 31.232 75.435s45.995 31.232 75.435 31.232 56.149-11.947 75.435-31.232 31.232-45.995 31.232-75.435-11.947-56.149-31.232-75.435-45.995-31.232-75.435-31.232zM384 405.333c0 5.973-2.347 11.264-6.229 15.104s-9.131 6.229-15.104 6.229h-213.333c-5.973 0-11.264-2.347-15.104-6.229s-6.229-9.131-6.229-15.104 2.347-11.264 6.229-15.104 9.131-6.229 15.104-6.229h213.333c5.973 0 11.264 2.347 15.104 6.229s6.229 9.131 6.229 15.104zM469.333 405.333c0-29.44-11.947-56.149-31.232-75.435s-45.995-31.232-75.435-31.232h-213.333c-29.44 0-56.149 11.947-75.435 31.232s-31.232 45.995-31.232 75.435 11.947 56.149 31.232 75.435 45.995 31.232 75.435 31.232h213.333c29.44 0 56.149-11.947 75.435-31.232s31.232-45.995 31.232-75.435zM362.667 170.667c-5.973 0-11.264-2.347-15.104-6.229s-6.229-9.131-6.229-15.104 2.347-11.264 6.229-15.104 9.131-6.229 15.104-6.229 11.264 2.347 15.104 6.229 6.229 9.131 6.229 15.104v21.333zM362.667 256h64c23.552 0 42.667-19.115 42.667-42.667v-64c0-29.44-11.947-56.149-31.232-75.435s-45.995-31.232-75.435-31.232-56.149 11.947-75.435 31.232-31.232 45.995-31.232 75.435 11.947 56.149 31.232 75.435 45.995 31.232 75.435 31.232z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "slack"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 219,
+ "paths": [
+ "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM812.032 751.701l-539.733-539.733c65.707-52.565 149.035-83.968 239.701-83.968 106.069 0 201.984 42.923 271.531 112.469s112.469 165.461 112.469 271.531c0 90.667-31.403 173.995-83.968 239.701zM211.968 272.299l539.733 539.733c-65.707 52.565-149.035 83.968-239.701 83.968-106.069 0-201.984-42.923-271.531-112.469s-112.469-165.461-112.469-271.531c0-90.667 31.403-173.995 83.968-239.701z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "slash"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 220,
+ "paths": [
+ "M213.333 426.667v-298.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v298.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM554.667 896v-384c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v384c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM896 512v-384c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v384c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM42.667 640h85.333v256c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-256h85.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-256c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM384 384h256c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-85.333v-170.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v170.667h-85.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM725.333 725.333h85.333v170.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-170.667h85.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-256c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sliders"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 221,
+ "paths": [
+ "M298.667 42.667c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v682.667c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h426.667c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-682.667c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504zM298.667 128h426.667c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v682.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-426.667c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-682.667c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501zM512 810.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "smartphone"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 222,
+ "paths": [
+ "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM896 512c0 106.069-42.923 201.984-112.469 271.531s-165.461 112.469-271.531 112.469-201.984-42.923-271.531-112.469-112.469-165.461-112.469-271.531 42.923-201.984 112.469-271.531 165.461-112.469 271.531-112.469 201.984 42.923 271.531 112.469 112.469 165.461 112.469 271.531zM307.2 622.933c0 0 5.589 7.381 14.123 16.341 6.187 6.528 14.421 14.549 24.619 23.040 14.379 11.989 32.939 25.173 55.339 36.395 30.080 15.019 67.371 26.624 110.72 26.624s80.64-11.605 110.72-26.624c22.4-11.221 40.96-24.405 55.339-36.395 10.197-8.491 18.432-16.512 24.619-23.040 8.533-8.96 14.123-16.341 14.123-16.341 14.123-18.859 10.325-45.611-8.533-59.733s-45.611-10.325-59.733 8.533c-1.749 2.133-7.723 8.789-7.723 8.789-4.267 4.48-10.112 10.197-17.408 16.299-10.368 8.661-23.424 17.877-38.827 25.6-20.48 10.197-44.8 17.579-72.576 17.579s-52.096-7.381-72.576-17.621c-15.36-7.68-28.459-16.939-38.827-25.6-7.296-6.101-13.141-11.819-17.408-16.299-5.973-6.613-7.723-8.747-7.723-8.747-14.123-18.859-40.875-22.656-59.733-8.533s-22.656 40.875-8.533 59.733zM384 426.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667zM640 426.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "smile"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 223,
+ "paths": [
+ "M256 42.667c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v682.667c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h512c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-682.667c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504zM256 128h512c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v682.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-512c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-682.667c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501zM725.333 597.333c0-58.88-23.936-112.299-62.464-150.869s-91.989-62.464-150.869-62.464-112.299 23.936-150.869 62.464-62.464 91.989-62.464 150.869 23.936 112.299 62.464 150.869 91.989 62.464 150.869 62.464 112.299-23.936 150.869-62.464 62.464-91.989 62.464-150.869zM640 597.333c0 35.371-14.293 67.285-37.504 90.496s-55.125 37.504-90.496 37.504-67.285-14.293-90.496-37.504-37.504-55.125-37.504-90.496 14.293-67.285 37.504-90.496 55.125-37.504 90.496-37.504 67.285 14.293 90.496 37.504 37.504 55.125 37.504 90.496zM512 298.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "speaker"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 224,
+ "paths": [
+ "M213.333 85.333c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v597.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h597.333c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-597.333c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504zM213.333 170.667h597.333c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v597.333c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-597.333c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-597.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "square"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 225,
+ "paths": [
+ "M550.272 66.432c-3.925-8.064-10.581-15.019-19.371-19.371-21.12-10.411-46.72-1.749-57.131 19.371l-121.941 246.997-272.683 39.893c-8.875 1.237-17.536 5.419-24.363 12.416-16.469 16.896-16.085 43.904 0.768 60.331l197.248 192.128-46.549 271.445c-1.536 8.832-0.256 18.389 4.309 27.051 10.965 20.864 36.779 28.885 57.643 17.92l243.797-128.213 243.84 128.213c7.936 4.224 17.408 5.931 27.051 4.309 23.211-3.968 38.827-26.027 34.859-49.28l-46.549-271.445 197.248-192.128c6.443-6.229 11.051-14.677 12.459-24.405 3.413-23.296-12.715-44.971-36.053-48.384l-272.64-39.851zM512 181.717l93.568 189.611c6.443 13.013 18.603 21.291 32.085 23.339l209.323 30.592-151.424 147.499c-10.411 10.155-14.549 24.277-12.288 37.76l35.712 208.341-187.136-98.432c-12.843-6.741-27.605-6.315-39.723 0l-187.136 98.432 35.712-208.341c2.475-14.336-2.517-28.203-12.288-37.76l-151.424-147.499 209.365-30.635c14.336-2.091 25.984-11.093 32.085-23.296z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "star"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 226,
+ "paths": [
+ "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM896 512c0 106.069-42.923 201.984-112.469 271.531s-165.461 112.469-271.531 112.469-201.984-42.923-271.531-112.469-112.469-165.461-112.469-271.531 42.923-201.984 112.469-271.531 165.461-112.469 271.531-112.469 201.984 42.923 271.531 112.469 112.469 165.461 112.469 271.531zM384 341.333c-23.552 0-42.667 19.115-42.667 42.667v256c0 23.552 19.115 42.667 42.667 42.667h256c23.552 0 42.667-19.115 42.667-42.667v-256c0-23.552-19.115-42.667-42.667-42.667zM426.667 426.667h170.667v170.667h-170.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "stop-circle"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 227,
+ "paths": [
+ "M768 512c0-70.699-28.715-134.741-74.965-181.035s-110.336-74.965-181.035-74.965-134.741 28.715-181.035 74.965-74.965 110.336-74.965 181.035 28.715 134.741 74.965 181.035 110.336 74.965 181.035 74.965 134.741-28.715 181.035-74.965 74.965-110.336 74.965-181.035zM682.667 512c0 47.147-19.072 89.728-50.005 120.661s-73.515 50.005-120.661 50.005-89.728-19.072-120.661-50.005-50.005-73.515-50.005-120.661 19.072-89.728 50.005-120.661 73.515-50.005 120.661-50.005 89.728 19.072 120.661 50.005 50.005 73.515 50.005 120.661zM469.333 42.667v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-85.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM469.333 896v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-85.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM149.888 210.219l60.587 60.587c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-60.587-60.587c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331zM753.195 813.525l60.587 60.587c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-60.587-60.587c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331zM42.667 554.667h85.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-85.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM896 554.667h85.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-85.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM210.219 874.112l60.587-60.587c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-60.587 60.587c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0zM813.525 270.805l60.587-60.587c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-60.587 60.587c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sun"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 228,
+ "paths": [
+ "M768 768c0-70.699-28.715-134.741-74.965-181.035s-110.336-74.965-181.035-74.965-134.741 28.715-181.035 74.965-74.965 110.336-74.965 181.035c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667c0-47.147 19.072-89.728 50.005-120.661s73.515-50.005 120.661-50.005 89.728 19.072 120.661 50.005 50.005 73.515 50.005 120.661c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM149.888 466.219l60.587 60.587c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-60.587-60.587c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331zM42.667 810.667h85.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-85.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM896 810.667h85.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-85.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM813.525 526.805l60.587-60.587c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-60.587 60.587c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0zM981.333 896h-938.667c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h938.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM371.499 286.165l97.835-97.835v195.669c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-195.669l97.835 97.835c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-170.667-170.667c-3.925-3.925-8.619-7.083-13.824-9.259-10.453-4.309-22.229-4.309-32.683 0-5.035 2.091-9.728 5.163-13.824 9.259l-170.667 170.667c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sunrise"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 229,
+ "paths": [
+ "M768 768c0-70.699-28.715-134.741-74.965-181.035s-110.336-74.965-181.035-74.965-134.741 28.715-181.035 74.965-74.965 110.336-74.965 181.035c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667c0-47.147 19.072-89.728 50.005-120.661s73.515-50.005 120.661-50.005 89.728 19.072 120.661 50.005 50.005 73.515 50.005 120.661c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM149.888 466.219l60.587 60.587c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-60.587-60.587c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331zM42.667 810.667h85.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-85.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM896 810.667h85.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-85.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM813.525 526.805l60.587-60.587c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-60.587 60.587c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0zM981.333 896h-938.667c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h938.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM652.501 183.168l-97.835 97.835v-195.669c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v195.669l-97.835-97.835c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l170.667 170.667c4.096 4.096 8.789 7.168 13.824 9.259s10.539 3.243 16.341 3.243 11.307-1.152 16.341-3.243c5.035-2.091 9.728-5.163 13.824-9.259l170.667-170.667c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sunset"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 230,
+ "paths": [
+ "M256 42.667c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v682.667c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h512c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-682.667c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504zM256 128h512c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v682.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-512c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-682.667c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501zM512 810.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tablet"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 231,
+ "paths": [
+ "M908.672 602.325c24.875-25.003 37.291-57.685 37.291-90.24 0.043-32.597-12.373-65.365-37.291-90.453l-366.507-366.507c-7.723-7.68-18.389-12.459-30.165-12.459h-426.667c-23.552 0-42.667 19.115-42.667 42.667v426.667c0 10.923 4.181 21.845 12.501 30.208l366.592 366.165c25.003 24.96 57.856 37.461 90.539 37.419s65.536-12.544 90.453-37.504zM848.341 541.995l-305.92 305.92c-8.363 8.363-19.2 12.544-30.165 12.544s-21.845-4.139-30.165-12.459l-354.091-353.707v-366.293h366.336l354.005 354.005c8.192 8.235 12.331 19.072 12.331 30.037 0 10.923-4.139 21.717-12.331 29.952zM298.667 341.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tag"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 232,
+ "paths": [
+ "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM896 512c0 106.069-42.923 201.984-112.469 271.531s-165.461 112.469-271.531 112.469-201.984-42.923-271.531-112.469-112.469-165.461-112.469-271.531 42.923-201.984 112.469-271.531 165.461-112.469 271.531-112.469 201.984 42.923 271.531 112.469 112.469 165.461 112.469 271.531zM810.667 512c0-82.475-33.493-157.184-87.467-211.2s-128.725-87.467-211.2-87.467-157.184 33.493-211.2 87.467-87.467 128.725-87.467 211.2 33.493 157.184 87.467 211.2 128.725 87.467 211.2 87.467 157.184-33.493 211.2-87.467 87.467-128.725 87.467-211.2zM725.333 512c0 58.923-23.851 112.213-62.464 150.869s-91.947 62.464-150.869 62.464-112.213-23.851-150.869-62.464-62.464-91.947-62.464-150.869 23.851-112.213 62.464-150.869 91.947-62.464 150.869-62.464 112.213 23.851 150.869 62.464 62.464 91.947 62.464 150.869zM640 512c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504-67.413 14.379-90.496 37.504-37.504 55.168-37.504 90.496 14.379 67.413 37.504 90.496 55.168 37.504 90.496 37.504 67.413-14.379 90.496-37.504 37.504-55.168 37.504-90.496zM554.667 512c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501-22.4-4.736-30.165-12.501-12.501-18.389-12.501-30.165 4.736-22.4 12.501-30.165 18.389-12.501 30.165-12.501 22.4 4.736 30.165 12.501 12.501 18.389 12.501 30.165z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "target"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 233,
+ "paths": [
+ "M200.832 755.499l256-256c16.683-16.683 16.683-43.691 0-60.331l-256-256c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l225.835 225.835-225.835 225.835c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0zM512 853.333h341.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-341.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "terminal"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 234,
+ "paths": [
+ "M554.667 629.76c0.085 14.037 6.869 27.563 19.328 35.712 14.891 9.728 29.269 23.637 40.875 40.96 22.912 34.304 29.781 74.539 22.315 112.085s-29.184 72.107-63.488 95.019-74.539 29.781-112.085 22.315-72.107-29.184-95.019-63.488-29.781-74.539-22.315-112.085 29.184-72.107 63.488-95.019c11.435-7.765 18.901-20.779 18.901-35.499v-480.427c0-17.664 7.125-33.621 18.731-45.269s27.605-18.731 45.269-18.731 33.621 7.125 45.269 18.731 18.731 27.605 18.731 45.269zM640 608.256v-458.923c0-41.216-16.768-78.635-43.733-105.6s-64.384-43.733-105.6-43.733-78.635 16.768-105.6 43.733-43.733 64.384-43.733 105.6v459.051c-42.965 35.371-70.571 83.627-80.811 135.253-11.691 58.837-0.939 122.283 35.029 176.171s90.496 88.064 149.333 99.797 122.283 0.939 176.171-35.029 88.064-90.496 99.797-149.333 0.939-122.283-35.029-176.171c-13.099-19.584-28.715-36.693-45.781-50.773z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "thermometer"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 235,
+ "paths": [
+ "M469.333 640c0-23.552-19.115-42.667-42.667-42.667h-242.304c-2.773-0.085-6.528-0.469-6.528-0.469-11.648-1.749-21.419-8.021-27.947-16.896s-9.6-20.053-7.851-31.659l58.88-383.915c1.579-10.197 6.656-19.115 13.867-25.6 7.637-6.869 17.707-10.923 29.269-10.795h438.613v417.621l-153.941 346.368c-13.099-4.181-24.832-11.435-34.389-20.992-15.488-15.488-25.003-36.736-25.003-60.331zM384 682.667v128c0 47.104 19.157 89.856 50.005 120.661s73.557 50.005 120.661 50.005c17.28 0 32.171-10.283 38.997-25.344l170.667-384c2.56-5.717 3.712-11.733 3.669-17.323v-469.333c0-23.552-19.115-42.667-42.667-42.667h-481.28c-32.725-0.384-63.232 11.989-86.229 32.555-21.547 19.285-36.565 45.909-41.259 76.075l-58.88 384.085c-5.333 34.987 4.096 68.864 23.467 95.189s48.939 45.355 83.84 50.645c7.040 1.067 14.208 1.579 20.992 1.451zM725.333 128h113.92c15.403-0.256 28.757 5.077 38.912 14.165 9.088 8.149 15.531 19.2 17.835 31.829v289.579c-1.579 14.507-8.875 26.88-19.413 35.541-10.027 8.277-22.912 13.056-36.736 12.843l-114.517 0.043c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h113.323c34.56 0.512 66.944-11.52 92.16-32.256 26.539-21.803 45.184-53.376 50.176-90.027 0.213-1.707 0.341-3.712 0.341-5.717v-298.667c0-1.792-0.128-3.797-0.384-5.845-4.736-34.261-21.547-64.427-45.867-86.187-25.6-22.912-59.605-36.608-95.829-35.925h-113.92c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "thumbs-down"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 236,
+ "paths": [
+ "M554.667 384c0 23.552 19.115 42.667 42.667 42.667h242.304c2.773 0.085 6.528 0.469 6.528 0.469 11.648 1.749 21.419 8.021 27.947 16.896s9.6 20.053 7.851 31.659l-58.88 383.915c-1.579 10.197-6.656 19.115-13.867 25.6-7.68 6.869-17.707 10.923-29.269 10.795h-438.613v-417.621l153.941-346.368c13.099 4.181 24.832 11.435 34.389 20.992 15.488 15.488 25.003 36.736 25.003 60.331zM640 341.333v-128c0-47.104-19.157-89.856-50.005-120.661s-73.557-50.005-120.661-50.005c-17.28 0-32.171 10.283-38.997 25.344l-170.667 384c-2.56 5.717-3.712 11.733-3.669 17.323v469.333c0 23.552 19.115 42.667 42.667 42.667h481.28c32.725 0.384 63.232-11.989 86.229-32.555 21.547-19.285 36.565-45.909 41.259-76.075l58.88-384.085c5.333-34.987-4.096-68.864-23.467-95.189s-48.939-45.355-83.84-50.645c-7.040-1.067-14.208-1.579-20.992-1.451zM298.667 896h-128c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-298.667c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h128c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-128c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v298.667c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h128c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "thumbs-up"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 237,
+ "paths": [
+ "M341.333 170.667c-94.251 0-179.627 38.272-241.365 99.968s-99.968 147.115-99.968 241.365 38.272 179.627 99.968 241.365 147.115 99.968 241.365 99.968h341.333c94.251 0 179.627-38.272 241.365-99.968s99.968-147.115 99.968-241.365-38.272-179.627-99.968-241.365-147.115-99.968-241.365-99.968zM341.333 256h341.333c70.699 0 134.656 28.587 181.035 74.965s74.965 110.336 74.965 181.035-28.587 134.656-74.965 181.035-110.336 74.965-181.035 74.965h-341.333c-70.699 0-134.656-28.587-181.035-74.965s-74.965-110.336-74.965-181.035 28.587-134.656 74.965-181.035 110.336-74.965 181.035-74.965zM512 512c0-47.104-19.157-89.856-50.005-120.661s-73.557-50.005-120.661-50.005-89.856 19.157-120.661 50.005-50.005 73.557-50.005 120.661 19.157 89.856 50.005 120.661 73.557 50.005 120.661 50.005 89.856-19.157 120.661-50.005 50.005-73.557 50.005-120.661zM426.667 512c0 23.595-9.515 44.843-25.003 60.331s-36.736 25.003-60.331 25.003-44.843-9.515-60.331-25.003-25.003-36.736-25.003-60.331 9.515-44.843 25.003-60.331 36.736-25.003 60.331-25.003 44.843 9.515 60.331 25.003 25.003 36.736 25.003 60.331z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "toggle-left"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 238,
+ "paths": [
+ "M341.333 170.667c-94.251 0-179.627 38.272-241.365 99.968s-99.968 147.115-99.968 241.365 38.272 179.627 99.968 241.365 147.115 99.968 241.365 99.968h341.333c94.251 0 179.627-38.272 241.365-99.968s99.968-147.115 99.968-241.365-38.272-179.627-99.968-241.365-147.115-99.968-241.365-99.968zM341.333 256h341.333c70.699 0 134.656 28.587 181.035 74.965s74.965 110.336 74.965 181.035-28.587 134.656-74.965 181.035-110.336 74.965-181.035 74.965h-341.333c-70.699 0-134.656-28.587-181.035-74.965s-74.965-110.336-74.965-181.035 28.587-134.656 74.965-181.035 110.336-74.965 181.035-74.965zM853.333 512c0-47.104-19.157-89.856-50.005-120.661s-73.557-50.005-120.661-50.005-89.856 19.157-120.661 50.005-50.005 73.557-50.005 120.661 19.157 89.856 50.005 120.661 73.557 50.005 120.661 50.005 89.856-19.157 120.661-50.005 50.005-73.557 50.005-120.661zM768 512c0 23.595-9.515 44.843-25.003 60.331s-36.736 25.003-60.331 25.003-44.843-9.515-60.331-25.003-25.003-36.736-25.003-60.331 9.515-44.843 25.003-60.331 36.736-25.003 60.331-25.003 44.843 9.515 60.331 25.003 25.003 36.736 25.003 60.331z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "toggle-right"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 239,
+ "paths": [
+ "M657.365 298.368l160.853-160.256c3.456-3.371 6.485-7.68 8.747-12.629 9.685-21.504 0.085-46.763-21.376-56.405-11.221-5.035-22.699-9.387-34.432-13.056-67.499-20.992-142.507-18.261-211.755 13.099-75.136 34.005-129.408 95.317-156.331 166.784-23.637 62.592-26.325 133.291-3.712 200.405l-275.072 275.072c-25.984 25.984-38.997 60.16-38.997 94.165s13.013 68.181 38.997 94.165 60.16 38.997 94.165 38.997 68.181-13.013 94.165-38.997l275.115-275.115c2.133 0.725 4.267 1.408 6.443 2.091 67.499 20.992 142.507 18.261 211.755-13.099 75.136-34.005 129.408-95.317 156.331-166.784s26.624-153.344-7.381-228.48c-1.92-4.395-4.864-8.747-8.704-12.587-16.683-16.683-43.691-16.683-60.331 0l-160.256 160.853zM596.736 238.933c-16.341 16.64-24.448 38.4-24.405 59.989 0.085 21.419 8.192 42.965 24.363 59.477l68.565 68.608c16.981 16.64 38.699 24.747 60.288 24.704 21.419-0.085 42.965-8.192 59.477-24.363l109.824-109.824c3.84 33.963-0.64 67.968-12.416 99.243-19.285 51.157-57.984 94.805-111.659 119.125-49.493 22.4-102.912 24.363-151.253 9.344-8.405-2.603-16.683-5.76-24.704-9.387-16.512-7.424-35.285-3.499-47.701 8.747l-294.827 294.827c-9.344 9.344-21.504 13.995-33.835 13.995s-24.491-4.651-33.835-13.995-13.995-21.504-13.995-33.835 4.651-24.491 13.995-33.835l294.827-294.827c12.843-12.843 15.787-31.829 8.704-47.744-24.277-53.675-24.533-112.043-5.248-163.2s57.984-94.805 111.659-119.125c36.352-16.469 74.88-21.888 111.915-17.621z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tool"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 240,
+ "paths": [
+ "M768 298.667v554.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-426.667c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-554.667zM725.333 213.333v-42.667c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-170.667c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v42.667h-170.667c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h42.667v554.667c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h426.667c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-554.667h42.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM384 213.333v-42.667c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h170.667c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "trash"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 241,
+ "paths": [
+ "M768 298.667v554.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-426.667c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-554.667zM725.333 213.333v-42.667c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-170.667c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v42.667h-170.667c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h42.667v554.667c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h426.667c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-554.667h42.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667zM384 213.333v-42.667c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h170.667c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v42.667zM384 469.333v256c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-256c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM554.667 469.333v256c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-256c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "trash-2"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 242,
+ "paths": [
+ "M213.333 85.333c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v597.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h597.333c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-597.333c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504zM213.333 170.667h597.333c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v597.333c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-597.333c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-597.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501zM298.667 256c-23.552 0-42.667 19.115-42.667 42.667v384c0 23.552 19.115 42.667 42.667 42.667h128c23.552 0 42.667-19.115 42.667-42.667v-384c0-23.552-19.115-42.667-42.667-42.667zM341.333 341.333h42.667v298.667h-42.667zM597.333 256c-23.552 0-42.667 19.115-42.667 42.667v213.333c0 23.552 19.115 42.667 42.667 42.667h128c23.552 0 42.667-19.115 42.667-42.667v-213.333c0-23.552-19.115-42.667-42.667-42.667zM640 341.333h42.667v128h-42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "trello"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 243,
+ "paths": [
+ "M725.333 810.667h256c5.803 0 11.307-1.152 16.341-3.243s9.728-5.163 13.824-9.259 7.168-8.789 9.259-13.824c2.091-5.035 3.243-10.539 3.243-16.341v-256c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v153.003l-332.501-332.501c-16.683-16.683-43.691-16.683-60.331 0l-183.168 183.168-289.835-289.835c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l320 320c16.683 16.683 43.691 16.683 60.331 0l183.168-183.168 302.336 302.336h-153.003c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "trending-down"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 244,
+ "paths": [
+ "M725.333 298.667h153.003l-302.336 302.336-183.168-183.168c-16.683-16.683-43.691-16.683-60.331 0l-320 320c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l289.835-289.835 183.168 183.168c16.683 16.683 43.691 16.683 60.331 0l332.501-332.501v153.003c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-256c0-5.803-1.152-11.307-3.243-16.341s-5.163-9.728-9.216-13.781c-0.043-0.043-0.043-0.043-0.085-0.085-3.925-3.925-8.619-7.083-13.781-9.216-5.035-2.091-10.539-3.243-16.341-3.243h-256c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "trending-up"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 245,
+ "paths": [
+ "M475.648 186.624c3.115-5.248 7.893-10.325 14.251-14.165 10.069-6.101 21.589-7.595 32.256-4.949s20.224 9.216 26.197 19.115l361.216 603.008c2.987 5.12 5.077 11.435 5.461 18.517-0.64 15.701-5.077 25.216-12.075 32.384-7.68 7.851-18.219 12.715-29.568 12.843l-722.645-0.043c-6.485-0.043-13.696-1.749-20.523-5.717-10.197-5.888-17.024-15.317-19.883-25.899s-1.621-22.144 3.925-31.787zM402.432 142.763l-361.387 603.307c-18.005 31.189-21.589 66.133-13.141 97.707s29.013 60.075 59.648 77.739c19.797 11.435 41.643 17.067 62.933 17.152h722.901c35.797-0.384 67.712-15.104 90.581-38.485s36.864-55.595 36.48-90.923c-0.256-22.869-6.528-44.544-17.323-62.891l-361.557-603.605c-18.432-30.421-47.36-50.389-79.104-58.155s-66.603-3.456-96.811 14.891c-18.304 11.093-33.067 26.24-43.179 43.264z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "triangle"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 246,
+ "paths": [
+ "M640 640h-554.667v-469.333h554.667v170.667zM725.333 384h110.336l102.997 102.997v153.003h-213.333zM298.667 789.333c0 17.664-7.125 33.621-18.731 45.269s-27.605 18.731-45.269 18.731-33.621-7.125-45.269-18.731-18.731-27.605-18.731-45.269 7.125-33.621 18.731-45.269 27.605-18.731 45.269-18.731 33.621 7.125 45.269 18.731 18.731 27.605 18.731 45.269zM938.667 789.333c0-22.912-5.163-44.587-14.379-64h57.045c23.552 0 42.667-19.115 42.667-42.667v-213.333c0-10.923-4.181-21.845-12.501-30.165l-128-128c-7.723-7.723-18.389-12.501-30.165-12.501h-128v-170.667c0-23.552-19.115-42.667-42.667-42.667h-640c-23.552 0-42.667 19.115-42.667 42.667v554.667c0 23.552 19.115 42.667 42.667 42.667h57.045c-9.216 19.413-14.379 41.088-14.379 64 0 41.216 16.768 78.635 43.733 105.6s64.384 43.733 105.6 43.733 78.635-16.768 105.6-43.733 43.733-64.384 43.733-105.6c0-22.912-5.163-44.587-14.379-64h284.757c-9.216 19.413-14.379 41.088-14.379 64 0 41.216 16.768 78.635 43.733 105.6s64.384 43.733 105.6 43.733 78.635-16.768 105.6-43.733 43.733-64.384 43.733-105.6zM853.333 789.333c0 17.664-7.125 33.621-18.731 45.269s-27.605 18.731-45.269 18.731-33.621-7.125-45.269-18.731-18.731-27.605-18.731-45.269 7.125-33.621 18.731-45.269 27.605-18.731 45.269-18.731 33.621 7.125 45.269 18.731 18.731 27.605 18.731 45.269z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "truck"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 247,
+ "paths": [
+ "M512 341.333h341.333c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v469.333c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-682.667c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-469.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501h341.333zM695.168 55.168l-183.168 183.168-183.168-183.168c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l140.501 140.501h-238.336c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v469.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h682.667c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-469.333c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-238.336l140.501-140.501c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tv"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 248,
+ "paths": [
+ "M853.333 128v451.669l-145.664 145.664h-195.669c-10.923 0-21.845 4.181-30.165 12.501l-97.835 97.835v-67.669c0-23.552-19.115-42.667-42.667-42.667h-170.667v-597.333zM896 42.667h-768c-23.552 0-42.667 19.115-42.667 42.667v682.667c0 23.552 19.115 42.667 42.667 42.667h170.667v128c0 23.552 19.115 42.667 42.667 42.667 11.776 0 22.443-4.779 30.165-12.501l158.165-158.165h195.669c11.776 0 22.443-4.779 30.165-12.501l170.667-170.667c8.32-8.32 12.501-19.243 12.501-30.165v-512c0-23.552-19.115-42.667-42.667-42.667zM512 469.333v-170.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v170.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM725.333 469.333v-170.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v170.667c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "twitch"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 249,
+ "paths": [
+ "M888.875 224.512c-7.936 10.325-16.683 20.267-26.283 29.696-9.941 9.899-14.805 24.192-11.861 38.741 1.579 7.765 2.56 17.237 2.603 27.051 0 224.256-103.637 382.763-247.893 464.981-112.939 64.384-253.355 83.413-393.472 47.787 53.12-15.403 104.96-39.296 153.301-72.107 6.272-4.224 11.648-10.368 15.019-17.963 9.557-21.547-0.128-46.763-21.675-56.32-118.357-52.608-176.213-125.056-203.477-195.968-17.792-46.251-23.296-93.781-22.187-137.685 0.896-34.603 5.888-66.56 11.861-93.099 16.811 14.635 34.261 30.123 52.693 44.288 87.509 67.285 197.291 105.771 315.52 102.699 23.168-0.64 41.643-19.499 41.643-42.667v-43.136c-0.085-7.637 0.384-15.232 1.451-22.741 4.821-34.389 21.504-66.944 49.579-91.349 30.933-26.923 69.803-38.741 107.776-36.096s74.795 19.755 101.717 50.688c10.752 12.203 27.691 17.749 44.075 12.971 9.856-2.859 19.755-6.101 29.653-9.728zM956.757 93.141c-31.573 22.272-64.981 39.509-97.579 51.413-39.723-35.669-89.216-55.552-139.776-59.093-59.648-4.139-121.003 14.464-169.685 56.832-44.203 38.443-70.485 89.941-78.080 143.872-1.579 11.307-2.347 22.699-2.304 34.133-82.005-6.059-157.568-36.267-219.733-84.053-33.067-25.429-62.379-55.851-86.784-90.283-13.653-19.2-40.277-23.765-59.477-10.112-6.571 4.651-11.392 10.795-14.293 17.451 0 0-5.632 12.757-12.16 32.427-4.779 14.379-10.283 33.067-15.232 55.040-6.955 30.805-12.885 68.352-13.909 109.696-1.323 52.352 5.12 111.445 27.819 170.496 29.141 75.733 83.883 148.395 176.939 205.781-66.944 30.976-138.453 44.331-207.915 41.259-23.552-1.024-43.477 17.195-44.501 40.747-0.725 16.597 8.107 31.403 21.888 39.168 209.28 116.267 444.843 114.261 625.749 11.136 172.373-98.176 290.944-285.867 290.944-539.051-0.043-7.125-0.341-14.080-0.981-20.864 42.923-47.573 71.509-103.637 85.163-161.323 5.419-22.912-8.789-45.909-31.701-51.328-12.373-2.944-24.747-0.128-34.432 6.656z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "twitter"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 250,
+ "paths": [
+ "M469.333 213.333v597.333h-85.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h256c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-85.333v-597.333h256v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-128c0-23.552-19.115-42.667-42.667-42.667h-682.667c-23.552 0-42.667 19.115-42.667 42.667v128c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-85.333z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "type"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 251,
+ "paths": [
+ "M931.84 469.333h-839.424c16.512-77.824 53.717-148.224 106.027-204.629 68.992-74.411 164.181-124.373 272.811-134.741 117.888-11.264 229.077 26.283 313.771 96.213 73.259 60.501 126.507 145.109 146.816 243.2zM1023.787 507.947c-13.483-141.312-83.029-263.851-184.448-347.605s-234.88-128.853-376.192-115.371c-130.219 12.416-244.523 72.491-327.253 161.664-75.051 80.939-124.117 185.899-135.68 301.099-2.347 23.467 14.763 44.373 38.187 46.72 1.493 0.171 2.987 0.213 4.267 0.213h938.667c22.656 0 41.216-17.664 42.581-39.979-0.043-5.845-0.085-6.315-0.128-6.741zM725.333 810.667c0 23.595-9.515 44.843-25.003 60.331s-36.736 25.003-60.331 25.003-44.843-9.515-60.331-25.003-25.003-36.736-25.003-60.331v-298.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v298.667c0 47.104 19.157 89.856 50.005 120.661s73.557 50.005 120.661 50.005 89.856-19.157 120.661-50.005 50.005-73.557 50.005-120.661c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "umbrella"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 252,
+ "paths": [
+ "M213.333 128v298.667c0 82.475 33.493 157.184 87.467 211.2s128.725 87.467 211.2 87.467 157.184-33.493 211.2-87.467 87.467-128.725 87.467-211.2v-298.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v298.667c0 58.923-23.851 112.213-62.464 150.869s-91.947 62.464-150.869 62.464-112.213-23.851-150.869-62.464-62.464-91.947-62.464-150.869v-298.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM170.667 938.667h682.667c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-682.667c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "underline"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 253,
+ "paths": [
+ "M213.333 512h597.333c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v298.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-597.333c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-298.667c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501zM341.333 426.667v-128c-0.043-47.189 18.987-89.813 49.877-120.789 30.848-30.891 73.344-50.005 120.363-50.091 43.947 0.128 83.115 16.128 113.152 42.667 27.221 24.107 46.805 56.832 54.613 94.251 4.821 23.083 27.392 37.888 50.475 33.067s37.888-27.392 33.067-50.475c-11.605-55.765-40.875-104.704-81.579-140.757-45.227-40.021-104.619-64.171-169.515-64.085-70.699 0.085-134.699 28.843-180.949 75.179s-74.923 110.379-74.837 181.035v128h-42.667c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v298.667c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h597.333c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-298.667c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "unlock"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 254,
+ "paths": [
+ "M853.333 640v170.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-597.333c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-170.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v170.667c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h597.333c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-170.667c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM469.333 230.997v409.003c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-409.003l140.501 140.501c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-213.333-213.333c-3.925-3.925-8.619-7.083-13.824-9.259-10.453-4.309-22.229-4.309-32.683 0-5.035 2.091-9.728 5.163-13.824 9.259l-213.333 213.333c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "upload"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 255,
+ "paths": [
+ "M469.333 614.997v281.003c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-281.003l97.835 97.835c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-170.667-170.667c-3.925-3.925-8.619-7.083-13.824-9.259s-10.795-3.243-16.341-3.243c-10.923 0-21.845 4.181-30.165 12.501l-170.667 170.667c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0zM890.411 822.101c62.037-33.835 104.576-89.685 123.051-152.491s13.013-132.779-20.821-194.816c-28.971-53.12-74.112-91.947-126.251-113.621-30.891-12.843-64.213-19.627-98.091-19.84h-22.485c-30.933-87.765-91.477-158.208-167.125-202.752-84.608-49.835-188.373-67.456-291.029-40.917s-184.875 92.245-234.752 176.853-67.456 188.373-40.917 291.029c15.872 61.312 45.781 115.584 84.267 158.421 15.744 17.536 42.752 18.944 60.245 3.2s18.944-42.752 3.2-60.245c-29.355-32.64-52.693-74.667-65.109-122.752-20.651-79.872-6.997-160.469 31.829-226.347s102.699-116.907 182.571-137.557 160.469-6.997 226.347 31.829 116.907 102.699 137.557 182.571c4.949 18.56 21.589 32 41.344 32h53.461c22.869 0.171 45.269 4.736 65.92 13.312 34.773 14.464 64.725 40.235 84.053 75.648 22.571 41.387 26.24 87.936 13.867 129.877s-40.661 79.104-82.048 101.632c-20.693 11.264-28.331 37.205-17.024 57.899s37.205 28.331 57.899 17.024z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "upload-cloud"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 256,
+ "paths": [
+ "M896 896v-85.333c0-58.88-23.936-112.299-62.464-150.869s-91.989-62.464-150.869-62.464h-341.333c-58.88 0-112.299 23.936-150.869 62.464s-62.464 91.989-62.464 150.869v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-85.333c0-35.371 14.293-67.285 37.504-90.496s55.125-37.504 90.496-37.504h341.333c35.371 0 67.285 14.293 90.496 37.504s37.504 55.125 37.504 90.496v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM725.333 298.667c0-58.88-23.936-112.299-62.464-150.869s-91.989-62.464-150.869-62.464-112.299 23.936-150.869 62.464-62.464 91.989-62.464 150.869 23.936 112.299 62.464 150.869 91.989 62.464 150.869 62.464 112.299-23.936 150.869-62.464 62.464-91.989 62.464-150.869zM640 298.667c0 35.371-14.293 67.285-37.504 90.496s-55.125 37.504-90.496 37.504-67.285-14.293-90.496-37.504-37.504-55.125-37.504-90.496 14.293-67.285 37.504-90.496 55.125-37.504 90.496-37.504 67.285 14.293 90.496 37.504 37.504 55.125 37.504 90.496z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "user"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 257,
+ "paths": [
+ "M725.333 896v-85.333c0-58.88-23.936-112.299-62.464-150.869s-91.989-62.464-150.869-62.464h-298.667c-58.88 0-112.299 23.936-150.869 62.464s-62.464 91.989-62.464 150.869v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-85.333c0-35.371 14.293-67.285 37.504-90.496s55.125-37.504 90.496-37.504h298.667c35.371 0 67.285 14.293 90.496 37.504s37.504 55.125 37.504 90.496v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM576 298.667c0-58.88-23.936-112.299-62.464-150.869s-91.989-62.464-150.869-62.464-112.299 23.936-150.869 62.464-62.464 91.989-62.464 150.869 23.936 112.299 62.464 150.869 91.989 62.464 150.869 62.464 112.299-23.936 150.869-62.464 62.464-91.989 62.464-150.869zM490.667 298.667c0 35.371-14.293 67.285-37.504 90.496s-55.125 37.504-90.496 37.504-67.285-14.293-90.496-37.504-37.504-55.125-37.504-90.496 14.293-67.285 37.504-90.496 55.125-37.504 90.496-37.504 67.285 14.293 90.496 37.504 37.504 55.125 37.504 90.496zM695.168 499.499l85.333 85.333c16.683 16.683 43.691 16.683 60.331 0l170.667-170.667c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-140.501 140.501-55.168-55.168c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "user-check"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 258,
+ "paths": [
+ "M725.333 896v-85.333c0-58.88-23.936-112.299-62.464-150.869s-91.989-62.464-150.869-62.464h-298.667c-58.88 0-112.299 23.936-150.869 62.464s-62.464 91.989-62.464 150.869v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-85.333c0-35.371 14.293-67.285 37.504-90.496s55.125-37.504 90.496-37.504h298.667c35.371 0 67.285 14.293 90.496 37.504s37.504 55.125 37.504 90.496v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM576 298.667c0-58.88-23.936-112.299-62.464-150.869s-91.989-62.464-150.869-62.464-112.299 23.936-150.869 62.464-62.464 91.989-62.464 150.869 23.936 112.299 62.464 150.869 91.989 62.464 150.869 62.464 112.299-23.936 150.869-62.464 62.464-91.989 62.464-150.869zM490.667 298.667c0 35.371-14.293 67.285-37.504 90.496s-55.125 37.504-90.496 37.504-67.285-14.293-90.496-37.504-37.504-55.125-37.504-90.496 14.293-67.285 37.504-90.496 55.125-37.504 90.496-37.504 67.285 14.293 90.496 37.504 37.504 55.125 37.504 90.496zM981.333 426.667h-256c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h256c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "user-minus"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 259,
+ "paths": [
+ "M725.333 896v-85.333c0-58.88-23.936-112.299-62.464-150.869s-91.989-62.464-150.869-62.464h-298.667c-58.88 0-112.299 23.936-150.869 62.464s-62.464 91.989-62.464 150.869v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-85.333c0-35.371 14.293-67.285 37.504-90.496s55.125-37.504 90.496-37.504h298.667c35.371 0 67.285 14.293 90.496 37.504s37.504 55.125 37.504 90.496v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM576 298.667c0-58.88-23.936-112.299-62.464-150.869s-91.989-62.464-150.869-62.464-112.299 23.936-150.869 62.464-62.464 91.989-62.464 150.869 23.936 112.299 62.464 150.869 91.989 62.464 150.869 62.464 112.299-23.936 150.869-62.464 62.464-91.989 62.464-150.869zM490.667 298.667c0 35.371-14.293 67.285-37.504 90.496s-55.125 37.504-90.496 37.504-67.285-14.293-90.496-37.504-37.504-55.125-37.504-90.496 14.293-67.285 37.504-90.496 55.125-37.504 90.496-37.504 67.285 14.293 90.496 37.504 37.504 55.125 37.504 90.496zM981.333 426.667h-85.333v-85.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v85.333h-85.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h85.333v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-85.333h85.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "user-plus"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 260,
+ "paths": [
+ "M725.333 896v-85.333c0-58.88-23.936-112.299-62.464-150.869s-91.989-62.464-150.869-62.464h-298.667c-58.88 0-112.299 23.936-150.869 62.464s-62.464 91.989-62.464 150.869v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-85.333c0-35.371 14.293-67.285 37.504-90.496s55.125-37.504 90.496-37.504h298.667c35.371 0 67.285 14.293 90.496 37.504s37.504 55.125 37.504 90.496v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM576 298.667c0-58.88-23.936-112.299-62.464-150.869s-91.989-62.464-150.869-62.464-112.299 23.936-150.869 62.464-62.464 91.989-62.464 150.869 23.936 112.299 62.464 150.869 91.989 62.464 150.869 62.464 112.299-23.936 150.869-62.464 62.464-91.989 62.464-150.869zM490.667 298.667c0 35.371-14.293 67.285-37.504 90.496s-55.125 37.504-90.496 37.504-67.285-14.293-90.496-37.504-37.504-55.125-37.504-90.496 14.293-67.285 37.504-90.496 55.125-37.504 90.496-37.504 67.285 14.293 90.496 37.504 37.504 55.125 37.504 90.496zM951.168 311.168l-76.501 76.501-76.501-76.501c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l76.501 76.501-76.501 76.501c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l76.501-76.501 76.501 76.501c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-76.501-76.501 76.501-76.501c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "user-x"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 261,
+ "paths": [
+ "M768 896v-85.333c0-58.88-23.936-112.299-62.464-150.869s-91.989-62.464-150.869-62.464h-341.333c-58.88 0-112.299 23.936-150.869 62.464s-62.464 91.989-62.464 150.869v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-85.333c0-35.371 14.293-67.285 37.504-90.496s55.125-37.504 90.496-37.504h341.333c35.371 0 67.285 14.293 90.496 37.504s37.504 55.125 37.504 90.496v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM597.333 298.667c0-58.88-23.936-112.299-62.464-150.869s-91.989-62.464-150.869-62.464-112.299 23.936-150.869 62.464-62.464 91.989-62.464 150.869 23.936 112.299 62.464 150.869 91.989 62.464 150.869 62.464 112.299-23.936 150.869-62.464 62.464-91.989 62.464-150.869zM512 298.667c0 35.371-14.293 67.285-37.504 90.496s-55.125 37.504-90.496 37.504-67.285-14.293-90.496-37.504-37.504-55.125-37.504-90.496 14.293-67.285 37.504-90.496 55.125-37.504 90.496-37.504 67.285 14.293 90.496 37.504 37.504 55.125 37.504 90.496zM1024 896v-85.333c-0.043-53.12-19.499-101.76-51.84-139.136-27.819-32.128-65.195-55.936-107.904-67.243-22.784-6.016-46.123 7.552-52.139 30.336s7.552 46.123 30.336 52.139c25.899 6.869 48.469 21.248 65.195 40.619 19.371 22.443 30.976 51.456 31.019 83.285v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667zM672.085 174.891c34.261 8.789 61.653 30.507 78.379 58.752s22.656 62.72 13.867 96.981c-7.509 29.355-24.533 53.589-47.147 70.485-13.397 10.027-28.8 17.451-45.355 21.803-22.784 5.973-36.437 29.312-30.421 52.096s29.312 36.437 52.096 30.421c27.179-7.125 52.565-19.413 74.752-36.011 37.717-28.16 66.219-68.821 78.72-117.675 14.592-57.045 4.693-114.731-23.125-161.621s-73.6-83.328-130.645-97.963c-22.827-5.845-46.080 7.936-51.925 30.763s7.936 46.080 30.763 51.925z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "users"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 262,
+ "paths": [
+ "M938.667 381.568v260.864l-182.613-130.432zM128 170.667c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v426.667c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h469.333c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-130.432l231.211 165.163c19.157 13.696 45.824 9.259 59.52-9.899 5.376-7.595 7.979-16.341 7.936-24.832v-426.667c0-23.552-19.115-42.667-42.667-42.667-9.301 0-17.92 2.987-24.789 7.936l-231.211 165.163v-130.432c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504zM128 256h469.333c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v426.667c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-469.333c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-426.667c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "video"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 263,
+ "paths": [
+ "M454.827 256h142.507c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v142.507c0 11.776 4.779 22.443 12.501 30.165l42.667 42.667c14.976 14.976 38.315 16.512 55.168 4.395l188.331-136.192v343.125c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-426.667c0.043-8.576-2.603-17.408-8.107-25.003-13.824-19.072-40.491-23.381-59.563-9.557l-226.517 163.883-4.48-4.48v-124.843c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504h-142.507c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM195.669 256l444.331 444.331v25.003c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-469.333c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-426.667c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501zM12.501 72.832l98.901 98.901c-28.715 3.712-54.485 16.981-73.899 36.437-23.125 23.083-37.504 55.168-37.504 90.496v426.667c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h469.333c35.328 0 67.413-14.379 90.496-37.504 11.477-11.477 20.821-25.173 27.307-40.363l236.032 236.032c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-938.667-938.667c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "video-off"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 264,
+ "paths": [
+ "M384 490.667c0 41.259-16.683 78.507-43.733 105.6s-64.341 43.733-105.6 43.733-78.507-16.683-105.6-43.733-43.733-64.341-43.733-105.6 16.683-78.507 43.733-105.6 64.341-43.733 105.6-43.733 78.507 16.683 105.6 43.733 43.733 64.341 43.733 105.6zM938.667 490.667c0 41.259-16.683 78.507-43.733 105.6s-64.341 43.733-105.6 43.733-78.507-16.683-105.6-43.733-43.733-64.341-43.733-105.6 16.683-78.507 43.733-105.6 64.341-43.733 105.6-43.733 78.507 16.683 105.6 43.733 43.733 64.341 43.733 105.6zM234.667 725.333h554.667c64.811 0 123.52-26.325 165.931-68.736s68.736-101.12 68.736-165.931-26.325-123.52-68.736-165.931-101.12-68.736-165.931-68.736-123.52 26.325-165.931 68.736-68.736 101.12-68.736 165.931c0 56.704 20.181 108.8 53.632 149.333h-192.597c33.451-40.533 53.632-92.629 53.632-149.333 0-64.811-26.325-123.52-68.736-165.931s-101.12-68.736-165.931-68.736-123.52 26.325-165.931 68.736-68.736 101.12-68.736 165.931 26.325 123.52 68.736 165.931 101.12 68.736 165.931 68.736z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "voicemail"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 265,
+ "paths": [
+ "M426.667 302.123v419.797l-144-115.2c-7.253-5.845-16.555-9.387-26.667-9.387h-128v-170.667h128c9.301 0.043 18.731-3.029 26.667-9.344zM442.667 180.011l-201.643 161.323h-155.691c-23.552 0-42.667 19.115-42.667 42.667v256c0 23.552 19.115 42.667 42.667 42.667h155.691l201.643 161.323c18.389 14.72 45.269 11.733 59.989-6.656 6.315-7.893 9.387-17.365 9.344-26.667v-597.333c0-23.552-19.115-42.667-42.667-42.667-10.112 0-19.413 3.541-26.667 9.344z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "volume"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 266,
+ "paths": [
+ "M426.667 302.123v419.797l-144-115.2c-7.253-5.845-16.555-9.387-26.667-9.387h-128v-170.667h128c9.301 0.043 18.731-3.029 26.667-9.344zM442.667 180.011l-201.643 161.323h-155.691c-23.552 0-42.667 19.115-42.667 42.667v256c0 23.552 19.115 42.667 42.667 42.667h155.691l201.643 161.323c18.389 14.72 45.269 11.733 59.989-6.656 6.315-7.893 9.387-17.365 9.344-26.667v-597.333c0-23.552-19.115-42.667-42.667-42.667-10.112 0-19.413 3.541-26.667 9.344zM632.875 391.125c33.323 33.323 49.963 76.928 49.963 120.661s-16.64 87.339-49.963 120.661c-16.64 16.683-16.64 43.691 0 60.331s43.691 16.64 60.331 0c49.963-49.963 74.965-115.541 74.965-180.992s-25.003-131.029-74.965-180.992c-16.64-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "volume-1"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 267,
+ "paths": [
+ "M426.667 302.123v419.797l-144-115.2c-7.253-5.845-16.555-9.387-26.667-9.387h-128v-170.667h128c9.301 0.043 18.731-3.029 26.667-9.344zM442.667 180.011l-201.643 161.323h-155.691c-23.552 0-42.667 19.115-42.667 42.667v256c0 23.552 19.115 42.667 42.667 42.667h155.691l201.643 161.323c18.389 14.72 45.269 11.733 59.989-6.656 6.315-7.893 9.387-17.365 9.344-26.667v-597.333c0-23.552-19.115-42.667-42.667-42.667-10.112 0-19.413 3.541-26.667 9.344zM783.488 240.512c74.965 75.008 112.427 173.184 112.427 271.531 0 98.304-37.461 196.48-112.427 271.445-16.64 16.683-16.64 43.691 0 60.331s43.691 16.64 60.331 0c91.605-91.605 137.387-211.755 137.429-331.776 0-120.021-45.824-240.213-137.429-331.861-16.64-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331zM632.875 391.125c33.323 33.323 49.963 76.928 49.963 120.661s-16.64 87.339-49.963 120.661c-16.64 16.683-16.64 43.691 0 60.331s43.691 16.64 60.331 0c49.963-49.963 74.965-115.541 74.965-180.992s-25.003-131.029-74.965-180.992c-16.64-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "volume-2"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 268,
+ "paths": [
+ "M426.667 302.123v419.797l-144-115.2c-7.253-5.845-16.555-9.387-26.667-9.387h-128v-170.667h128c9.301 0.043 18.731-3.029 26.667-9.344zM442.667 180.011l-201.643 161.323h-155.691c-23.552 0-42.667 19.115-42.667 42.667v256c0 23.552 19.115 42.667 42.667 42.667h155.691l201.643 161.323c18.389 14.72 45.269 11.733 59.989-6.656 6.315-7.893 9.387-17.365 9.344-26.667v-597.333c0-23.552-19.115-42.667-42.667-42.667-10.112 0-19.413 3.541-26.667 9.344zM695.168 414.165l97.835 97.835-97.835 97.835c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l97.835-97.835 97.835 97.835c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-97.835-97.835 97.835-97.835c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-97.835 97.835-97.835-97.835c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "volume-x"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 269,
+ "paths": [
+ "M469.333 384v128c0 11.776 4.779 22.443 12.501 30.165l64 64c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-51.499-51.499v-110.336c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667zM654.080 822.443l-7.083 77.355c-1.024 11.349-6.272 21.12-14.208 28.075-7.68 6.784-17.707 10.795-28.587 10.795h-184.789c-11.52 0.043-21.717-4.267-29.44-11.477-7.467-6.997-12.416-16.597-13.44-27.435l-7.040-77.525c43.349 19.968 91.648 31.104 142.507 31.104 50.688 0 98.816-11.051 142.080-30.891zM349.312 314.325c44.245-36.48 100.864-58.325 162.688-58.325 70.699 0 134.656 28.587 181.035 74.965s74.965 110.336 74.965 181.035-28.587 134.656-74.965 181.035c-4.437 4.437-9.003 8.704-13.781 12.8-1.493 1.323-3.029 2.603-4.565 3.84-44.245 36.48-100.864 58.325-162.688 58.325-70.699 0-134.656-28.587-181.035-74.965s-74.965-110.336-74.965-181.035 28.587-134.656 74.965-181.035c4.437-4.437 9.003-8.704 13.781-12.8 1.493-1.323 3.029-2.603 4.565-3.84zM746.283 263.765l-13.44-147.413c-2.987-32.256-17.835-61.013-40.021-81.792-22.997-21.547-54.016-34.688-87.808-34.56h-185.771c-32.213 0.128-62.037 12.203-84.693 32.299-23.509 20.821-39.467 50.432-42.539 84.139l-13.397 146.475c-2.688 2.517-5.376 5.12-7.979 7.723-61.696 61.739-99.968 147.115-99.968 241.365s38.272 179.627 99.968 241.365c2.475 2.475 4.992 4.907 7.509 7.296l13.44 146.987c2.987 32.256 17.835 61.013 40.021 81.792 22.997 21.547 54.016 34.688 87.808 34.56h184.704c32.384 0.043 62.421-12.032 85.205-32.171 23.595-20.864 39.637-50.517 42.667-84.267l13.397-146.475c2.688-2.517 5.376-5.12 7.979-7.723 61.696-61.739 99.968-147.115 99.968-241.365s-38.272-179.627-99.968-241.365c-2.304-2.304-4.693-4.608-7.040-6.869zM369.92 201.557l7.083-77.355c1.024-11.307 6.272-21.077 14.123-28.032 7.637-6.784 17.579-10.795 28.459-10.837h185.429c11.52-0.043 21.717 4.267 29.44 11.477 7.467 6.997 12.416 16.597 13.44 27.435l7.083 77.696c-43.52-20.053-91.947-31.275-142.976-31.275-50.688 0-98.816 11.051-142.080 30.891z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "watch"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 270,
+ "paths": [
+ "M240.64 568.235c83.712-69.717 186.069-101.931 287.275-98.347 92.459 3.285 183.893 36.48 259.029 98.475 18.176 14.976 45.056 12.416 60.075-5.76s12.416-45.056-5.76-60.075c-89.899-74.155-199.424-113.963-310.272-117.888-121.429-4.309-244.523 34.389-344.917 118.059-18.091 15.061-20.565 41.984-5.461 60.075s41.984 20.565 60.075 5.461zM88.789 416c125.312-110.464 281.6-162.987 436.736-159.445 146.901 3.371 292.651 57.045 409.771 159.531 17.749 15.531 44.672 13.739 60.203-4.011s13.739-44.672-4.011-60.203c-132.608-116.053-297.685-176.853-464.043-180.651-175.744-4.011-353.067 55.595-495.061 180.779-17.707 15.573-19.371 42.539-3.797 60.203s42.539 19.371 60.203 3.797zM388.651 722.133c42.24-30.037 91.563-42.453 139.691-38.656 38.016 2.987 75.307 16.128 107.648 38.784 19.285 13.525 45.909 8.832 59.435-10.453s8.832-45.909-10.453-59.435c-44.928-31.488-96.811-49.792-149.888-53.973-67.413-5.333-136.704 12.16-195.84 54.144-19.2 13.653-23.723 40.277-10.069 59.477s40.277 23.723 59.477 10.069zM512 896c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wifi"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 271,
+ "paths": [
+ "M694.656 510.251c33.664 16.427 63.915 36.565 88.064 57.472 17.835 15.403 44.757 13.483 60.203-4.352s13.483-44.757-4.352-60.203c-29.995-25.984-66.517-50.133-106.496-69.675-21.163-10.325-46.72-1.536-57.045 19.627s-1.536 46.72 19.627 57.045zM460.373 258.005c171.52-13.824 332.629 41.301 456.363 142.379 6.229 5.12 12.373 10.325 18.432 15.659 17.664 15.573 44.629 13.867 60.203-3.797s13.867-44.629-3.797-60.203c-6.827-6.016-13.824-11.947-20.864-17.707-140.117-114.475-322.816-177.024-517.205-161.323-23.467 1.835-40.96 22.4-39.083 45.867s22.485 41.003 45.952 39.083zM388.651 722.133c42.24-30.037 91.563-42.453 139.691-38.656 38.016 2.987 75.307 16.128 107.648 38.784 9.941 6.955 21.845 9.088 32.853 6.912l282.325 282.325c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-544-544c-2.133-2.688-4.523-5.12-7.211-7.211l-387.456-387.456c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l174.421 174.421c-53.632 26.837-106.24 61.995-154.581 104.747-17.664 15.616-19.328 42.581-3.712 60.245s42.581 19.328 60.245 3.712c50.816-44.928 106.624-80.085 162.219-104.576l99.115 99.115c-57.941 19.499-113.963 50.219-164.224 92.203-18.091 15.104-20.48 42.027-5.376 60.117s42.027 20.48 60.117 5.376c54.187-45.312 116.224-74.667 178.688-88.491l118.997 118.997c-1.109-0.085-2.219-0.213-3.328-0.299-67.413-5.333-136.704 12.16-195.84 54.144-19.2 13.653-23.723 40.277-10.069 59.477s40.277 23.723 59.477 10.069zM512 896c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667-42.667 19.115-42.667 42.667 19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wifi-off"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 272,
+ "paths": [
+ "M439.424 225.92c8.32-8.363 19.157-12.544 30.123-12.587s21.845 4.096 30.208 12.416 12.544 19.157 12.587 30.123-4.096 21.845-12.416 30.208c-8.192 8.277-18.859 12.459-29.739 12.587h-384.853c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h385.835c32.341-0.384 64.683-12.971 89.301-37.76 24.917-25.045 37.333-57.941 37.205-90.624s-12.715-65.493-37.76-90.411-57.899-37.291-90.581-37.205-65.493 12.715-90.411 37.76c-16.64 16.725-16.555 43.733 0.171 60.331s43.733 16.512 60.331-0.171zM506.923 858.24c24.917 25.045 57.685 37.675 90.411 37.76s65.579-12.331 90.624-37.205 37.675-57.685 37.76-90.411-12.331-65.579-37.205-90.624c-24.619-24.789-56.96-37.376-89.301-37.76h-513.877c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h512.853c10.88 0.128 21.547 4.309 29.781 12.587 8.32 8.363 12.459 19.243 12.416 30.208s-4.224 21.803-12.587 30.123-19.243 12.459-30.208 12.416-21.803-4.224-30.123-12.587c-16.597-16.725-43.648-16.811-60.331-0.171s-16.811 43.648-0.171 60.331zM786.603 360.021c12.544-12.501 28.843-18.688 45.269-18.688s32.725 6.272 45.227 18.816 18.688 28.843 18.688 45.269-6.272 32.725-18.816 45.227c-12.459 12.459-28.715 18.645-45.099 18.688l-746.539-0c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h746.752c38.016-0.085 76.117-14.592 105.216-43.605 29.184-29.099 43.819-67.371 43.861-105.557s-14.507-76.459-43.605-105.643-67.413-43.819-105.557-43.861-76.459 14.507-105.643 43.605c-16.683 16.64-16.725 43.648-0.085 60.331s43.648 16.725 60.331 0.085z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wind"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 273,
+ "paths": [
+ "M225.835 286.165l225.835 225.835-225.835 225.835c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l225.835-225.835 225.835 225.835c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-225.835-225.835 225.835-225.835c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-225.835 225.835-225.835-225.835c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "x"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 274,
+ "paths": [
+ "M981.333 512c0-129.579-52.565-246.997-137.472-331.861s-202.283-137.472-331.861-137.472-246.997 52.565-331.861 137.472-137.472 202.283-137.472 331.861 52.565 246.997 137.472 331.861 202.283 137.472 331.861 137.472 246.997-52.565 331.861-137.472 137.472-202.283 137.472-331.861zM896 512c0 106.069-42.923 201.984-112.469 271.531s-165.461 112.469-271.531 112.469-201.984-42.923-271.531-112.469-112.469-165.461-112.469-271.531 42.923-201.984 112.469-271.531 165.461-112.469 271.531-112.469 201.984 42.923 271.531 112.469 112.469 165.461 112.469 271.531zM353.835 414.165l97.835 97.835-97.835 97.835c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l97.835-97.835 97.835 97.835c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-97.835-97.835 97.835-97.835c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-97.835 97.835-97.835-97.835c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "x-circle"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 275,
+ "paths": [
+ "M335.36 42.667c-10.923 0-21.845 4.181-30.165 12.501l-250.027 250.027c-7.723 7.723-12.501 18.389-12.501 30.165v353.28c0 10.923 4.181 21.845 12.501 30.165l250.027 250.027c7.723 7.723 18.389 12.501 30.165 12.501h353.28c10.923 0 21.845-4.181 30.165-12.501l250.027-250.027c7.723-7.723 12.501-18.389 12.501-30.165v-353.28c0-10.923-4.181-21.845-12.501-30.165l-250.027-250.027c-7.723-7.723-18.389-12.501-30.165-12.501zM353.024 128h317.952l225.024 225.024v317.952l-225.024 225.024h-317.952l-225.024-225.024v-317.952zM353.835 414.165l97.835 97.835-97.835 97.835c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l97.835-97.835 97.835 97.835c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-97.835-97.835 97.835-97.835c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-97.835 97.835-97.835-97.835c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "x-octagon"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 276,
+ "paths": [
+ "M213.333 85.333c-35.328 0-67.413 14.379-90.496 37.504s-37.504 55.168-37.504 90.496v597.333c0 35.328 14.379 67.413 37.504 90.496s55.168 37.504 90.496 37.504h597.333c35.328 0 67.413-14.379 90.496-37.504s37.504-55.168 37.504-90.496v-597.333c0-35.328-14.379-67.413-37.504-90.496s-55.168-37.504-90.496-37.504zM213.333 170.667h597.333c11.776 0 22.4 4.736 30.165 12.501s12.501 18.389 12.501 30.165v597.333c0 11.776-4.736 22.4-12.501 30.165s-18.389 12.501-30.165 12.501h-597.333c-11.776 0-22.4-4.736-30.165-12.501s-12.501-18.389-12.501-30.165v-597.333c0-11.776 4.736-22.4 12.501-30.165s18.389-12.501 30.165-12.501zM609.835 353.835l-97.835 97.835-97.835-97.835c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331l97.835 97.835-97.835 97.835c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l97.835-97.835 97.835 97.835c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-97.835-97.835 97.835-97.835c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "x-square"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 277,
+ "paths": [
+ "M920.021 283.179c12.245 65.237 19.115 140.587 18.645 218.667 0.811 65.195-5.248 139.392-18.645 214.229-2.432 8.875-6.4 17.195-11.605 24.533-9.685 13.696-23.808 24.107-40.491 28.8-25.771 6.869-91.989 11.733-165.419 14.549-95.147 3.669-190.507 3.669-190.507 3.669s-95.36 0-190.507-3.627c-73.429-2.816-139.648-7.637-164.949-14.421-8.747-2.432-16.896-6.357-24.149-11.435-13.269-9.387-23.467-22.869-28.587-39.381-12.16-65.109-18.944-140.203-18.475-218.027-0.896-65.707 5.163-140.459 18.645-215.893 2.432-8.875 6.4-17.195 11.605-24.533 9.685-13.696 23.808-24.107 40.491-28.8 25.771-6.869 91.989-11.733 165.419-14.549 95.147-3.627 190.507-3.627 190.507-3.627s95.36 0 190.549 3.328c73.344 2.56 140.032 6.955 164.523 12.928 9.344 2.688 17.963 7.040 25.515 12.757 13.099 9.899 22.955 23.936 27.435 40.875zM1003.093 263.552c-9.259-36.949-30.635-67.84-59.008-89.301-15.915-12.032-33.963-21.077-53.291-26.667-38.315-9.387-115.029-13.781-185.259-16.213-96.725-3.371-193.536-3.371-193.536-3.371s-96.939 0-193.749 3.712c-70.059 2.688-147.2 7.467-184.192 17.365-37.291 10.539-67.456 32.853-88.064 61.867-11.52 16.256-20.011 34.603-25.045 54.101-0.256 1.024-0.469 2.091-0.64 3.029-14.635 80.981-21.291 161.835-20.309 233.856-0.512 82.091 6.869 163.456 20.352 234.752 0.256 1.323 0.555 2.645 0.896 3.755 10.453 36.693 32.853 66.859 61.909 87.381 15.232 10.752 32.299 18.901 50.432 23.936 37.504 10.027 114.603 14.805 184.661 17.493 96.811 3.712 193.749 3.712 193.749 3.712s96.939 0 193.749-3.712c70.059-2.688 147.157-7.467 184.192-17.365 37.248-10.539 67.456-32.853 88.021-61.867 11.52-16.256 20.053-34.603 25.045-54.059 0.256-1.067 0.512-2.133 0.64-3.029 14.507-80.384 21.163-160.64 20.309-232.107 0.512-82.133-6.869-163.541-20.352-234.837-0.171-0.853-0.341-1.707-0.512-2.432zM458.667 567.509v-132.352l116.352 66.176zM437.077 677.931l245.333-139.52c20.48-11.648 27.648-37.717 16-58.197-3.968-6.997-9.643-12.459-16-16l-245.333-139.52c-20.48-11.648-46.549-4.48-58.197 16-3.84 6.741-5.632 14.080-5.589 21.077v279.040c0 23.552 19.115 42.667 42.667 42.667 7.765 0 15.019-2.091 21.077-5.589z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "youtube"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 278,
+ "paths": [
+ "M494.293 224.427l-24.619 196.949c1.408 30.549 19.84 47.957 42.325 47.957h292.907l-275.2 330.24 24.619-196.949c-1.408-30.549-19.84-47.957-42.325-47.957h-292.907zM521.899 58.027l-426.667 512c-15.104 18.091-12.629 45.013 5.461 60.075 7.979 6.699 17.707 9.941 27.307 9.899h335.659l-36.651 293.376c-2.944 23.381 13.653 44.715 37.035 47.616 14.891 1.877 28.928-4.181 38.059-15.019l426.667-512c15.104-18.091 12.629-45.013-5.461-60.075-7.979-6.699-17.707-9.941-27.307-9.899h-335.659l36.651-293.376c2.944-23.381-13.653-44.715-37.035-47.616-14.891-1.877-28.928 4.181-38.059 15.019z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "zap"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 279,
+ "paths": [
+ "M571.819 293.248l25.173-202.667c2.901-23.381-13.696-44.715-37.077-47.616-14.891-1.835-28.928 4.224-38.059 15.061l-103.68 124.587c-15.061 18.133-12.587 45.013 5.504 60.117s45.013 12.629 60.075-5.504l10.624-12.757-7.253 58.283c-2.901 23.381 13.696 44.715 37.077 47.616s44.715-13.696 47.616-37.077zM825.088 578.176l103.68-124.16c15.104-18.091 12.672-45.013-5.419-60.117-8.021-6.656-17.749-9.941-27.349-9.899h-227.84c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667h136.619l-45.227 54.144c-15.104 18.091-12.672 45.013 5.419 60.117s45.013 12.672 60.117-5.419zM553.003 613.333l71.936 71.936-95.232 114.261zM344.192 404.523l150.144 150.144h-275.243zM12.501 72.832l271.104 271.104-188.373 226.091c-15.104 18.091-12.629 45.013 5.461 60.075 7.979 6.699 17.707 9.941 27.307 9.899h335.659l-36.651 293.376c-2.944 23.381 13.653 44.715 37.035 47.616 14.891 1.877 28.928-4.181 38.059-15.019l183.424-220.117 265.643 265.643c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331l-938.667-938.667c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "zap-off"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 280,
+ "paths": [
+ "M684.416 676.523c-1.451 1.109-2.859 2.347-4.224 3.712s-2.56 2.731-3.712 4.224c-53.675 51.755-126.677 83.541-207.147 83.541-82.475 0-157.099-33.365-211.2-87.467s-87.467-128.725-87.467-211.2 33.365-157.099 87.467-211.2 128.725-87.467 211.2-87.467 157.099 33.365 211.2 87.467 87.467 128.725 87.467 211.2c0 80.469-31.787 153.472-83.584 207.189zM926.165 865.835l-156.8-156.8c52.523-65.707 83.968-149.035 83.968-239.701 0-106.027-43.008-202.069-112.469-271.531s-165.504-112.469-271.531-112.469-202.069 43.008-271.531 112.469-112.469 165.504-112.469 271.531 43.008 202.069 112.469 271.531 165.504 112.469 271.531 112.469c90.667 0 173.995-31.445 239.701-83.968l156.8 156.8c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331zM341.333 512h85.333v85.333c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-85.333h85.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-85.333v-85.333c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v85.333h-85.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "zoom-in"
+ ],
+ "grid": 24
+ },
+ {
+ "id": 281,
+ "paths": [
+ "M684.416 676.523c-1.451 1.109-2.859 2.347-4.224 3.712s-2.56 2.731-3.712 4.224c-53.675 51.755-126.677 83.541-207.147 83.541-82.475 0-157.099-33.365-211.2-87.467s-87.467-128.725-87.467-211.2 33.365-157.099 87.467-211.2 128.725-87.467 211.2-87.467 157.099 33.365 211.2 87.467 87.467 128.725 87.467 211.2c0 80.469-31.787 153.472-83.584 207.189zM926.165 865.835l-156.8-156.8c52.523-65.707 83.968-149.035 83.968-239.701 0-106.027-43.008-202.069-112.469-271.531s-165.504-112.469-271.531-112.469-202.069 43.008-271.531 112.469-112.469 165.504-112.469 271.531 43.008 202.069 112.469 271.531 165.504 112.469 271.531 112.469c90.667 0 173.995-31.445 239.701-83.968l156.8 156.8c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331zM341.333 512h256c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-256c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "zoom-out"
+ ],
+ "grid": 24
+ }
+ ]
+ },
+ {
+ "selection": [
+ {
+ "name": "asterisk",
+ "id": 0,
+ "order": 0
+ },
+ {
+ "name": "plus",
+ "id": 1,
+ "order": 0
+ },
+ {
+ "name": "question",
+ "id": 2,
+ "order": 0
+ },
+ {
+ "name": "minus",
+ "id": 3,
+ "order": 0
+ },
+ {
+ "name": "glass",
+ "id": 4,
+ "order": 0
+ },
+ {
+ "name": "music",
+ "id": 5,
+ "order": 0
+ },
+ {
+ "name": "search",
+ "id": 6,
+ "order": 0
+ },
+ {
+ "name": "envelope-o",
+ "id": 7,
+ "order": 0
+ },
+ {
+ "name": "heart",
+ "id": 8,
+ "order": 0
+ },
+ {
+ "name": "star",
+ "id": 9,
+ "order": 0
+ },
+ {
+ "name": "star-o",
+ "id": 10,
+ "order": 0
+ },
+ {
+ "name": "user",
+ "id": 11,
+ "order": 0
+ },
+ {
+ "name": "film",
+ "id": 12,
+ "order": 0
+ },
+ {
+ "name": "th-large",
+ "id": 13,
+ "order": 0
+ },
+ {
+ "name": "th",
+ "id": 14,
+ "order": 0
+ },
+ {
+ "name": "th-list",
+ "id": 15,
+ "order": 0
+ },
+ {
+ "name": "check",
+ "id": 16,
+ "order": 0
+ },
+ {
+ "name": "close, remove, times",
+ "id": 17,
+ "order": 0
+ },
+ {
+ "name": "search-plus",
+ "id": 18,
+ "order": 0
+ },
+ {
+ "name": "search-minus",
+ "id": 19,
+ "order": 0
+ },
+ {
+ "name": "power-off",
+ "id": 20,
+ "order": 0
+ },
+ {
+ "name": "signal",
+ "id": 21,
+ "order": 0
+ },
+ {
+ "name": "cog, gear",
+ "id": 22,
+ "order": 0
+ },
+ {
+ "name": "trash-o",
+ "id": 23,
+ "order": 0
+ },
+ {
+ "name": "home",
+ "id": 24,
+ "order": 0
+ },
+ {
+ "name": "file-o",
+ "id": 25,
+ "order": 0
+ },
+ {
+ "name": "clock-o",
+ "id": 26,
+ "order": 0
+ },
+ {
+ "name": "road",
+ "id": 27,
+ "order": 0
+ },
+ {
+ "name": "download",
+ "id": 28,
+ "order": 0
+ },
+ {
+ "name": "arrow-circle-o-down",
+ "id": 29,
+ "order": 0
+ },
+ {
+ "name": "arrow-circle-o-up",
+ "id": 30,
+ "order": 0
+ },
+ {
+ "name": "inbox",
+ "id": 31,
+ "order": 0
+ },
+ {
+ "name": "play-circle-o",
+ "id": 32,
+ "order": 0
+ },
+ {
+ "name": "repeat, rotate-right",
+ "id": 33,
+ "order": 0
+ },
+ {
+ "name": "refresh",
+ "id": 34,
+ "order": 0
+ },
+ {
+ "name": "list-alt",
+ "id": 35,
+ "order": 0
+ },
+ {
+ "name": "lock",
+ "id": 36,
+ "order": 0
+ },
+ {
+ "name": "flag",
+ "id": 37,
+ "order": 0
+ },
+ {
+ "name": "headphones",
+ "id": 38,
+ "order": 0
+ },
+ {
+ "name": "volume-off",
+ "id": 39,
+ "order": 0
+ },
+ {
+ "name": "volume-down",
+ "id": 40,
+ "order": 0
+ },
+ {
+ "name": "volume-up",
+ "id": 41,
+ "order": 0
+ },
+ {
+ "name": "qrcode",
+ "id": 42,
+ "order": 0
+ },
+ {
+ "name": "barcode",
+ "id": 43,
+ "order": 0
+ },
+ {
+ "name": "tag",
+ "id": 44,
+ "order": 0
+ },
+ {
+ "name": "tags",
+ "id": 45,
+ "order": 0
+ },
+ {
+ "name": "book",
+ "id": 46,
+ "order": 0,
+ "prevSize": 28
+ },
+ {
+ "name": "bookmark",
+ "id": 47,
+ "order": 0
+ },
+ {
+ "name": "print",
+ "id": 48,
+ "order": 0
+ },
+ {
+ "name": "camera",
+ "id": 49,
+ "order": 0
+ },
+ {
+ "name": "font",
+ "id": 50,
+ "order": 0
+ },
+ {
+ "name": "bold",
+ "id": 51,
+ "order": 0
+ },
+ {
+ "name": "italic",
+ "id": 52,
+ "order": 0
+ },
+ {
+ "name": "text-height",
+ "id": 53,
+ "order": 0
+ },
+ {
+ "name": "text-width",
+ "id": 54,
+ "order": 0
+ },
+ {
+ "name": "align-left",
+ "id": 55,
+ "order": 0
+ },
+ {
+ "name": "align-center",
+ "id": 56,
+ "order": 0
+ },
+ {
+ "name": "align-right",
+ "id": 57,
+ "order": 0
+ },
+ {
+ "name": "align-justify",
+ "id": 58,
+ "order": 0
+ },
+ {
+ "name": "list",
+ "id": 59,
+ "order": 0
+ },
+ {
+ "name": "dedent, outdent",
+ "id": 60,
+ "order": 0
+ },
+ {
+ "name": "indent",
+ "id": 61,
+ "order": 0
+ },
+ {
+ "name": "video-camera",
+ "id": 62,
+ "order": 0
+ },
+ {
+ "name": "image, photo, picture-o",
+ "id": 63,
+ "order": 0
+ },
+ {
+ "name": "pencil",
+ "id": 64,
+ "order": 0
+ },
+ {
+ "name": "map-marker",
+ "id": 65,
+ "order": 0
+ },
+ {
+ "name": "adjust",
+ "id": 66,
+ "order": 0
+ },
+ {
+ "name": "tint",
+ "id": 67,
+ "order": 0
+ },
+ {
+ "name": "edit, pencil-square-o",
+ "id": 68,
+ "order": 0
+ },
+ {
+ "name": "share-square-o",
+ "id": 69,
+ "order": 0
+ },
+ {
+ "name": "check-square-o",
+ "id": 70,
+ "order": 0
+ },
+ {
+ "name": "arrows",
+ "id": 71,
+ "order": 0
+ },
+ {
+ "name": "step-backward",
+ "id": 72,
+ "order": 0
+ },
+ {
+ "name": "fast-backward",
+ "id": 73,
+ "order": 0
+ },
+ {
+ "name": "backward",
+ "id": 74,
+ "order": 0
+ },
+ {
+ "name": "play",
+ "id": 75,
+ "order": 0
+ },
+ {
+ "name": "pause",
+ "id": 76,
+ "order": 0
+ },
+ {
+ "name": "stop",
+ "id": 77,
+ "order": 0
+ },
+ {
+ "name": "forward",
+ "id": 78,
+ "order": 0
+ },
+ {
+ "name": "fast-forward",
+ "id": 79,
+ "order": 0
+ },
+ {
+ "name": "step-forward",
+ "id": 80,
+ "order": 0
+ },
+ {
+ "name": "eject",
+ "id": 81,
+ "order": 0
+ },
+ {
+ "name": "chevron-left",
+ "id": 82,
+ "order": 0
+ },
+ {
+ "name": "chevron-right",
+ "id": 83,
+ "order": 0
+ },
+ {
+ "name": "plus-circle",
+ "id": 84,
+ "order": 0
+ },
+ {
+ "name": "minus-circle",
+ "id": 85,
+ "order": 0
+ },
+ {
+ "name": "times-circle",
+ "id": 86,
+ "order": 0
+ },
+ {
+ "name": "check-circle",
+ "id": 87,
+ "order": 0
+ },
+ {
+ "name": "question-circle",
+ "id": 88,
+ "order": 0
+ },
+ {
+ "name": "info-circle",
+ "id": 89,
+ "order": 0
+ },
+ {
+ "name": "crosshairs",
+ "id": 90,
+ "order": 0
+ },
+ {
+ "name": "times-circle-o",
+ "id": 91,
+ "order": 0
+ },
+ {
+ "name": "check-circle-o",
+ "id": 92,
+ "order": 0
+ },
+ {
+ "name": "ban",
+ "id": 93,
+ "order": 0
+ },
+ {
+ "name": "arrow-left",
+ "id": 94,
+ "order": 0
+ },
+ {
+ "name": "arrow-right",
+ "id": 95,
+ "order": 0
+ },
+ {
+ "name": "arrow-up",
+ "id": 96,
+ "order": 0
+ },
+ {
+ "name": "arrow-down",
+ "id": 97,
+ "order": 0
+ },
+ {
+ "name": "mail-forward, share",
+ "id": 98,
+ "order": 0,
+ "prevSize": 28
+ },
+ {
+ "name": "expand",
+ "id": 99,
+ "order": 0
+ },
+ {
+ "name": "compress",
+ "id": 100,
+ "order": 0
+ },
+ {
+ "name": "exclamation-circle",
+ "id": 101,
+ "order": 0
+ },
+ {
+ "name": "gift",
+ "id": 102,
+ "order": 0
+ },
+ {
+ "name": "leaf",
+ "id": 103,
+ "order": 0
+ },
+ {
+ "name": "fire",
+ "id": 104,
+ "order": 0
+ },
+ {
+ "name": "eye",
+ "id": 105,
+ "order": 0
+ },
+ {
+ "name": "eye-slash",
+ "id": 106,
+ "order": 0
+ },
+ {
+ "name": "exclamation-triangle, warning",
+ "id": 107,
+ "order": 0
+ },
+ {
+ "name": "plane",
+ "id": 108,
+ "order": 0
+ },
+ {
+ "name": "calendar",
+ "id": 109,
+ "order": 0
+ },
+ {
+ "name": "random",
+ "id": 110,
+ "order": 0
+ },
+ {
+ "name": "comment",
+ "id": 111,
+ "order": 0
+ },
+ {
+ "name": "magnet",
+ "id": 112,
+ "order": 0
+ },
+ {
+ "name": "chevron-up",
+ "id": 113,
+ "order": 0
+ },
+ {
+ "name": "chevron-down",
+ "id": 114,
+ "order": 0
+ },
+ {
+ "name": "retweet",
+ "id": 115,
+ "order": 0
+ },
+ {
+ "name": "shopping-cart",
+ "id": 116,
+ "order": 0
+ },
+ {
+ "name": "folder",
+ "id": 117,
+ "order": 0
+ },
+ {
+ "name": "folder-open",
+ "id": 118,
+ "order": 0
+ },
+ {
+ "name": "arrows-v",
+ "id": 119,
+ "order": 0
+ },
+ {
+ "name": "arrows-h",
+ "id": 120,
+ "order": 0
+ },
+ {
+ "name": "bar-chart, bar-chart-o",
+ "id": 121,
+ "order": 0
+ },
+ {
+ "name": "twitter-square",
+ "id": 122,
+ "order": 0
+ },
+ {
+ "name": "facebook-square",
+ "id": 123,
+ "order": 0
+ },
+ {
+ "name": "camera-retro",
+ "id": 124,
+ "order": 0
+ },
+ {
+ "name": "key",
+ "id": 125,
+ "order": 0
+ },
+ {
+ "name": "cogs, gears",
+ "id": 126,
+ "order": 0
+ },
+ {
+ "name": "comments",
+ "id": 127,
+ "order": 0
+ },
+ {
+ "name": "thumbs-o-up",
+ "id": 128,
+ "order": 0,
+ "prevSize": 28
+ },
+ {
+ "name": "thumbs-o-down",
+ "id": 129,
+ "order": 0,
+ "prevSize": 28
+ },
+ {
+ "name": "star-half",
+ "id": 130,
+ "order": 0
+ },
+ {
+ "name": "heart-o",
+ "id": 131,
+ "order": 0
+ },
+ {
+ "name": "sign-out",
+ "id": 132,
+ "order": 0
+ },
+ {
+ "name": "linkedin-square",
+ "id": 133,
+ "order": 0
+ },
+ {
+ "name": "thumb-tack",
+ "id": 134,
+ "order": 0
+ },
+ {
+ "name": "external-link",
+ "id": 135,
+ "order": 0
+ },
+ {
+ "name": "sign-in",
+ "id": 136,
+ "order": 0
+ },
+ {
+ "name": "trophy",
+ "id": 137,
+ "order": 0
+ },
+ {
+ "name": "github-square",
+ "id": 138,
+ "order": 0
+ },
+ {
+ "name": "upload",
+ "id": 139,
+ "order": 0
+ },
+ {
+ "name": "lemon-o",
+ "id": 140,
+ "order": 0
+ },
+ {
+ "name": "phone",
+ "id": 141,
+ "order": 0
+ },
+ {
+ "name": "square-o",
+ "id": 142,
+ "order": 0
+ },
+ {
+ "name": "bookmark-o",
+ "id": 143,
+ "order": 0
+ },
+ {
+ "name": "phone-square",
+ "id": 144,
+ "order": 0
+ },
+ {
+ "name": "twitter",
+ "id": 145,
+ "order": 0
+ },
+ {
+ "name": "facebook, facebook-f",
+ "id": 146,
+ "order": 0
+ },
+ {
+ "name": "github",
+ "id": 147,
+ "order": 0
+ },
+ {
+ "name": "unlock",
+ "id": 148,
+ "order": 0
+ },
+ {
+ "name": "credit-card",
+ "id": 149,
+ "order": 0
+ },
+ {
+ "name": "feed, rss",
+ "id": 150,
+ "order": 0
+ },
+ {
+ "name": "hdd-o",
+ "id": 151,
+ "order": 0
+ },
+ {
+ "name": "bullhorn",
+ "id": 152,
+ "order": 0
+ },
+ {
+ "name": "bell-o",
+ "id": 153,
+ "order": 0
+ },
+ {
+ "name": "certificate",
+ "id": 154,
+ "order": 0
+ },
+ {
+ "name": "hand-o-right",
+ "id": 155,
+ "order": 0
+ },
+ {
+ "name": "hand-o-left",
+ "id": 156,
+ "order": 0
+ },
+ {
+ "name": "hand-o-up",
+ "id": 157,
+ "order": 0
+ },
+ {
+ "name": "hand-o-down",
+ "id": 158,
+ "order": 0
+ },
+ {
+ "name": "arrow-circle-left",
+ "id": 159,
+ "order": 0
+ },
+ {
+ "name": "arrow-circle-right",
+ "id": 160,
+ "order": 0
+ },
+ {
+ "name": "arrow-circle-up",
+ "id": 161,
+ "order": 0
+ },
+ {
+ "name": "arrow-circle-down",
+ "id": 162,
+ "order": 0
+ },
+ {
+ "name": "globe",
+ "id": 163,
+ "order": 0
+ },
+ {
+ "name": "wrench",
+ "id": 164,
+ "order": 0
+ },
+ {
+ "name": "tasks",
+ "id": 165,
+ "order": 0
+ },
+ {
+ "name": "filter",
+ "id": 166,
+ "order": 0
+ },
+ {
+ "name": "briefcase",
+ "id": 167,
+ "order": 0
+ },
+ {
+ "name": "arrows-alt",
+ "id": 168,
+ "order": 0
+ },
+ {
+ "name": "group, users",
+ "id": 169,
+ "order": 0
+ },
+ {
+ "name": "chain, link",
+ "id": 170,
+ "order": 0
+ },
+ {
+ "name": "cloud",
+ "id": 171,
+ "order": 0
+ },
+ {
+ "name": "flask",
+ "id": 172,
+ "order": 0
+ },
+ {
+ "name": "cut, scissors",
+ "id": 173,
+ "order": 0
+ },
+ {
+ "name": "copy, files-o",
+ "id": 174,
+ "order": 0
+ },
+ {
+ "name": "paperclip",
+ "id": 175,
+ "order": 0
+ },
+ {
+ "name": "floppy-o, save",
+ "id": 176,
+ "order": 0
+ },
+ {
+ "name": "square",
+ "id": 177,
+ "order": 0
+ },
+ {
+ "name": "bars, navicon, reorder",
+ "id": 178,
+ "order": 0
+ },
+ {
+ "name": "list-ul",
+ "id": 179,
+ "order": 0
+ },
+ {
+ "name": "list-ol",
+ "id": 180,
+ "order": 0
+ },
+ {
+ "name": "strikethrough",
+ "id": 181,
+ "order": 0
+ },
+ {
+ "name": "underline",
+ "id": 182,
+ "order": 0
+ },
+ {
+ "name": "table",
+ "id": 183,
+ "order": 0
+ },
+ {
+ "name": "magic",
+ "id": 184,
+ "order": 0
+ },
+ {
+ "name": "truck",
+ "id": 185,
+ "order": 0
+ },
+ {
+ "name": "pinterest",
+ "id": 186,
+ "order": 0
+ },
+ {
+ "name": "pinterest-square",
+ "id": 187,
+ "order": 0
+ },
+ {
+ "name": "google-plus-square",
+ "id": 188,
+ "order": 0
+ },
+ {
+ "name": "google-plus",
+ "id": 189,
+ "order": 0
+ },
+ {
+ "name": "money",
+ "id": 190,
+ "order": 0
+ },
+ {
+ "name": "caret-down",
+ "id": 191,
+ "order": 0
+ },
+ {
+ "name": "caret-up",
+ "id": 192,
+ "order": 0
+ },
+ {
+ "name": "caret-left",
+ "id": 193,
+ "order": 0
+ },
+ {
+ "name": "caret-right",
+ "id": 194,
+ "order": 0
+ },
+ {
+ "name": "columns",
+ "id": 195,
+ "order": 0
+ },
+ {
+ "name": "sort, unsorted",
+ "id": 196,
+ "order": 0
+ },
+ {
+ "name": "sort-desc, sort-down",
+ "id": 197,
+ "order": 0
+ },
+ {
+ "name": "sort-asc, sort-up",
+ "id": 198,
+ "order": 0
+ },
+ {
+ "name": "envelope",
+ "id": 199,
+ "order": 0
+ },
+ {
+ "name": "linkedin",
+ "id": 200,
+ "order": 0
+ },
+ {
+ "name": "rotate-left, undo",
+ "id": 201,
+ "order": 0
+ },
+ {
+ "name": "gavel, legal",
+ "id": 202,
+ "order": 0
+ },
+ {
+ "name": "dashboard, tachometer",
+ "id": 203,
+ "order": 0
+ },
+ {
+ "name": "comment-o",
+ "id": 204,
+ "order": 0
+ },
+ {
+ "name": "comments-o",
+ "id": 205,
+ "order": 0
+ },
+ {
+ "name": "bolt, flash",
+ "id": 206,
+ "order": 0
+ },
+ {
+ "name": "sitemap",
+ "id": 207,
+ "order": 0
+ },
+ {
+ "name": "umbrella",
+ "id": 208,
+ "order": 0
+ },
+ {
+ "name": "clipboard, paste",
+ "id": 209,
+ "order": 0
+ },
+ {
+ "name": "lightbulb-o",
+ "id": 210,
+ "order": 0
+ },
+ {
+ "name": "exchange",
+ "id": 211,
+ "order": 0
+ },
+ {
+ "name": "cloud-download",
+ "id": 212,
+ "order": 0
+ },
+ {
+ "name": "cloud-upload",
+ "id": 213,
+ "order": 0
+ },
+ {
+ "name": "user-md",
+ "id": 214,
+ "order": 0
+ },
+ {
+ "name": "stethoscope",
+ "id": 215,
+ "order": 0
+ },
+ {
+ "name": "suitcase",
+ "id": 216,
+ "order": 0
+ },
+ {
+ "name": "bell",
+ "id": 217,
+ "order": 0
+ },
+ {
+ "name": "coffee",
+ "id": 218,
+ "order": 0
+ },
+ {
+ "name": "cutlery",
+ "id": 219,
+ "order": 0
+ },
+ {
+ "name": "file-text-o",
+ "id": 220,
+ "order": 0
+ },
+ {
+ "name": "building-o",
+ "id": 221,
+ "order": 0
+ },
+ {
+ "name": "hospital-o",
+ "id": 222,
+ "order": 0
+ },
+ {
+ "name": "ambulance",
+ "id": 223,
+ "order": 0
+ },
+ {
+ "name": "medkit",
+ "id": 224,
+ "order": 0
+ },
+ {
+ "name": "fighter-jet",
+ "id": 225,
+ "order": 0
+ },
+ {
+ "name": "beer",
+ "id": 226,
+ "order": 0
+ },
+ {
+ "name": "h-square",
+ "id": 227,
+ "order": 0
+ },
+ {
+ "name": "plus-square",
+ "id": 228,
+ "order": 0
+ },
+ {
+ "name": "angle-double-left",
+ "id": 229,
+ "order": 0
+ },
+ {
+ "name": "angle-double-right",
+ "id": 230,
+ "order": 0
+ },
+ {
+ "name": "angle-double-up",
+ "id": 231,
+ "order": 0
+ },
+ {
+ "name": "angle-double-down",
+ "id": 232,
+ "order": 0
+ },
+ {
+ "name": "angle-left",
+ "id": 233,
+ "order": 0
+ },
+ {
+ "name": "angle-right",
+ "id": 234,
+ "order": 0
+ },
+ {
+ "name": "angle-up",
+ "id": 235,
+ "order": 0
+ },
+ {
+ "name": "angle-down",
+ "id": 236,
+ "order": 0
+ },
+ {
+ "name": "desktop",
+ "id": 237,
+ "order": 0
+ },
+ {
+ "name": "laptop",
+ "id": 238,
+ "order": 0
+ },
+ {
+ "name": "tablet",
+ "id": 239,
+ "order": 0
+ },
+ {
+ "name": "mobile, mobile-phone",
+ "id": 240,
+ "order": 0
+ },
+ {
+ "name": "circle-o",
+ "id": 241,
+ "order": 0
+ },
+ {
+ "name": "quote-left",
+ "id": 242,
+ "order": 0
+ },
+ {
+ "name": "quote-right",
+ "id": 243,
+ "order": 0
+ },
+ {
+ "name": "spinner",
+ "id": 244,
+ "order": 0
+ },
+ {
+ "name": "circle",
+ "id": 245,
+ "order": 0
+ },
+ {
+ "name": "mail-reply, reply",
+ "id": 246,
+ "order": 0
+ },
+ {
+ "name": "github-alt",
+ "id": 247,
+ "order": 0
+ },
+ {
+ "name": "folder-o",
+ "id": 248,
+ "order": 0
+ },
+ {
+ "name": "folder-open-o",
+ "id": 249,
+ "order": 0
+ },
+ {
+ "name": "smile-o",
+ "id": 250,
+ "order": 0
+ },
+ {
+ "name": "frown-o",
+ "id": 251,
+ "order": 0
+ },
+ {
+ "name": "meh-o",
+ "id": 252,
+ "order": 0
+ },
+ {
+ "name": "gamepad",
+ "id": 253,
+ "order": 0
+ },
+ {
+ "name": "keyboard-o",
+ "id": 254,
+ "order": 0
+ },
+ {
+ "name": "flag-o",
+ "id": 255,
+ "order": 0
+ },
+ {
+ "name": "flag-checkered",
+ "id": 256,
+ "order": 0
+ },
+ {
+ "name": "terminal",
+ "id": 257,
+ "order": 0
+ },
+ {
+ "name": "code",
+ "id": 258,
+ "order": 0
+ },
+ {
+ "name": "mail-reply-all, reply-all",
+ "id": 259,
+ "order": 0
+ },
+ {
+ "name": "star-half-empty, star-half-full, star-half-o",
+ "id": 260,
+ "order": 0
+ },
+ {
+ "name": "location-arrow",
+ "id": 261,
+ "order": 0
+ },
+ {
+ "name": "crop",
+ "id": 262,
+ "order": 0
+ },
+ {
+ "name": "code-fork",
+ "id": 263,
+ "order": 0,
+ "prevSize": 28
+ },
+ {
+ "name": "chain-broken, unlink",
+ "id": 264,
+ "order": 0
+ },
+ {
+ "name": "info",
+ "id": 265,
+ "order": 0
+ },
+ {
+ "name": "exclamation",
+ "id": 266,
+ "order": 0
+ },
+ {
+ "name": "superscript",
+ "id": 267,
+ "order": 0
+ },
+ {
+ "name": "subscript",
+ "id": 268,
+ "order": 0
+ },
+ {
+ "name": "eraser",
+ "id": 269,
+ "order": 0
+ },
+ {
+ "name": "puzzle-piece",
+ "id": 270,
+ "order": 0
+ },
+ {
+ "name": "microphone",
+ "id": 271,
+ "order": 0
+ },
+ {
+ "name": "microphone-slash",
+ "id": 272,
+ "order": 0
+ },
+ {
+ "name": "shield",
+ "id": 273,
+ "order": 0
+ },
+ {
+ "name": "calendar-o",
+ "id": 274,
+ "order": 0
+ },
+ {
+ "name": "fire-extinguisher",
+ "id": 275,
+ "order": 0
+ },
+ {
+ "name": "rocket",
+ "id": 276,
+ "order": 0
+ },
+ {
+ "name": "maxcdn",
+ "id": 277,
+ "order": 0
+ },
+ {
+ "name": "chevron-circle-left",
+ "id": 278,
+ "order": 0
+ },
+ {
+ "name": "chevron-circle-right",
+ "id": 279,
+ "order": 0
+ },
+ {
+ "name": "chevron-circle-up",
+ "id": 280,
+ "order": 0
+ },
+ {
+ "name": "chevron-circle-down",
+ "id": 281,
+ "order": 0
+ },
+ {
+ "name": "html5",
+ "id": 282,
+ "order": 0
+ },
+ {
+ "name": "css3",
+ "id": 283,
+ "order": 0
+ },
+ {
+ "name": "anchor",
+ "id": 284,
+ "order": 0
+ },
+ {
+ "name": "unlock-alt",
+ "id": 285,
+ "order": 0
+ },
+ {
+ "name": "bullseye",
+ "id": 286,
+ "order": 0
+ },
+ {
+ "name": "ellipsis-h",
+ "id": 287,
+ "order": 0
+ },
+ {
+ "name": "ellipsis-v",
+ "id": 288,
+ "order": 0
+ },
+ {
+ "name": "rss-square",
+ "id": 289,
+ "order": 0
+ },
+ {
+ "name": "play-circle",
+ "id": 290,
+ "order": 0
+ },
+ {
+ "name": "ticket",
+ "id": 291,
+ "order": 0
+ },
+ {
+ "name": "minus-square",
+ "id": 292,
+ "order": 0
+ },
+ {
+ "name": "minus-square-o",
+ "id": 293,
+ "order": 0
+ },
+ {
+ "name": "level-up",
+ "id": 294,
+ "order": 0
+ },
+ {
+ "name": "level-down",
+ "id": 295,
+ "order": 0
+ },
+ {
+ "name": "check-square",
+ "id": 296,
+ "order": 0
+ },
+ {
+ "name": "pencil-square",
+ "id": 297,
+ "order": 0
+ },
+ {
+ "name": "external-link-square",
+ "id": 298,
+ "order": 0
+ },
+ {
+ "name": "share-square",
+ "id": 299,
+ "order": 0
+ },
+ {
+ "name": "compass",
+ "id": 300,
+ "order": 0
+ },
+ {
+ "name": "caret-square-o-down, toggle-down",
+ "id": 301,
+ "order": 0
+ },
+ {
+ "name": "caret-square-o-up, toggle-up",
+ "id": 302,
+ "order": 0
+ },
+ {
+ "name": "caret-square-o-right, toggle-right",
+ "id": 303,
+ "order": 0
+ },
+ {
+ "name": "eur, euro",
+ "id": 304,
+ "order": 0
+ },
+ {
+ "name": "gbp",
+ "id": 305,
+ "order": 0
+ },
+ {
+ "name": "dollar, usd",
+ "id": 306,
+ "order": 0
+ },
+ {
+ "name": "inr, rupee",
+ "id": 307,
+ "order": 0
+ },
+ {
+ "name": "cny, jpy, rmb, yen",
+ "id": 308,
+ "order": 0
+ },
+ {
+ "name": "rouble, rub, ruble",
+ "id": 309,
+ "order": 0
+ },
+ {
+ "name": "krw, won",
+ "id": 310,
+ "order": 0
+ },
+ {
+ "name": "bitcoin, btc",
+ "id": 311,
+ "order": 0
+ },
+ {
+ "name": "file",
+ "id": 312,
+ "order": 0
+ },
+ {
+ "name": "file-text",
+ "id": 313,
+ "order": 0
+ },
+ {
+ "name": "sort-alpha-asc",
+ "id": 314,
+ "order": 0
+ },
+ {
+ "name": "sort-alpha-desc",
+ "id": 315,
+ "order": 0
+ },
+ {
+ "name": "sort-amount-asc",
+ "id": 316,
+ "order": 0
+ },
+ {
+ "name": "sort-amount-desc",
+ "id": 317,
+ "order": 0
+ },
+ {
+ "name": "sort-numeric-asc",
+ "id": 318,
+ "order": 0
+ },
+ {
+ "name": "sort-numeric-desc",
+ "id": 319,
+ "order": 0
+ },
+ {
+ "name": "thumbs-up",
+ "id": 320,
+ "order": 0,
+ "prevSize": 28
+ },
+ {
+ "name": "thumbs-down",
+ "id": 321,
+ "order": 0,
+ "prevSize": 28
+ },
+ {
+ "name": "youtube-square",
+ "id": 322,
+ "order": 0
+ },
+ {
+ "name": "youtube",
+ "id": 323,
+ "order": 0
+ },
+ {
+ "name": "xing",
+ "id": 324,
+ "order": 0
+ },
+ {
+ "name": "xing-square",
+ "id": 325,
+ "order": 0
+ },
+ {
+ "name": "youtube-play",
+ "id": 326,
+ "order": 0
+ },
+ {
+ "name": "dropbox",
+ "id": 327,
+ "order": 0
+ },
+ {
+ "name": "stack-overflow",
+ "id": 328,
+ "order": 0
+ },
+ {
+ "name": "instagram",
+ "id": 329,
+ "order": 0
+ },
+ {
+ "name": "flickr",
+ "id": 330,
+ "order": 0
+ },
+ {
+ "name": "adn",
+ "id": 331,
+ "order": 0
+ },
+ {
+ "name": "bitbucket",
+ "id": 332,
+ "order": 0
+ },
+ {
+ "name": "bitbucket-square",
+ "id": 333,
+ "order": 0
+ },
+ {
+ "name": "tumblr",
+ "id": 334,
+ "order": 0
+ },
+ {
+ "name": "tumblr-square",
+ "id": 335,
+ "order": 0
+ },
+ {
+ "name": "long-arrow-down",
+ "id": 336,
+ "order": 0
+ },
+ {
+ "name": "long-arrow-up",
+ "id": 337,
+ "order": 0
+ },
+ {
+ "name": "long-arrow-left",
+ "id": 338,
+ "order": 0
+ },
+ {
+ "name": "long-arrow-right",
+ "id": 339,
+ "order": 0
+ },
+ {
+ "name": "apple",
+ "id": 340,
+ "order": 0
+ },
+ {
+ "name": "windows",
+ "id": 341,
+ "order": 0
+ },
+ {
+ "name": "android",
+ "id": 342,
+ "order": 0
+ },
+ {
+ "name": "linux",
+ "id": 343,
+ "order": 0
+ },
+ {
+ "name": "dribbble",
+ "id": 344,
+ "order": 0
+ },
+ {
+ "name": "skype",
+ "id": 345,
+ "order": 0
+ },
+ {
+ "name": "foursquare",
+ "id": 346,
+ "order": 0
+ },
+ {
+ "name": "trello",
+ "id": 347,
+ "order": 0
+ },
+ {
+ "name": "female",
+ "id": 348,
+ "order": 0
+ },
+ {
+ "name": "male",
+ "id": 349,
+ "order": 0
+ },
+ {
+ "name": "gittip, gratipay",
+ "id": 350,
+ "order": 0
+ },
+ {
+ "name": "sun-o",
+ "id": 351,
+ "order": 0
+ },
+ {
+ "name": "moon-o",
+ "id": 352,
+ "order": 0
+ },
+ {
+ "name": "archive",
+ "id": 353,
+ "order": 0
+ },
+ {
+ "name": "bug",
+ "id": 354,
+ "order": 0
+ },
+ {
+ "name": "vk",
+ "id": 355,
+ "order": 0
+ },
+ {
+ "name": "weibo",
+ "id": 356,
+ "order": 0
+ },
+ {
+ "name": "renren",
+ "id": 357,
+ "order": 0
+ },
+ {
+ "name": "pagelines",
+ "id": 358,
+ "order": 0
+ },
+ {
+ "name": "stack-exchange",
+ "id": 359,
+ "order": 0
+ },
+ {
+ "name": "arrow-circle-o-right",
+ "id": 360,
+ "order": 0
+ },
+ {
+ "name": "arrow-circle-o-left",
+ "id": 361,
+ "order": 0
+ },
+ {
+ "name": "caret-square-o-left, toggle-left",
+ "id": 362,
+ "order": 0
+ },
+ {
+ "name": "dot-circle-o",
+ "id": 363,
+ "order": 0
+ },
+ {
+ "name": "wheelchair",
+ "id": 364,
+ "order": 0
+ },
+ {
+ "name": "vimeo-square",
+ "id": 365,
+ "order": 0
+ },
+ {
+ "name": "try, turkish-lira",
+ "id": 366,
+ "order": 0
+ },
+ {
+ "name": "plus-square-o",
+ "id": 367,
+ "order": 0
+ },
+ {
+ "name": "space-shuttle",
+ "id": 368,
+ "order": 0
+ },
+ {
+ "name": "slack",
+ "id": 369,
+ "order": 0
+ },
+ {
+ "name": "envelope-square",
+ "id": 370,
+ "order": 0
+ },
+ {
+ "name": "wordpress",
+ "id": 371,
+ "order": 0
+ },
+ {
+ "name": "openid",
+ "id": 372,
+ "order": 0
+ },
+ {
+ "name": "bank, institution, university",
+ "id": 373,
+ "order": 0
+ },
+ {
+ "name": "graduation-cap, mortar-board",
+ "id": 374,
+ "order": 0
+ },
+ {
+ "name": "yahoo",
+ "id": 375,
+ "order": 0
+ },
+ {
+ "name": "google",
+ "id": 376,
+ "order": 0
+ },
+ {
+ "name": "reddit",
+ "id": 377,
+ "order": 0
+ },
+ {
+ "name": "reddit-square",
+ "id": 378,
+ "order": 0
+ },
+ {
+ "name": "stumbleupon-circle",
+ "id": 379,
+ "order": 0
+ },
+ {
+ "name": "stumbleupon",
+ "id": 380,
+ "order": 0
+ },
+ {
+ "name": "delicious",
+ "id": 381,
+ "order": 0
+ },
+ {
+ "name": "digg",
+ "id": 382,
+ "order": 0
+ },
+ {
+ "name": "pied-piper-pp",
+ "id": 383,
+ "order": 0
+ },
+ {
+ "name": "pied-piper-alt",
+ "id": 384,
+ "order": 0
+ },
+ {
+ "name": "drupal",
+ "id": 385,
+ "order": 0
+ },
+ {
+ "name": "joomla",
+ "id": 386,
+ "order": 0
+ },
+ {
+ "name": "language",
+ "id": 387,
+ "order": 0
+ },
+ {
+ "name": "fax",
+ "id": 388,
+ "order": 0
+ },
+ {
+ "name": "building",
+ "id": 389,
+ "order": 0
+ },
+ {
+ "name": "child",
+ "id": 390,
+ "order": 0
+ },
+ {
+ "name": "paw",
+ "id": 391,
+ "order": 0
+ },
+ {
+ "name": "spoon",
+ "id": 392,
+ "order": 0
+ },
+ {
+ "name": "cube",
+ "id": 393,
+ "order": 0
+ },
+ {
+ "name": "cubes",
+ "id": 394,
+ "order": 0
+ },
+ {
+ "name": "behance",
+ "id": 395,
+ "order": 0
+ },
+ {
+ "name": "behance-square",
+ "id": 396,
+ "order": 0
+ },
+ {
+ "name": "steam",
+ "id": 397,
+ "order": 0
+ },
+ {
+ "name": "steam-square",
+ "id": 398,
+ "order": 0
+ },
+ {
+ "name": "recycle",
+ "id": 399,
+ "order": 0
+ },
+ {
+ "name": "automobile, car",
+ "id": 400,
+ "order": 0
+ },
+ {
+ "name": "cab, taxi",
+ "id": 401,
+ "order": 0
+ },
+ {
+ "name": "tree",
+ "id": 402,
+ "order": 0
+ },
+ {
+ "name": "spotify",
+ "id": 403,
+ "order": 0
+ },
+ {
+ "name": "deviantart",
+ "id": 404,
+ "order": 0
+ },
+ {
+ "name": "soundcloud",
+ "id": 405,
+ "order": 0
+ },
+ {
+ "name": "database",
+ "id": 406,
+ "order": 0
+ },
+ {
+ "name": "file-pdf-o",
+ "id": 407,
+ "order": 0
+ },
+ {
+ "name": "file-word-o",
+ "id": 408,
+ "order": 0
+ },
+ {
+ "name": "file-excel-o",
+ "id": 409,
+ "order": 0
+ },
+ {
+ "name": "file-powerpoint-o",
+ "id": 410,
+ "order": 0
+ },
+ {
+ "name": "file-image-o, file-photo-o, file-picture-o",
+ "id": 411,
+ "order": 0
+ },
+ {
+ "name": "file-archive-o, file-zip-o",
+ "id": 412,
+ "order": 0
+ },
+ {
+ "name": "file-audio-o, file-sound-o",
+ "id": 413,
+ "order": 0
+ },
+ {
+ "name": "file-movie-o, file-video-o",
+ "id": 414,
+ "order": 0
+ },
+ {
+ "name": "file-code-o",
+ "id": 415,
+ "order": 0
+ },
+ {
+ "name": "vine",
+ "id": 416,
+ "order": 0
+ },
+ {
+ "name": "codepen",
+ "id": 417,
+ "order": 0
+ },
+ {
+ "name": "jsfiddle",
+ "id": 418,
+ "order": 0
+ },
+ {
+ "name": "life-bouy, life-buoy, life-ring, life-saver, support",
+ "id": 419,
+ "order": 0
+ },
+ {
+ "name": "circle-o-notch",
+ "id": 420,
+ "order": 0
+ },
+ {
+ "name": "ra, rebel, resistance",
+ "id": 421,
+ "order": 0
+ },
+ {
+ "name": "empire, ge",
+ "id": 422,
+ "order": 0
+ },
+ {
+ "name": "git-square",
+ "id": 423,
+ "order": 0
+ },
+ {
+ "name": "git",
+ "id": 424,
+ "order": 0
+ },
+ {
+ "name": "hacker-news, y-combinator-square, yc-square",
+ "id": 425,
+ "order": 0
+ },
+ {
+ "name": "tencent-weibo",
+ "id": 426,
+ "order": 0
+ },
+ {
+ "name": "qq",
+ "id": 427,
+ "order": 0
+ },
+ {
+ "name": "wechat, weixin",
+ "id": 428,
+ "order": 0
+ },
+ {
+ "name": "paper-plane, send",
+ "id": 429,
+ "order": 0
+ },
+ {
+ "name": "paper-plane-o, send-o",
+ "id": 430,
+ "order": 0
+ },
+ {
+ "name": "history",
+ "id": 431,
+ "order": 0
+ },
+ {
+ "name": "circle-thin",
+ "id": 432,
+ "order": 0
+ },
+ {
+ "name": "header",
+ "id": 433,
+ "order": 0
+ },
+ {
+ "name": "paragraph",
+ "id": 434,
+ "order": 0
+ },
+ {
+ "name": "sliders",
+ "id": 435,
+ "order": 0
+ },
+ {
+ "name": "share-alt",
+ "id": 436,
+ "order": 0
+ },
+ {
+ "name": "share-alt-square",
+ "id": 437,
+ "order": 0
+ },
+ {
+ "name": "bomb",
+ "id": 438,
+ "order": 0
+ },
+ {
+ "name": "futbol-o, soccer-ball-o",
+ "id": 439,
+ "order": 0
+ },
+ {
+ "name": "tty",
+ "id": 440,
+ "order": 0
+ },
+ {
+ "name": "binoculars",
+ "id": 441,
+ "order": 0
+ },
+ {
+ "name": "plug",
+ "id": 442,
+ "order": 0
+ },
+ {
+ "name": "slideshare",
+ "id": 443,
+ "order": 0
+ },
+ {
+ "name": "twitch",
+ "id": 444,
+ "order": 0
+ },
+ {
+ "name": "yelp",
+ "id": 445,
+ "order": 0
+ },
+ {
+ "name": "newspaper-o",
+ "id": 446,
+ "order": 0
+ },
+ {
+ "name": "wifi",
+ "id": 447,
+ "order": 0
+ },
+ {
+ "name": "calculator",
+ "id": 448,
+ "order": 0
+ },
+ {
+ "name": "paypal",
+ "id": 449,
+ "order": 0
+ },
+ {
+ "name": "google-wallet",
+ "id": 450,
+ "order": 0
+ },
+ {
+ "name": "cc-visa",
+ "id": 451,
+ "order": 0
+ },
+ {
+ "name": "cc-mastercard",
+ "id": 452,
+ "order": 0
+ },
+ {
+ "name": "cc-discover",
+ "id": 453,
+ "order": 0
+ },
+ {
+ "name": "cc-amex",
+ "id": 454,
+ "order": 0
+ },
+ {
+ "name": "cc-paypal",
+ "id": 455,
+ "order": 0
+ },
+ {
+ "name": "cc-stripe",
+ "id": 456,
+ "order": 0
+ },
+ {
+ "name": "bell-slash",
+ "id": 457,
+ "order": 0
+ },
+ {
+ "name": "bell-slash-o",
+ "id": 458,
+ "order": 0
+ },
+ {
+ "name": "trash",
+ "id": 459,
+ "order": 0
+ },
+ {
+ "name": "copyright",
+ "id": 460,
+ "order": 0
+ },
+ {
+ "name": "at",
+ "id": 461,
+ "order": 0
+ },
+ {
+ "name": "eyedropper",
+ "id": 462,
+ "order": 0
+ },
+ {
+ "name": "paint-brush",
+ "id": 463,
+ "order": 0
+ },
+ {
+ "name": "birthday-cake",
+ "id": 464,
+ "order": 0
+ },
+ {
+ "name": "area-chart",
+ "id": 465,
+ "order": 0
+ },
+ {
+ "name": "pie-chart",
+ "id": 466,
+ "order": 0
+ },
+ {
+ "name": "line-chart",
+ "id": 467,
+ "order": 0
+ },
+ {
+ "name": "lastfm",
+ "id": 468,
+ "order": 0
+ },
+ {
+ "name": "lastfm-square",
+ "id": 469,
+ "order": 0
+ },
+ {
+ "name": "toggle-off",
+ "id": 470,
+ "order": 0
+ },
+ {
+ "name": "toggle-on",
+ "id": 471,
+ "order": 0
+ },
+ {
+ "name": "bicycle",
+ "id": 472,
+ "order": 0
+ },
+ {
+ "name": "bus",
+ "id": 473,
+ "order": 0
+ },
+ {
+ "name": "ioxhost",
+ "id": 474,
+ "order": 0
+ },
+ {
+ "name": "angellist",
+ "id": 475,
+ "order": 0
+ },
+ {
+ "name": "cc",
+ "id": 476,
+ "order": 0
+ },
+ {
+ "name": "ils, shekel, sheqel",
+ "id": 477,
+ "order": 0
+ },
+ {
+ "name": "meanpath",
+ "id": 478,
+ "order": 0
+ },
+ {
+ "name": "buysellads",
+ "id": 479,
+ "order": 0
+ },
+ {
+ "name": "connectdevelop",
+ "id": 480,
+ "order": 0
+ },
+ {
+ "name": "dashcube",
+ "id": 481,
+ "order": 0
+ },
+ {
+ "name": "forumbee",
+ "id": 482,
+ "order": 0
+ },
+ {
+ "name": "leanpub",
+ "id": 483,
+ "order": 0
+ },
+ {
+ "name": "sellsy",
+ "id": 484,
+ "order": 0
+ },
+ {
+ "name": "shirtsinbulk",
+ "id": 485,
+ "order": 0
+ },
+ {
+ "name": "simplybuilt",
+ "id": 486,
+ "order": 0
+ },
+ {
+ "name": "skyatlas",
+ "id": 487,
+ "order": 0
+ },
+ {
+ "name": "cart-plus",
+ "id": 488,
+ "order": 0
+ },
+ {
+ "name": "cart-arrow-down",
+ "id": 489,
+ "order": 0
+ },
+ {
+ "name": "diamond",
+ "id": 490,
+ "order": 0
+ },
+ {
+ "name": "ship",
+ "id": 491,
+ "order": 0
+ },
+ {
+ "name": "user-secret",
+ "id": 492,
+ "order": 0
+ },
+ {
+ "name": "motorcycle",
+ "id": 493,
+ "order": 0
+ },
+ {
+ "name": "street-view",
+ "id": 494,
+ "order": 0
+ },
+ {
+ "name": "heartbeat",
+ "id": 495,
+ "order": 0
+ },
+ {
+ "name": "venus",
+ "id": 496,
+ "order": 0
+ },
+ {
+ "name": "mars",
+ "id": 497,
+ "order": 0
+ },
+ {
+ "name": "mercury",
+ "id": 498,
+ "order": 0
+ },
+ {
+ "name": "intersex, transgender",
+ "id": 499,
+ "order": 0
+ },
+ {
+ "name": "transgender-alt",
+ "id": 500,
+ "order": 0
+ },
+ {
+ "name": "venus-double",
+ "id": 501,
+ "order": 0
+ },
+ {
+ "name": "mars-double",
+ "id": 502,
+ "order": 0
+ },
+ {
+ "name": "venus-mars",
+ "id": 503,
+ "order": 0
+ },
+ {
+ "name": "mars-stroke",
+ "id": 504,
+ "order": 0
+ },
+ {
+ "name": "mars-stroke-v",
+ "id": 505,
+ "order": 0
+ },
+ {
+ "name": "mars-stroke-h",
+ "id": 506,
+ "order": 0
+ },
+ {
+ "name": "neuter",
+ "id": 507,
+ "order": 0
+ },
+ {
+ "name": "genderless",
+ "id": 508,
+ "order": 0
+ },
+ {
+ "name": "facebook-official",
+ "id": 509,
+ "order": 0
+ },
+ {
+ "name": "pinterest-p",
+ "id": 510,
+ "order": 0
+ },
+ {
+ "name": "whatsapp",
+ "id": 511,
+ "order": 0
+ },
+ {
+ "name": "server",
+ "id": 512,
+ "order": 0
+ },
+ {
+ "name": "user-plus",
+ "id": 513,
+ "order": 0
+ },
+ {
+ "name": "user-times",
+ "id": 514,
+ "order": 0
+ },
+ {
+ "name": "bed, hotel",
+ "id": 515,
+ "order": 0
+ },
+ {
+ "name": "viacoin",
+ "id": 516,
+ "order": 0
+ },
+ {
+ "name": "train",
+ "id": 517,
+ "order": 0
+ },
+ {
+ "name": "subway",
+ "id": 518,
+ "order": 0
+ },
+ {
+ "name": "medium",
+ "id": 519,
+ "order": 0
+ },
+ {
+ "name": "y-combinator, yc",
+ "id": 520,
+ "order": 0
+ },
+ {
+ "name": "optin-monster",
+ "id": 521,
+ "order": 0
+ },
+ {
+ "name": "opencart",
+ "id": 522,
+ "order": 0
+ },
+ {
+ "name": "expeditedssl",
+ "id": 523,
+ "order": 0
+ },
+ {
+ "name": "battery, battery-4, battery-full",
+ "id": 524,
+ "order": 0
+ },
+ {
+ "name": "battery-3, battery-three-quarters",
+ "id": 525,
+ "order": 0
+ },
+ {
+ "name": "battery-2, battery-half",
+ "id": 526,
+ "order": 0
+ },
+ {
+ "name": "battery-1, battery-quarter",
+ "id": 527,
+ "order": 0
+ },
+ {
+ "name": "battery-0, battery-empty",
+ "id": 528,
+ "order": 0
+ },
+ {
+ "name": "mouse-pointer",
+ "id": 529,
+ "order": 0
+ },
+ {
+ "name": "i-cursor",
+ "id": 530,
+ "order": 0
+ },
+ {
+ "name": "object-group",
+ "id": 531,
+ "order": 0
+ },
+ {
+ "name": "object-ungroup",
+ "id": 532,
+ "order": 0
+ },
+ {
+ "name": "sticky-note",
+ "id": 533,
+ "order": 0
+ },
+ {
+ "name": "sticky-note-o",
+ "id": 534,
+ "order": 0
+ },
+ {
+ "name": "cc-jcb",
+ "id": 535,
+ "order": 0
+ },
+ {
+ "name": "cc-diners-club",
+ "id": 536,
+ "order": 0
+ },
+ {
+ "name": "clone",
+ "id": 537,
+ "order": 0
+ },
+ {
+ "name": "balance-scale",
+ "id": 538,
+ "order": 0
+ },
+ {
+ "name": "hourglass-o",
+ "id": 539,
+ "order": 0
+ },
+ {
+ "name": "hourglass-1, hourglass-start",
+ "id": 540,
+ "order": 0
+ },
+ {
+ "name": "hourglass-2, hourglass-half",
+ "id": 541,
+ "order": 0
+ },
+ {
+ "name": "hourglass-3, hourglass-end",
+ "id": 542,
+ "order": 0
+ },
+ {
+ "name": "hourglass",
+ "id": 543,
+ "order": 0
+ },
+ {
+ "name": "hand-grab-o, hand-rock-o",
+ "id": 544,
+ "order": 0
+ },
+ {
+ "name": "hand-paper-o, hand-stop-o",
+ "id": 545,
+ "order": 0
+ },
+ {
+ "name": "hand-scissors-o",
+ "id": 546,
+ "order": 0
+ },
+ {
+ "name": "hand-lizard-o",
+ "id": 547,
+ "order": 0
+ },
+ {
+ "name": "hand-spock-o",
+ "id": 548,
+ "order": 0
+ },
+ {
+ "name": "hand-pointer-o",
+ "id": 549,
+ "order": 0
+ },
+ {
+ "name": "hand-peace-o",
+ "id": 550,
+ "order": 0
+ },
+ {
+ "name": "trademark",
+ "id": 551,
+ "order": 0
+ },
+ {
+ "name": "registered",
+ "id": 552,
+ "order": 0
+ },
+ {
+ "name": "creative-commons",
+ "id": 553,
+ "order": 0
+ },
+ {
+ "name": "gg",
+ "id": 554,
+ "order": 0
+ },
+ {
+ "name": "gg-circle",
+ "id": 555,
+ "order": 0
+ },
+ {
+ "name": "tripadvisor",
+ "id": 556,
+ "order": 0
+ },
+ {
+ "name": "odnoklassniki",
+ "id": 557,
+ "order": 0
+ },
+ {
+ "name": "odnoklassniki-square",
+ "id": 558,
+ "order": 0
+ },
+ {
+ "name": "get-pocket",
+ "id": 559,
+ "order": 0
+ },
+ {
+ "name": "wikipedia-w",
+ "id": 560,
+ "order": 0
+ },
+ {
+ "name": "safari",
+ "id": 561,
+ "order": 0
+ },
+ {
+ "name": "chrome",
+ "id": 562,
+ "order": 0
+ },
+ {
+ "name": "firefox",
+ "id": 563,
+ "order": 0
+ },
+ {
+ "name": "opera",
+ "id": 564,
+ "order": 0
+ },
+ {
+ "name": "internet-explorer",
+ "id": 565,
+ "order": 0
+ },
+ {
+ "name": "television, tv",
+ "id": 566,
+ "order": 0
+ },
+ {
+ "name": "contao",
+ "id": 567,
+ "order": 0
+ },
+ {
+ "name": "500px",
+ "id": 568,
+ "order": 0
+ },
+ {
+ "name": "amazon",
+ "id": 569,
+ "order": 0
+ },
+ {
+ "name": "calendar-plus-o",
+ "id": 570,
+ "order": 0
+ },
+ {
+ "name": "calendar-minus-o",
+ "id": 571,
+ "order": 0
+ },
+ {
+ "name": "calendar-times-o",
+ "id": 572,
+ "order": 0
+ },
+ {
+ "name": "calendar-check-o",
+ "id": 573,
+ "order": 0
+ },
+ {
+ "name": "industry",
+ "id": 574,
+ "order": 0
+ },
+ {
+ "name": "map-pin",
+ "id": 575,
+ "order": 0
+ },
+ {
+ "name": "map-signs",
+ "id": 576,
+ "order": 0
+ },
+ {
+ "name": "map-o",
+ "id": 577,
+ "order": 0
+ },
+ {
+ "name": "map",
+ "id": 578,
+ "order": 0
+ },
+ {
+ "name": "commenting",
+ "id": 579,
+ "order": 0
+ },
+ {
+ "name": "commenting-o",
+ "id": 580,
+ "order": 0
+ },
+ {
+ "name": "houzz",
+ "id": 581,
+ "order": 0
+ },
+ {
+ "name": "vimeo",
+ "id": 582,
+ "order": 0
+ },
+ {
+ "name": "black-tie",
+ "id": 583,
+ "order": 0
+ },
+ {
+ "name": "fonticons",
+ "id": 584,
+ "order": 0
+ },
+ {
+ "name": "reddit-alien",
+ "id": 585,
+ "order": 0
+ },
+ {
+ "name": "edge",
+ "id": 586,
+ "order": 0
+ },
+ {
+ "name": "credit-card-alt",
+ "id": 587,
+ "order": 0
+ },
+ {
+ "name": "codiepie",
+ "id": 588,
+ "order": 0
+ },
+ {
+ "name": "modx",
+ "id": 589,
+ "order": 0
+ },
+ {
+ "name": "fort-awesome",
+ "id": 590,
+ "order": 0
+ },
+ {
+ "name": "usb",
+ "id": 591,
+ "order": 0
+ },
+ {
+ "name": "product-hunt",
+ "id": 592,
+ "order": 0
+ },
+ {
+ "name": "mixcloud",
+ "id": 593,
+ "order": 0
+ },
+ {
+ "name": "scribd",
+ "id": 594,
+ "order": 0
+ },
+ {
+ "name": "pause-circle",
+ "id": 595,
+ "order": 0
+ },
+ {
+ "name": "pause-circle-o",
+ "id": 596,
+ "order": 0
+ },
+ {
+ "name": "stop-circle",
+ "id": 597,
+ "order": 0
+ },
+ {
+ "name": "stop-circle-o",
+ "id": 598,
+ "order": 0
+ },
+ {
+ "name": "shopping-bag",
+ "id": 599,
+ "order": 0
+ },
+ {
+ "name": "shopping-basket",
+ "id": 600,
+ "order": 0
+ },
+ {
+ "name": "hashtag",
+ "id": 601,
+ "order": 0
+ },
+ {
+ "name": "bluetooth",
+ "id": 602,
+ "order": 0
+ },
+ {
+ "name": "bluetooth-b",
+ "id": 603,
+ "order": 0
+ },
+ {
+ "name": "percent",
+ "id": 604,
+ "order": 0
+ },
+ {
+ "name": "gitlab",
+ "id": 605,
+ "order": 0
+ },
+ {
+ "name": "wpbeginner",
+ "id": 606,
+ "order": 0
+ },
+ {
+ "name": "wpforms",
+ "id": 607,
+ "order": 0
+ },
+ {
+ "name": "envira",
+ "id": 608,
+ "order": 0
+ },
+ {
+ "name": "universal-access",
+ "id": 609,
+ "order": 0
+ },
+ {
+ "name": "wheelchair-alt",
+ "id": 610,
+ "order": 0
+ },
+ {
+ "name": "question-circle-o",
+ "id": 611,
+ "order": 0
+ },
+ {
+ "name": "blind",
+ "id": 612,
+ "order": 0
+ },
+ {
+ "name": "audio-description",
+ "id": 613,
+ "order": 0
+ },
+ {
+ "name": "volume-control-phone",
+ "id": 614,
+ "order": 0
+ },
+ {
+ "name": "braille",
+ "id": 615,
+ "order": 0
+ },
+ {
+ "name": "assistive-listening-systems",
+ "id": 616,
+ "order": 0
+ },
+ {
+ "name": "american-sign-language-interpreting, asl-interpreting",
+ "id": 617,
+ "order": 0
+ },
+ {
+ "name": "deaf, deafness, hard-of-hearing",
+ "id": 618,
+ "order": 0
+ },
+ {
+ "name": "glide",
+ "id": 619,
+ "order": 0
+ },
+ {
+ "name": "glide-g",
+ "id": 620,
+ "order": 0
+ },
+ {
+ "name": "sign-language, signing",
+ "id": 621,
+ "order": 0
+ },
+ {
+ "name": "low-vision",
+ "id": 622,
+ "order": 0
+ },
+ {
+ "name": "viadeo",
+ "id": 623,
+ "order": 0
+ },
+ {
+ "name": "viadeo-square",
+ "id": 624,
+ "order": 0
+ },
+ {
+ "name": "snapchat",
+ "id": 625,
+ "order": 0
+ },
+ {
+ "name": "snapchat-ghost",
+ "id": 626,
+ "order": 0
+ },
+ {
+ "name": "snapchat-square",
+ "id": 627,
+ "order": 0
+ },
+ {
+ "name": "pied-piper",
+ "id": 628,
+ "order": 0
+ },
+ {
+ "name": "first-order",
+ "id": 629,
+ "order": 0
+ },
+ {
+ "name": "yoast",
+ "id": 630,
+ "order": 0
+ },
+ {
+ "name": "themeisle",
+ "id": 631,
+ "order": 0
+ },
+ {
+ "name": "google-plus-circle, google-plus-official",
+ "id": 632,
+ "order": 0
+ },
+ {
+ "name": "fa, font-awesome",
+ "id": 633,
+ "order": 0
+ },
+ {
+ "name": "handshake-o",
+ "id": 634,
+ "order": 0
+ },
+ {
+ "name": "envelope-open",
+ "id": 635,
+ "order": 0
+ },
+ {
+ "name": "envelope-open-o",
+ "id": 636,
+ "order": 0
+ },
+ {
+ "name": "linode",
+ "id": 637,
+ "order": 0
+ },
+ {
+ "name": "address-book",
+ "id": 638,
+ "order": 0
+ },
+ {
+ "name": "address-book-o",
+ "id": 639,
+ "order": 0
+ },
+ {
+ "name": "address-card, vcard",
+ "id": 640,
+ "order": 0
+ },
+ {
+ "name": "address-card-o, vcard-o",
+ "id": 641,
+ "order": 0
+ },
+ {
+ "name": "user-circle",
+ "id": 642,
+ "order": 0
+ },
+ {
+ "name": "user-circle-o",
+ "id": 643,
+ "order": 0
+ },
+ {
+ "name": "user-o",
+ "id": 644,
+ "order": 0
+ },
+ {
+ "name": "id-badge",
+ "id": 645,
+ "order": 0
+ },
+ {
+ "name": "drivers-license, id-card",
+ "id": 646,
+ "order": 0
+ },
+ {
+ "name": "drivers-license-o, id-card-o",
+ "id": 647,
+ "order": 0
+ },
+ {
+ "name": "quora",
+ "id": 648,
+ "order": 0
+ },
+ {
+ "name": "free-code-camp",
+ "id": 649,
+ "order": 0
+ },
+ {
+ "name": "telegram",
+ "id": 650,
+ "order": 0
+ },
+ {
+ "name": "thermometer, thermometer-4, thermometer-full",
+ "id": 651,
+ "order": 0
+ },
+ {
+ "name": "thermometer-3, thermometer-three-quarters",
+ "id": 652,
+ "order": 0
+ },
+ {
+ "name": "thermometer-2, thermometer-half",
+ "id": 653,
+ "order": 0
+ },
+ {
+ "name": "thermometer-1, thermometer-quarter",
+ "id": 654,
+ "order": 0
+ },
+ {
+ "name": "thermometer-0, thermometer-empty",
+ "id": 655,
+ "order": 0
+ },
+ {
+ "name": "shower",
+ "id": 656,
+ "order": 0
+ },
+ {
+ "name": "bath, bathtub, s15",
+ "id": 657,
+ "order": 0
+ },
+ {
+ "name": "podcast",
+ "id": 658,
+ "order": 0
+ },
+ {
+ "name": "window-maximize",
+ "id": 659,
+ "order": 0
+ },
+ {
+ "name": "window-minimize",
+ "id": 660,
+ "order": 0
+ },
+ {
+ "name": "window-restore",
+ "id": 661,
+ "order": 0
+ },
+ {
+ "name": "times-rectangle, window-close",
+ "id": 662,
+ "order": 0
+ },
+ {
+ "name": "times-rectangle-o, window-close-o",
+ "id": 663,
+ "order": 0
+ },
+ {
+ "name": "bandcamp",
+ "id": 664,
+ "order": 0
+ },
+ {
+ "name": "grav",
+ "id": 665,
+ "order": 0
+ },
+ {
+ "name": "etsy",
+ "id": 666,
+ "order": 0
+ },
+ {
+ "name": "imdb",
+ "id": 667,
+ "order": 0
+ },
+ {
+ "name": "ravelry",
+ "id": 668,
+ "order": 0
+ },
+ {
+ "name": "eercast",
+ "id": 669,
+ "order": 0
+ },
+ {
+ "name": "microchip",
+ "id": 670,
+ "order": 0
+ },
+ {
+ "name": "snowflake-o",
+ "id": 671,
+ "order": 0
+ },
+ {
+ "name": "superpowers",
+ "id": 672,
+ "order": 0
+ },
+ {
+ "name": "wpexplorer",
+ "id": 673,
+ "order": 0
+ },
+ {
+ "name": "meetup",
+ "id": 674,
+ "order": 0
+ }
+ ],
+ "id": 0,
+ "metadata": {
+ "name": "Font Awesome",
+ "url": "https://github.com/FortAwesome/Font-Awesome",
+ "designer": "Dave Gandy",
+ "designerURL": "https://github.com/davegandy",
+ "license": "Custom",
+ "licenseURL": "https://github.com/FortAwesome/Font-Awesome#license"
+ },
+ "height": 1024,
+ "prevSize": 28,
+ "icons": [
+ {
+ "id": 0,
+ "paths": [
+ "M846.857 600c34.857 20 46.857 65.143 26.857 100l-36.571 62.857c-20 34.857-65.143 46.857-100 26.857l-152-87.429v175.429c0 40-33.143 73.143-73.143 73.143h-73.143c-40 0-73.143-33.143-73.143-73.143v-175.429l-152 87.429c-34.857 20-80 8-100-26.857l-36.571-62.857c-20-34.857-8-80 26.857-100l152-88-152-88c-34.857-20-46.857-65.143-26.857-100l36.571-62.857c20-34.857 65.143-46.857 100-26.857l152 87.429v-175.429c0-40 33.143-73.143 73.143-73.143h73.143c40 0 73.143 33.143 73.143 73.143v175.429l152-87.429c34.857-20 80-8 100 26.857l36.571 62.857c20 34.857 8 80-26.857 100l-152 88z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "asterisk"
+ ],
+ "defaultCode": 61545,
+ "grid": 14
+ },
+ {
+ "id": 1,
+ "paths": [
+ "M804.571 420.571v109.714c0 30.286-24.571 54.857-54.857 54.857h-237.714v237.714c0 30.286-24.571 54.857-54.857 54.857h-109.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h237.714v-237.714c0-30.286 24.571-54.857 54.857-54.857h109.714c30.286 0 54.857 24.571 54.857 54.857v237.714h237.714c30.286 0 54.857 24.571 54.857 54.857z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "plus"
+ ],
+ "defaultCode": 61543,
+ "grid": 14
+ },
+ {
+ "id": 2,
+ "paths": [
+ "M402.286 717.714v137.143c0 12.571-10.286 22.857-22.857 22.857h-137.143c-12.571 0-22.857-10.286-22.857-22.857v-137.143c0-12.571 10.286-22.857 22.857-22.857h137.143c12.571 0 22.857 10.286 22.857 22.857zM582.857 374.857c0 108.571-73.714 150.286-128 180.571-33.714 19.429-54.857 58.857-54.857 75.429v0c0 12.571-9.714 27.429-22.857 27.429h-137.143c-12.571 0-20.571-19.429-20.571-32v-25.714c0-69.143 68.571-128.571 118.857-151.429 44-20 62.286-38.857 62.286-75.429 0-32-41.714-60.571-88-60.571-25.714 0-49.143 8-61.714 16.571-13.714 9.714-27.429 23.429-61.143 65.714-4.571 5.714-11.429 9.143-17.714 9.143-5.143 0-9.714-1.714-14.286-4.571l-93.714-71.429c-9.714-7.429-12-20-5.714-30.286 61.714-102.286 148.571-152 265.143-152 122.286 0 259.429 97.714 259.429 228.571z"
+ ],
+ "width": 634.88,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "question"
+ ],
+ "defaultCode": 61736,
+ "grid": 14
+ },
+ {
+ "id": 3,
+ "paths": [
+ "M804.571 420.571v109.714c0 30.286-24.571 54.857-54.857 54.857h-694.857c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h694.857c30.286 0 54.857 24.571 54.857 54.857z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "minus"
+ ],
+ "defaultCode": 61544,
+ "grid": 14
+ },
+ {
+ "id": 4,
+ "paths": [
+ "M970.857 106.286c0 16.571-13.143 33.143-24.571 44.571l-361.143 361.143v438.857h182.857c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571h-512c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571h182.857v-438.857l-361.143-361.143c-11.429-11.429-24.571-28-24.571-44.571 0-28 35.429-33.143 56.571-33.143h804.571c21.143 0 56.571 5.143 56.571 33.143z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "glass"
+ ],
+ "defaultCode": 61440,
+ "grid": 14
+ },
+ {
+ "id": 5,
+ "paths": [
+ "M877.714 128v640c0 80.571-120.571 109.714-182.857 109.714s-182.857-29.143-182.857-109.714 120.571-109.714 182.857-109.714c37.714 0 75.429 6.857 109.714 22.286v-306.857l-438.857 135.429v405.143c0 80.571-120.571 109.714-182.857 109.714s-182.857-29.143-182.857-109.714 120.571-109.714 182.857-109.714c37.714 0 75.429 6.857 109.714 22.286v-552.571c0-24 16-45.143 38.857-52.571l475.429-146.286c5.143-1.714 10.286-2.286 16-2.286 30.286 0 54.857 24.571 54.857 54.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "music"
+ ],
+ "defaultCode": 61441,
+ "grid": 14
+ },
+ {
+ "id": 6,
+ "paths": [
+ "M658.286 475.429c0-141.143-114.857-256-256-256s-256 114.857-256 256 114.857 256 256 256 256-114.857 256-256zM950.857 950.857c0 40-33.143 73.143-73.143 73.143-19.429 0-38.286-8-51.429-21.714l-196-195.429c-66.857 46.286-146.857 70.857-228 70.857-222.286 0-402.286-180-402.286-402.286s180-402.286 402.286-402.286 402.286 180 402.286 402.286c0 81.143-24.571 161.143-70.857 228l196 196c13.143 13.143 21.143 32 21.143 51.429z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "search"
+ ],
+ "defaultCode": 61442,
+ "grid": 14
+ },
+ {
+ "id": 7,
+ "paths": [
+ "M950.857 859.429v-438.857c-12 13.714-25.143 26.286-39.429 37.714-81.714 62.857-164 126.857-243.429 193.143-42.857 36-96 80-155.429 80h-1.143c-59.429 0-112.571-44-155.429-80-79.429-66.286-161.714-130.286-243.429-193.143-14.286-11.429-27.429-24-39.429-37.714v438.857c0 9.714 8.571 18.286 18.286 18.286h841.143c9.714 0 18.286-8.571 18.286-18.286zM950.857 258.857c0-14.286 3.429-39.429-18.286-39.429h-841.143c-9.714 0-18.286 8.571-18.286 18.286 0 65.143 32.571 121.714 84 162.286 76.571 60 153.143 120.571 229.143 181.143 30.286 24.571 85.143 77.143 125.143 77.143h1.143c40 0 94.857-52.571 125.143-77.143 76-60.571 152.571-121.143 229.143-181.143 37.143-29.143 84-92.571 84-141.143zM1024 237.714v621.714c0 50.286-41.143 91.429-91.429 91.429h-841.143c-50.286 0-91.429-41.143-91.429-91.429v-621.714c0-50.286 41.143-91.429 91.429-91.429h841.143c50.286 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "envelope-o"
+ ],
+ "defaultCode": 61443,
+ "grid": 14
+ },
+ {
+ "id": 8,
+ "paths": [
+ "M512 950.857c-9.143 0-18.286-3.429-25.143-10.286l-356.571-344c-4.571-4-130.286-118.857-130.286-256 0-167.429 102.286-267.429 273.143-267.429 100 0 193.714 78.857 238.857 123.429 45.143-44.571 138.857-123.429 238.857-123.429 170.857 0 273.143 100 273.143 267.429 0 137.143-125.714 252-130.857 257.143l-356 342.857c-6.857 6.857-16 10.286-25.143 10.286z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "heart"
+ ],
+ "defaultCode": 61444,
+ "grid": 14
+ },
+ {
+ "id": 9,
+ "paths": [
+ "M950.857 369.714c0 10.286-7.429 20-14.857 27.429l-207.429 202.286 49.143 285.714c0.571 4 0.571 7.429 0.571 11.429 0 14.857-6.857 28.571-23.429 28.571-8 0-16-2.857-22.857-6.857l-256.571-134.857-256.571 134.857c-7.429 4-14.857 6.857-22.857 6.857-16.571 0-24-13.714-24-28.571 0-4 0.571-7.429 1.143-11.429l49.143-285.714-208-202.286c-6.857-7.429-14.286-17.143-14.286-27.429 0-17.143 17.714-24 32-26.286l286.857-41.714 128.571-260c5.143-10.857 14.857-23.429 28-23.429s22.857 12.571 28 23.429l128.571 260 286.857 41.714c13.714 2.286 32 9.143 32 26.286z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "star"
+ ],
+ "defaultCode": 61445,
+ "grid": 14
+ },
+ {
+ "id": 10,
+ "paths": [
+ "M649.714 573.714l174.857-169.714-241.143-35.429-108-218.286-108 218.286-241.143 35.429 174.857 169.714-41.714 240.571 216-113.714 215.429 113.714zM950.857 369.714c0 10.286-7.429 20-14.857 27.429l-207.429 202.286 49.143 285.714c0.571 4 0.571 7.429 0.571 11.429 0 15.429-6.857 28.571-23.429 28.571-8 0-16-2.857-22.857-6.857l-256.571-134.857-256.571 134.857c-7.429 4-14.857 6.857-22.857 6.857-16.571 0-24-13.714-24-28.571 0-4 0.571-7.429 1.143-11.429l49.143-285.714-208-202.286c-6.857-7.429-14.286-17.143-14.286-27.429 0-17.143 17.714-24 32-26.286l286.857-41.714 128.571-260c5.143-10.857 14.857-23.429 28-23.429s22.857 12.571 28 23.429l128.571 260 286.857 41.714c13.714 2.286 32 9.143 32 26.286z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "star-o"
+ ],
+ "defaultCode": 61446,
+ "grid": 14
+ },
+ {
+ "id": 11,
+ "paths": [
+ "M731.429 799.429c0 83.429-54.857 151.429-121.714 151.429h-488c-66.857 0-121.714-68-121.714-151.429 0-150.286 37.143-324 186.857-324 46.286 45.143 109.143 73.143 178.857 73.143s132.571-28 178.857-73.143c149.714 0 186.857 173.714 186.857 324zM585.143 292.571c0 121.143-98.286 219.429-219.429 219.429s-219.429-98.286-219.429-219.429 98.286-219.429 219.429-219.429 219.429 98.286 219.429 219.429z"
+ ],
+ "width": 731.4285714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "user"
+ ],
+ "defaultCode": 61447,
+ "grid": 14
+ },
+ {
+ "id": 12,
+ "paths": [
+ "M219.429 914.286v-73.143c0-20-16.571-36.571-36.571-36.571h-73.143c-20 0-36.571 16.571-36.571 36.571v73.143c0 20 16.571 36.571 36.571 36.571h73.143c20 0 36.571-16.571 36.571-36.571zM219.429 694.857v-73.143c0-20-16.571-36.571-36.571-36.571h-73.143c-20 0-36.571 16.571-36.571 36.571v73.143c0 20 16.571 36.571 36.571 36.571h73.143c20 0 36.571-16.571 36.571-36.571zM219.429 475.429v-73.143c0-20-16.571-36.571-36.571-36.571h-73.143c-20 0-36.571 16.571-36.571 36.571v73.143c0 20 16.571 36.571 36.571 36.571h73.143c20 0 36.571-16.571 36.571-36.571zM804.571 914.286v-292.571c0-20-16.571-36.571-36.571-36.571h-438.857c-20 0-36.571 16.571-36.571 36.571v292.571c0 20 16.571 36.571 36.571 36.571h438.857c20 0 36.571-16.571 36.571-36.571zM219.429 256v-73.143c0-20-16.571-36.571-36.571-36.571h-73.143c-20 0-36.571 16.571-36.571 36.571v73.143c0 20 16.571 36.571 36.571 36.571h73.143c20 0 36.571-16.571 36.571-36.571zM1024 914.286v-73.143c0-20-16.571-36.571-36.571-36.571h-73.143c-20 0-36.571 16.571-36.571 36.571v73.143c0 20 16.571 36.571 36.571 36.571h73.143c20 0 36.571-16.571 36.571-36.571zM804.571 475.429v-292.571c0-20-16.571-36.571-36.571-36.571h-438.857c-20 0-36.571 16.571-36.571 36.571v292.571c0 20 16.571 36.571 36.571 36.571h438.857c20 0 36.571-16.571 36.571-36.571zM1024 694.857v-73.143c0-20-16.571-36.571-36.571-36.571h-73.143c-20 0-36.571 16.571-36.571 36.571v73.143c0 20 16.571 36.571 36.571 36.571h73.143c20 0 36.571-16.571 36.571-36.571zM1024 475.429v-73.143c0-20-16.571-36.571-36.571-36.571h-73.143c-20 0-36.571 16.571-36.571 36.571v73.143c0 20 16.571 36.571 36.571 36.571h73.143c20 0 36.571-16.571 36.571-36.571zM1024 256v-73.143c0-20-16.571-36.571-36.571-36.571h-73.143c-20 0-36.571 16.571-36.571 36.571v73.143c0 20 16.571 36.571 36.571 36.571h73.143c20 0 36.571-16.571 36.571-36.571zM1097.143 164.571v768c0 50.286-41.143 91.429-91.429 91.429h-914.286c-50.286 0-91.429-41.143-91.429-91.429v-768c0-50.286 41.143-91.429 91.429-91.429h914.286c50.286 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "film"
+ ],
+ "defaultCode": 61448,
+ "grid": 14
+ },
+ {
+ "id": 13,
+ "paths": [
+ "M438.857 585.143v219.429c0 40-33.143 73.143-73.143 73.143h-292.571c-40 0-73.143-33.143-73.143-73.143v-219.429c0-40 33.143-73.143 73.143-73.143h292.571c40 0 73.143 33.143 73.143 73.143zM438.857 146.286v219.429c0 40-33.143 73.143-73.143 73.143h-292.571c-40 0-73.143-33.143-73.143-73.143v-219.429c0-40 33.143-73.143 73.143-73.143h292.571c40 0 73.143 33.143 73.143 73.143zM950.857 585.143v219.429c0 40-33.143 73.143-73.143 73.143h-292.571c-40 0-73.143-33.143-73.143-73.143v-219.429c0-40 33.143-73.143 73.143-73.143h292.571c40 0 73.143 33.143 73.143 73.143zM950.857 146.286v219.429c0 40-33.143 73.143-73.143 73.143h-292.571c-40 0-73.143-33.143-73.143-73.143v-219.429c0-40 33.143-73.143 73.143-73.143h292.571c40 0 73.143 33.143 73.143 73.143z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "th-large"
+ ],
+ "defaultCode": 61449,
+ "grid": 14
+ },
+ {
+ "id": 14,
+ "paths": [
+ "M292.571 713.143v109.714c0 30.286-24.571 54.857-54.857 54.857h-182.857c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h182.857c30.286 0 54.857 24.571 54.857 54.857zM292.571 420.571v109.714c0 30.286-24.571 54.857-54.857 54.857h-182.857c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h182.857c30.286 0 54.857 24.571 54.857 54.857zM658.286 713.143v109.714c0 30.286-24.571 54.857-54.857 54.857h-182.857c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h182.857c30.286 0 54.857 24.571 54.857 54.857zM292.571 128v109.714c0 30.286-24.571 54.857-54.857 54.857h-182.857c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h182.857c30.286 0 54.857 24.571 54.857 54.857zM658.286 420.571v109.714c0 30.286-24.571 54.857-54.857 54.857h-182.857c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h182.857c30.286 0 54.857 24.571 54.857 54.857zM1024 713.143v109.714c0 30.286-24.571 54.857-54.857 54.857h-182.857c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h182.857c30.286 0 54.857 24.571 54.857 54.857zM658.286 128v109.714c0 30.286-24.571 54.857-54.857 54.857h-182.857c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h182.857c30.286 0 54.857 24.571 54.857 54.857zM1024 420.571v109.714c0 30.286-24.571 54.857-54.857 54.857h-182.857c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h182.857c30.286 0 54.857 24.571 54.857 54.857zM1024 128v109.714c0 30.286-24.571 54.857-54.857 54.857h-182.857c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h182.857c30.286 0 54.857 24.571 54.857 54.857z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "th"
+ ],
+ "defaultCode": 61450,
+ "grid": 14
+ },
+ {
+ "id": 15,
+ "paths": [
+ "M292.571 713.143v109.714c0 30.286-24.571 54.857-54.857 54.857h-182.857c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h182.857c30.286 0 54.857 24.571 54.857 54.857zM292.571 420.571v109.714c0 30.286-24.571 54.857-54.857 54.857h-182.857c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h182.857c30.286 0 54.857 24.571 54.857 54.857zM1024 713.143v109.714c0 30.286-24.571 54.857-54.857 54.857h-548.571c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h548.571c30.286 0 54.857 24.571 54.857 54.857zM292.571 128v109.714c0 30.286-24.571 54.857-54.857 54.857h-182.857c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h182.857c30.286 0 54.857 24.571 54.857 54.857zM1024 420.571v109.714c0 30.286-24.571 54.857-54.857 54.857h-548.571c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h548.571c30.286 0 54.857 24.571 54.857 54.857zM1024 128v109.714c0 30.286-24.571 54.857-54.857 54.857h-548.571c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h548.571c30.286 0 54.857 24.571 54.857 54.857z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "th-list"
+ ],
+ "defaultCode": 61451,
+ "grid": 14
+ },
+ {
+ "id": 16,
+ "paths": [
+ "M954.857 323.429c0 14.286-5.714 28.571-16 38.857l-491.429 491.429c-10.286 10.286-24.571 16-38.857 16s-28.571-5.714-38.857-16l-284.571-284.571c-10.286-10.286-16-24.571-16-38.857s5.714-28.571 16-38.857l77.714-77.714c10.286-10.286 24.571-16 38.857-16s28.571 5.714 38.857 16l168 168.571 374.857-375.429c10.286-10.286 24.571-16 38.857-16s28.571 5.714 38.857 16l77.714 77.714c10.286 10.286 16 24.571 16 38.857z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "check"
+ ],
+ "defaultCode": 61452,
+ "grid": 14
+ },
+ {
+ "id": 17,
+ "paths": [
+ "M741.714 755.429c0 14.286-5.714 28.571-16 38.857l-77.714 77.714c-10.286 10.286-24.571 16-38.857 16s-28.571-5.714-38.857-16l-168-168-168 168c-10.286 10.286-24.571 16-38.857 16s-28.571-5.714-38.857-16l-77.714-77.714c-10.286-10.286-16-24.571-16-38.857s5.714-28.571 16-38.857l168-168-168-168c-10.286-10.286-16-24.571-16-38.857s5.714-28.571 16-38.857l77.714-77.714c10.286-10.286 24.571-16 38.857-16s28.571 5.714 38.857 16l168 168 168-168c10.286-10.286 24.571-16 38.857-16s28.571 5.714 38.857 16l77.714 77.714c10.286 10.286 16 24.571 16 38.857s-5.714 28.571-16 38.857l-168 168 168 168c10.286 10.286 16 24.571 16 38.857z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "close",
+ "remove",
+ "times"
+ ],
+ "defaultCode": 61453,
+ "grid": 14
+ },
+ {
+ "id": 18,
+ "paths": [
+ "M585.143 457.143v36.571c0 9.714-8.571 18.286-18.286 18.286h-128v128c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-128h-128c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h128v-128c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286v128h128c9.714 0 18.286 8.571 18.286 18.286zM658.286 475.429c0-141.143-114.857-256-256-256s-256 114.857-256 256 114.857 256 256 256 256-114.857 256-256zM950.857 950.857c0 40.571-32.571 73.143-73.143 73.143-19.429 0-38.286-8-51.429-21.714l-196-195.429c-66.857 46.286-146.857 70.857-228 70.857-222.286 0-402.286-180-402.286-402.286s180-402.286 402.286-402.286 402.286 180 402.286 402.286c0 81.143-24.571 161.143-70.857 228l196 196c13.143 13.143 21.143 32 21.143 51.429z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "search-plus"
+ ],
+ "defaultCode": 61454,
+ "grid": 14
+ },
+ {
+ "id": 19,
+ "paths": [
+ "M585.143 457.143v36.571c0 9.714-8.571 18.286-18.286 18.286h-329.143c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h329.143c9.714 0 18.286 8.571 18.286 18.286zM658.286 475.429c0-141.143-114.857-256-256-256s-256 114.857-256 256 114.857 256 256 256 256-114.857 256-256zM950.857 950.857c0 40.571-32.571 73.143-73.143 73.143-19.429 0-38.286-8-51.429-21.714l-196-195.429c-66.857 46.286-146.857 70.857-228 70.857-222.286 0-402.286-180-402.286-402.286s180-402.286 402.286-402.286 402.286 180 402.286 402.286c0 81.143-24.571 161.143-70.857 228l196 196c13.143 13.143 21.143 32 21.143 51.429z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "search-minus"
+ ],
+ "defaultCode": 61456,
+ "grid": 14
+ },
+ {
+ "id": 20,
+ "paths": [
+ "M877.714 512c0 241.714-197.143 438.857-438.857 438.857s-438.857-197.143-438.857-438.857c0-138.857 64-266.857 175.429-350.286 32.571-24.571 78.286-18.286 102.286 14.286 24.571 32 17.714 78.286-14.286 102.286-74.286 56-117.143 141.143-117.143 233.714 0 161.143 131.429 292.571 292.571 292.571s292.571-131.429 292.571-292.571c0-92.571-42.857-177.714-117.143-233.714-32-24-38.857-70.286-14.286-102.286 24-32.571 70.286-38.857 102.286-14.286 111.429 83.429 175.429 211.429 175.429 350.286zM512 73.143v365.714c0 40-33.143 73.143-73.143 73.143s-73.143-33.143-73.143-73.143v-365.714c0-40 33.143-73.143 73.143-73.143s73.143 33.143 73.143 73.143z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "power-off"
+ ],
+ "defaultCode": 61457,
+ "grid": 14
+ },
+ {
+ "id": 21,
+ "paths": [
+ "M146.286 822.857v109.714c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286zM365.714 749.714v182.857c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-182.857c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286zM585.143 603.429v329.143c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-329.143c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286zM804.571 384v548.571c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-548.571c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286zM1024 91.429v841.143c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-841.143c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "signal"
+ ],
+ "defaultCode": 61458,
+ "grid": 14
+ },
+ {
+ "id": 22,
+ "paths": [
+ "M585.143 512c0-80.571-65.714-146.286-146.286-146.286s-146.286 65.714-146.286 146.286 65.714 146.286 146.286 146.286 146.286-65.714 146.286-146.286zM877.714 449.714v126.857c0 8.571-6.857 18.857-16 20.571l-105.714 16c-6.286 18.286-13.143 35.429-22.286 52 19.429 28 40 53.143 61.143 78.857 3.429 4 5.714 9.143 5.714 14.286s-1.714 9.143-5.143 13.143c-13.714 18.286-90.857 102.286-110.286 102.286-5.143 0-10.286-2.286-14.857-5.143l-78.857-61.714c-16.571 8.571-34.286 16-52 21.714-4 34.857-7.429 72-16.571 106.286-2.286 9.143-10.286 16-20.571 16h-126.857c-10.286 0-19.429-7.429-20.571-17.143l-16-105.143c-17.714-5.714-34.857-12.571-51.429-21.143l-80.571 61.143c-4 3.429-9.143 5.143-14.286 5.143s-10.286-2.286-14.286-6.286c-30.286-27.429-70.286-62.857-94.286-96-2.857-4-4-8.571-4-13.143 0-5.143 1.714-9.143 4.571-13.143 19.429-26.286 40.571-51.429 60-78.286-9.714-18.286-17.714-37.143-23.429-56.571l-104.571-15.429c-9.714-1.714-16.571-10.857-16.571-20.571v-126.857c0-8.571 6.857-18.857 15.429-20.571l106.286-16c5.714-18.286 13.143-35.429 22.286-52.571-19.429-27.429-40-53.143-61.143-78.857-3.429-4-5.714-8.571-5.714-13.714s2.286-9.143 5.143-13.143c13.714-18.857 90.857-102.286 110.286-102.286 5.143 0 10.286 2.286 14.857 5.714l78.857 61.143c16.571-8.571 34.286-16 52-21.714 4-34.857 7.429-72 16.571-106.286 2.286-9.143 10.286-16 20.571-16h126.857c10.286 0 19.429 7.429 20.571 17.143l16 105.143c17.714 5.714 34.857 12.571 51.429 21.143l81.143-61.143c3.429-3.429 8.571-5.143 13.714-5.143s10.286 2.286 14.286 5.714c30.286 28 70.286 63.429 94.286 97.143 2.857 3.429 4 8 4 12.571 0 5.143-1.714 9.143-4.571 13.143-19.429 26.286-40.571 51.429-60 78.286 9.714 18.286 17.714 37.143 23.429 56l104.571 16c9.714 1.714 16.571 10.857 16.571 20.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cog",
+ "gear"
+ ],
+ "defaultCode": 61459,
+ "grid": 14
+ },
+ {
+ "id": 23,
+ "paths": [
+ "M292.571 420.571v329.143c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-329.143c0-10.286 8-18.286 18.286-18.286h36.571c10.286 0 18.286 8 18.286 18.286zM438.857 420.571v329.143c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-329.143c0-10.286 8-18.286 18.286-18.286h36.571c10.286 0 18.286 8 18.286 18.286zM585.143 420.571v329.143c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-329.143c0-10.286 8-18.286 18.286-18.286h36.571c10.286 0 18.286 8 18.286 18.286zM658.286 834.286v-541.714h-512v541.714c0 27.429 15.429 43.429 18.286 43.429h475.429c2.857 0 18.286-16 18.286-43.429zM274.286 219.429h256l-27.429-66.857c-1.714-2.286-6.857-5.714-9.714-6.286h-181.143c-3.429 0.571-8 4-9.714 6.286zM804.571 237.714v36.571c0 10.286-8 18.286-18.286 18.286h-54.857v541.714c0 62.857-41.143 116.571-91.429 116.571h-475.429c-50.286 0-91.429-51.429-91.429-114.286v-544h-54.857c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h176.571l40-95.429c11.429-28 45.714-50.857 76-50.857h182.857c30.286 0 64.571 22.857 76 50.857l40 95.429h176.571c10.286 0 18.286 8 18.286 18.286z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "trash-o"
+ ],
+ "defaultCode": 61460,
+ "grid": 14
+ },
+ {
+ "id": 24,
+ "paths": [
+ "M804.571 566.857v274.286c0 20-16.571 36.571-36.571 36.571h-219.429v-219.429h-146.286v219.429h-219.429c-20 0-36.571-16.571-36.571-36.571v-274.286c0-1.143 0.571-2.286 0.571-3.429l328.571-270.857 328.571 270.857c0.571 1.143 0.571 2.286 0.571 3.429zM932 527.429l-35.429 42.286c-2.857 3.429-7.429 5.714-12 6.286h-1.714c-4.571 0-8.571-1.143-12-4l-395.429-329.714-395.429 329.714c-4 2.857-8.571 4.571-13.714 4-4.571-0.571-9.143-2.857-12-6.286l-35.429-42.286c-6.286-7.429-5.143-19.429 2.286-25.714l410.857-342.286c24-20 62.857-20 86.857 0l139.429 116.571v-111.429c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286v233.143l125.143 104c7.429 6.286 8.571 18.286 2.286 25.714z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "home"
+ ],
+ "defaultCode": 61461,
+ "grid": 14
+ },
+ {
+ "id": 25,
+ "paths": [
+ "M838.857 217.143c21.143 21.143 38.857 63.429 38.857 93.714v658.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h512c30.286 0 72.571 17.714 93.714 38.857zM585.143 77.714v214.857h214.857c-3.429-9.714-8.571-19.429-12.571-23.429l-178.857-178.857c-4-4-13.714-9.143-23.429-12.571zM804.571 950.857v-585.143h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-438.857v877.714h731.429z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file-o"
+ ],
+ "defaultCode": 61462,
+ "grid": 14
+ },
+ {
+ "id": 26,
+ "paths": [
+ "M512 310.857v256c0 10.286-8 18.286-18.286 18.286h-182.857c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h128v-201.143c0-10.286 8-18.286 18.286-18.286h36.571c10.286 0 18.286 8 18.286 18.286zM749.714 512c0-171.429-139.429-310.857-310.857-310.857s-310.857 139.429-310.857 310.857 139.429 310.857 310.857 310.857 310.857-139.429 310.857-310.857zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "clock-o"
+ ],
+ "defaultCode": 61463,
+ "grid": 14
+ },
+ {
+ "id": 27,
+ "paths": [
+ "M634.857 569.143v-2.286l-13.714-182.857c-0.571-10.286-9.714-18.286-19.429-18.286h-106.286c-9.714 0-18.857 8-19.429 18.286l-13.714 182.857v2.286c-0.571 9.143 8 16 16.571 16h139.429c8.571 0 17.143-6.857 16.571-16zM1068.571 836c0 16.571-4.571 41.714-26.286 41.714h-402.286c9.714 0 17.714-8 17.143-18.286l-11.429-146.286c-0.571-10.286-9.714-18.286-19.429-18.286h-155.429c-9.714 0-18.857 8-19.429 18.286l-11.429 146.286c-0.571 10.286 7.429 18.286 17.143 18.286h-402.286c-21.714 0-26.286-25.143-26.286-41.714 0-22.857 6.286-45.714 14.857-66.286l238.286-596.571c5.714-14.286 21.143-26.857 36.571-26.857h193.714c-9.714 0-18.857 8-19.429 18.286l-8.571 109.714c-0.571 10.286 6.857 18.286 17.143 18.286h94.857c10.286 0 17.714-8 17.143-18.286l-8.571-109.714c-0.571-10.286-9.714-18.286-19.429-18.286h193.714c15.429 0 30.857 12.571 36.571 26.857l238.286 596.571c8.571 20.571 14.857 43.429 14.857 66.286z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "road"
+ ],
+ "defaultCode": 61464,
+ "grid": 14
+ },
+ {
+ "id": 28,
+ "paths": [
+ "M731.429 768c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM877.714 768c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM950.857 640v182.857c0 30.286-24.571 54.857-54.857 54.857h-841.143c-30.286 0-54.857-24.571-54.857-54.857v-182.857c0-30.286 24.571-54.857 54.857-54.857h265.714l77.143 77.714c21.143 20.571 48.571 32 77.714 32s56.571-11.429 77.714-32l77.714-77.714h265.143c30.286 0 54.857 24.571 54.857 54.857zM765.143 314.857c5.714 13.714 2.857 29.714-8 40l-256 256c-6.857 7.429-16.571 10.857-25.714 10.857s-18.857-3.429-25.714-10.857l-256-256c-10.857-10.286-13.714-26.286-8-40 5.714-13.143 18.857-22.286 33.714-22.286h146.286v-256c0-20 16.571-36.571 36.571-36.571h146.286c20 0 36.571 16.571 36.571 36.571v256h146.286c14.857 0 28 9.143 33.714 22.286z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "download"
+ ],
+ "defaultCode": 61465,
+ "grid": 14
+ },
+ {
+ "id": 29,
+ "paths": [
+ "M640 530.286c0 5.143-2.286 9.714-5.714 13.714l-182.286 182.286c-4 3.429-8.571 5.143-13.143 5.143s-9.143-1.714-13.143-5.143l-182.857-182.857c-5.143-5.714-6.857-13.143-4-20s9.714-11.429 17.143-11.429h109.714v-201.143c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286v201.143h109.714c10.286 0 18.286 8 18.286 18.286zM438.857 201.143c-171.429 0-310.857 139.429-310.857 310.857s139.429 310.857 310.857 310.857 310.857-139.429 310.857-310.857-139.429-310.857-310.857-310.857zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857v0c242.286 0 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow-circle-o-down"
+ ],
+ "defaultCode": 61466,
+ "grid": 14
+ },
+ {
+ "id": 30,
+ "paths": [
+ "M638.857 500.571c-2.857 6.857-9.714 11.429-17.143 11.429h-109.714v201.143c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-201.143h-109.714c-10.286 0-18.286-8-18.286-18.286 0-5.143 2.286-9.714 5.714-13.714l182.286-182.286c4-3.429 8.571-5.143 13.143-5.143s9.143 1.714 13.143 5.143l182.857 182.857c5.143 5.714 6.857 13.143 4 20zM438.857 201.143c-171.429 0-310.857 139.429-310.857 310.857s139.429 310.857 310.857 310.857 310.857-139.429 310.857-310.857-139.429-310.857-310.857-310.857zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857v0c242.286 0 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow-circle-o-up"
+ ],
+ "defaultCode": 61467,
+ "grid": 14
+ },
+ {
+ "id": 31,
+ "paths": [
+ "M584.571 548.571h180.571c-1.143-2.857-1.714-6.286-2.857-9.143l-121.143-283.429h-404.571l-121.143 283.429c-1.143 2.857-1.714 6.286-2.857 9.143h180.571l54.286 109.714h182.857zM877.714 565.714v275.429c0 20-16.571 36.571-36.571 36.571h-804.571c-20 0-36.571-16.571-36.571-36.571v-275.429c0-20.571 6.286-50.857 14.286-70.286l136-315.429c8-18.857 30.857-33.714 50.857-33.714h475.429c20 0 42.857 14.857 50.857 33.714l136 315.429c8 19.429 14.286 49.714 14.286 70.286z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "inbox"
+ ],
+ "defaultCode": 61468,
+ "grid": 14
+ },
+ {
+ "id": 32,
+ "paths": [
+ "M676.571 512c0 13.143-6.857 25.143-18.286 31.429l-310.857 182.857c-5.714 3.429-12 5.143-18.286 5.143s-12.571-1.714-18.286-4.571c-11.429-6.857-18.286-18.857-18.286-32v-365.714c0-13.143 6.857-25.143 18.286-32 11.429-6.286 25.714-6.286 36.571 0.571l310.857 182.857c11.429 6.286 18.286 18.286 18.286 31.429zM749.714 512c0-171.429-139.429-310.857-310.857-310.857s-310.857 139.429-310.857 310.857 139.429 310.857 310.857 310.857 310.857-139.429 310.857-310.857zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "play-circle-o"
+ ],
+ "defaultCode": 61469,
+ "grid": 14
+ },
+ {
+ "id": 33,
+ "paths": [
+ "M877.714 146.286v256c0 20-16.571 36.571-36.571 36.571h-256c-14.857 0-28-9.143-33.714-22.857-5.714-13.143-2.857-29.143 8-39.429l78.857-78.857c-53.714-49.714-124.571-78.286-199.429-78.286-161.143 0-292.571 131.429-292.571 292.571s131.429 292.571 292.571 292.571c90.857 0 174.857-41.143 230.857-113.714 2.857-4 8-6.286 13.143-6.857 5.143 0 10.286 1.714 14.286 5.143l78.286 78.857c6.857 6.286 6.857 17.143 1.143 24.571-83.429 100.571-206.857 158.286-337.714 158.286-241.714 0-438.857-197.143-438.857-438.857s197.143-438.857 438.857-438.857c112.571 0 221.714 45.143 302.286 121.143l74.286-73.714c10.286-10.857 26.286-13.714 40-8 13.143 5.714 22.286 18.857 22.286 33.714z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "repeat",
+ "rotate-right"
+ ],
+ "defaultCode": 61470,
+ "grid": 14
+ },
+ {
+ "id": 34,
+ "paths": [
+ "M863.429 603.429c0 1.143 0 2.857-0.571 4-48.571 202.286-215.429 343.429-426.286 343.429-111.429 0-219.429-44-300.571-121.143l-73.714 73.714c-6.857 6.857-16 10.857-25.714 10.857-20 0-36.571-16.571-36.571-36.571v-256c0-20 16.571-36.571 36.571-36.571h256c20 0 36.571 16.571 36.571 36.571 0 9.714-4 18.857-10.857 25.714l-78.286 78.286c53.714 50.286 125.143 78.857 198.857 78.857 101.714 0 196-52.571 249.143-139.429 13.714-22.286 20.571-44 30.286-66.857 2.857-8 8.571-13.143 17.143-13.143h109.714c10.286 0 18.286 8.571 18.286 18.286zM877.714 146.286v256c0 20-16.571 36.571-36.571 36.571h-256c-20 0-36.571-16.571-36.571-36.571 0-9.714 4-18.857 10.857-25.714l78.857-78.857c-54.286-50.286-125.714-78.286-199.429-78.286-101.714 0-196 52.571-249.143 139.429-13.714 22.286-20.571 44-30.286 66.857-2.857 8-8.571 13.143-17.143 13.143h-113.714c-10.286 0-18.286-8.571-18.286-18.286v-4c49.143-202.857 217.714-343.429 428.571-343.429 112 0 221.143 44.571 302.286 121.143l74.286-73.714c6.857-6.857 16-10.857 25.714-10.857 20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "refresh"
+ ],
+ "defaultCode": 61473,
+ "grid": 14
+ },
+ {
+ "id": 35,
+ "paths": [
+ "M219.429 676.571v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM219.429 530.286v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM219.429 384v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM877.714 676.571v36.571c0 9.714-8.571 18.286-18.286 18.286h-548.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h548.571c9.714 0 18.286 8.571 18.286 18.286zM877.714 530.286v36.571c0 9.714-8.571 18.286-18.286 18.286h-548.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h548.571c9.714 0 18.286 8.571 18.286 18.286zM877.714 384v36.571c0 9.714-8.571 18.286-18.286 18.286h-548.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h548.571c9.714 0 18.286 8.571 18.286 18.286zM950.857 786.286v-475.429c0-9.714-8.571-18.286-18.286-18.286h-841.143c-9.714 0-18.286 8.571-18.286 18.286v475.429c0 9.714 8.571 18.286 18.286 18.286h841.143c9.714 0 18.286-8.571 18.286-18.286zM1024 164.571v621.714c0 50.286-41.143 91.429-91.429 91.429h-841.143c-50.286 0-91.429-41.143-91.429-91.429v-621.714c0-50.286 41.143-91.429 91.429-91.429h841.143c50.286 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "list-alt"
+ ],
+ "defaultCode": 61474,
+ "grid": 14
+ },
+ {
+ "id": 36,
+ "paths": [
+ "M182.857 438.857h292.571v-109.714c0-80.571-65.714-146.286-146.286-146.286s-146.286 65.714-146.286 146.286v109.714zM658.286 493.714v329.143c0 30.286-24.571 54.857-54.857 54.857h-548.571c-30.286 0-54.857-24.571-54.857-54.857v-329.143c0-30.286 24.571-54.857 54.857-54.857h18.286v-109.714c0-140.571 115.429-256 256-256s256 115.429 256 256v109.714h18.286c30.286 0 54.857 24.571 54.857 54.857z"
+ ],
+ "width": 658.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "lock"
+ ],
+ "defaultCode": 61475,
+ "grid": 14
+ },
+ {
+ "id": 37,
+ "paths": [
+ "M182.857 146.286c0 26.286-14.286 49.714-36.571 62.857v723.429c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-723.429c-22.286-13.143-36.571-36.571-36.571-62.857 0-40.571 32.571-73.143 73.143-73.143s73.143 32.571 73.143 73.143zM1024 182.857v436c0 21.143-13.143 29.143-29.714 37.714-64.571 34.857-136 66.286-210.857 66.286-105.143 0-155.429-80-280-80-90.857 0-186.286 41.143-265.143 83.429-6.286 3.429-12 5.143-18.857 5.143-20 0-36.571-16.571-36.571-36.571v-424c0-13.714 6.857-23.429 17.714-31.429 13.714-9.143 30.286-17.143 45.143-24.571 72-36.571 159.429-68.571 240.571-68.571 89.714 0 160 29.714 239.429 66.857 16 8 32.571 10.857 50.286 10.857 89.714 0 186.286-77.714 211.429-77.714 20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 1060.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "flag"
+ ],
+ "defaultCode": 61476,
+ "grid": 14
+ },
+ {
+ "id": 38,
+ "paths": [
+ "M950.857 506.286c0 62.286-11.429 122.857-34.286 179.429l-11.429 28-105.714 18.857c-16.571 62.286-73.143 108.571-141.143 108.571v18.286c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-329.143c0-10.286 8-18.286 18.286-18.286h36.571c10.286 0 18.286 8 18.286 18.286v18.286c54.857 0 102.286 30.286 127.429 74.857l38.857-6.857c10.857-35.429 16.571-72 16.571-110.286 0-172.571-170.857-323.429-365.714-323.429s-365.714 150.857-365.714 323.429c0 38.286 5.714 74.857 16.571 110.286l38.857 6.857c25.143-44.571 72.571-74.857 127.429-74.857v-18.286c0-10.286 8-18.286 18.286-18.286h36.571c10.286 0 18.286 8 18.286 18.286v329.143c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-18.286c-68 0-124.571-46.286-141.143-108.571l-105.714-18.857-11.429-28c-22.857-56.571-34.286-117.143-34.286-179.429 0-234.857 217.714-433.143 475.429-433.143s475.429 198.286 475.429 433.143z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "headphones"
+ ],
+ "defaultCode": 61477,
+ "grid": 14
+ },
+ {
+ "id": 39,
+ "paths": [
+ "M438.857 201.143v621.714c0 20-16.571 36.571-36.571 36.571-9.714 0-18.857-4-25.714-10.857l-190.286-190.286h-149.714c-20 0-36.571-16.571-36.571-36.571v-219.429c0-20 16.571-36.571 36.571-36.571h149.714l190.286-190.286c6.857-6.857 16-10.857 25.714-10.857 20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 438.85714285714283,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "volume-off"
+ ],
+ "defaultCode": 61478,
+ "grid": 14
+ },
+ {
+ "id": 40,
+ "paths": [
+ "M438.857 201.143v621.714c0 20-16.571 36.571-36.571 36.571-9.714 0-18.857-4-25.714-10.857l-190.286-190.286h-149.714c-20 0-36.571-16.571-36.571-36.571v-219.429c0-20 16.571-36.571 36.571-36.571h149.714l190.286-190.286c6.857-6.857 16-10.857 25.714-10.857 20 0 36.571 16.571 36.571 36.571zM658.286 512c0 57.143-34.857 112.571-88.571 134.286-4.571 2.286-9.714 2.857-14.286 2.857-20 0-36.571-16-36.571-36.571 0-43.429 66.286-31.429 66.286-100.571s-66.286-57.143-66.286-100.571c0-20.571 16.571-36.571 36.571-36.571 4.571 0 9.714 0.571 14.286 2.857 53.714 21.143 88.571 77.143 88.571 134.286z"
+ ],
+ "width": 658.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "volume-down"
+ ],
+ "defaultCode": 61479,
+ "grid": 14
+ },
+ {
+ "id": 41,
+ "paths": [
+ "M438.857 201.143v621.714c0 20-16.571 36.571-36.571 36.571-9.714 0-18.857-4-25.714-10.857l-190.286-190.286h-149.714c-20 0-36.571-16.571-36.571-36.571v-219.429c0-20 16.571-36.571 36.571-36.571h149.714l190.286-190.286c6.857-6.857 16-10.857 25.714-10.857 20 0 36.571 16.571 36.571 36.571zM658.286 512c0 57.143-34.857 112.571-88.571 134.286-4.571 2.286-9.714 2.857-14.286 2.857-20 0-36.571-16-36.571-36.571 0-43.429 66.286-31.429 66.286-100.571s-66.286-57.143-66.286-100.571c0-20.571 16.571-36.571 36.571-36.571 4.571 0 9.714 0.571 14.286 2.857 53.714 21.143 88.571 77.143 88.571 134.286zM804.571 512c0 116-69.714 224-177.143 269.143-4.571 1.714-9.714 2.857-14.286 2.857-20.571 0-37.143-16.571-37.143-36.571 0-16 9.143-26.857 22.286-33.714 15.429-8 29.714-14.857 43.429-25.143 56.571-41.143 89.714-106.857 89.714-176.571s-33.143-135.429-89.714-176.571c-13.714-10.286-28-17.143-43.429-25.143-13.143-6.857-22.286-17.714-22.286-33.714 0-20 16.571-36.571 36.571-36.571 5.143 0 10.286 1.143 14.857 2.857 107.429 45.143 177.143 153.143 177.143 269.143zM950.857 512c0 175.429-104.571 334.286-265.714 403.429-4.571 1.714-9.714 2.857-14.857 2.857-20 0-36.571-16.571-36.571-36.571 0-16.571 8.571-25.714 22.286-33.714 8-4.571 17.143-7.429 25.714-12 16-8.571 32-18.286 46.857-29.143 93.714-69.143 149.143-178.286 149.143-294.857s-55.429-225.714-149.143-294.857c-14.857-10.857-30.857-20.571-46.857-29.143-8.571-4.571-17.714-7.429-25.714-12-13.714-8-22.286-17.143-22.286-33.714 0-20 16.571-36.571 36.571-36.571 5.143 0 10.286 1.143 14.857 2.857 161.143 69.143 265.714 228 265.714 403.429z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "volume-up"
+ ],
+ "defaultCode": 61480,
+ "grid": 14
+ },
+ {
+ "id": 42,
+ "paths": [
+ "M219.429 658.286v73.143h-73.143v-73.143h73.143zM219.429 219.429v73.143h-73.143v-73.143h73.143zM658.286 219.429v73.143h-73.143v-73.143h73.143zM73.143 804h219.429v-218.857h-219.429v218.857zM73.143 365.714h219.429v-219.429h-219.429v219.429zM512 365.714h219.429v-219.429h-219.429v219.429zM365.714 512v365.714h-365.714v-365.714h365.714zM658.286 804.571v73.143h-73.143v-73.143h73.143zM804.571 804.571v73.143h-73.143v-73.143h73.143zM804.571 512v219.429h-219.429v-73.143h-73.143v219.429h-73.143v-365.714h219.429v73.143h73.143v-73.143h73.143zM365.714 73.143v365.714h-365.714v-365.714h365.714zM804.571 73.143v365.714h-365.714v-365.714h365.714z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "qrcode"
+ ],
+ "defaultCode": 61481,
+ "grid": 14
+ },
+ {
+ "id": 43,
+ "paths": [
+ "M36 877.714h-36v-804.571h36v804.571zM72 877.143h-18.286v-804h18.286v804zM125.714 877.143h-17.714v-804h17.714v804zM215.429 877.143h-17.714v-804h17.714v804zM305.143 877.143h-35.429v-804h35.429v804zM377.143 877.143h-17.714v-804h17.714v804zM413.143 877.143h-17.714v-804h17.714v804zM449.143 877.143h-17.714v-804h17.714v804zM538.857 877.143h-36v-804h36v804zM628.571 877.143h-36v-804h36v804zM700.571 877.143h-36v-804h36v804zM772.571 877.143h-36v-804h36v804zM826.286 877.143h-36v-804h36v804zM934.286 877.143h-53.714v-804h53.714v804zM970.286 877.143h-18.286v-804h18.286v804zM1024 877.714h-36v-804.571h36v804.571z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "barcode"
+ ],
+ "defaultCode": 61482,
+ "grid": 14
+ },
+ {
+ "id": 44,
+ "paths": [
+ "M256 256c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM865.714 585.143c0 19.429-8 38.286-21.143 51.429l-280.571 281.143c-13.714 13.143-32.571 21.143-52 21.143s-38.286-8-51.429-21.143l-408.571-409.143c-29.143-28.571-52-84-52-124.571v-237.714c0-40 33.143-73.143 73.143-73.143h237.714c40.571 0 96 22.857 125.143 52l408.571 408c13.143 13.714 21.143 32.571 21.143 52z"
+ ],
+ "width": 865.7188571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tag"
+ ],
+ "defaultCode": 61483,
+ "grid": 14
+ },
+ {
+ "id": 45,
+ "paths": [
+ "M256 256c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM865.714 585.143c0 19.429-8 38.286-21.143 51.429l-280.571 281.143c-13.714 13.143-32.571 21.143-52 21.143s-38.286-8-51.429-21.143l-408.571-409.143c-29.143-28.571-52-84-52-124.571v-237.714c0-40 33.143-73.143 73.143-73.143h237.714c40.571 0 96 22.857 125.143 52l408.571 408c13.143 13.714 21.143 32.571 21.143 52zM1085.143 585.143c0 19.429-8 38.286-21.143 51.429l-280.571 281.143c-13.714 13.143-32.571 21.143-52 21.143-29.714 0-44.571-13.714-64-33.714l268.571-268.571c13.143-13.143 21.143-32 21.143-51.429s-8-38.286-21.143-52l-408.571-408c-29.143-29.143-84.571-52-125.143-52h128c40.571 0 96 22.857 125.143 52l408.571 408c13.143 13.714 21.143 32.571 21.143 52z"
+ ],
+ "width": 1085.1474285714285,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tags"
+ ],
+ "defaultCode": 61484,
+ "grid": 14
+ },
+ {
+ "id": 46,
+ "paths": [
+ "M936.571 273.143c14.286 20.571 18.286 47.429 10.286 73.714l-157.143 517.714c-14.286 48.571-64.571 86.286-113.714 86.286h-527.429c-58.286 0-120.571-46.286-141.714-105.714-9.143-25.714-9.143-50.857-1.143-72.571 1.143-11.429 3.429-22.857 4-36.571 0.571-9.143-4.571-16.571-3.429-23.429 2.286-13.714 14.286-23.429 23.429-38.857 17.143-28.571 36.571-74.857 42.857-104.571 2.857-10.857-2.857-23.429 0-33.143 2.857-10.857 13.714-18.857 19.429-29.143 15.429-26.286 35.429-77.143 38.286-104 1.143-12-4.571-25.143-1.143-34.286 4-13.143 16.571-18.857 25.143-30.286 13.714-18.857 36.571-73.143 40-103.429 1.143-9.714-4.571-19.429-2.857-29.714 2.286-10.857 16-22.286 25.143-35.429 24-35.429 28.571-113.714 101.143-93.143l-0.571 1.714c9.714-2.286 19.429-5.143 29.143-5.143h434.857c26.857 0 50.857 12 65.143 32 14.857 20.571 18.286 47.429 10.286 74.286l-156.571 517.714c-26.857 88-41.714 107.429-114.286 107.429h-496.571c-7.429 0-16.571 1.714-21.714 8.571-4.571 6.857-5.143 12-0.571 24.571 11.429 33.143 50.857 40 82.286 40h527.429c21.143 0 45.714-12 52-32.571l171.429-564c3.429-10.857 3.429-22.286 2.857-32.571 13.143 5.143 25.143 13.143 33.714 24.571zM328.571 274.286c-3.429 10.286 2.286 18.286 12.571 18.286h347.429c9.714 0 20.571-8 24-18.286l12-36.571c3.429-10.286-2.286-18.286-12.571-18.286h-347.429c-9.714 0-20.571 8-24 18.286zM281.143 420.571c-3.429 10.286 2.286 18.286 12.571 18.286h347.429c9.714 0 20.571-8 24-18.286l12-36.571c3.429-10.286-2.286-18.286-12.571-18.286h-347.429c-9.714 0-20.571 8-24 18.286z"
+ ],
+ "width": 952.5394285714285,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "book"
+ ],
+ "defaultCode": 61485,
+ "grid": 14
+ },
+ {
+ "id": 47,
+ "paths": [
+ "M665.143 73.143c8.571 0 17.143 1.714 25.143 5.143 25.143 9.714 41.143 33.143 41.143 58.857v736.571c0 25.714-16 49.143-41.143 58.857-8 3.429-16.571 4.571-25.143 4.571-17.714 0-34.286-6.286-47.429-18.286l-252-242.286-252 242.286c-13.143 12-29.714 18.857-47.429 18.857-8.571 0-17.143-1.714-25.143-5.143-25.143-9.714-41.143-33.143-41.143-58.857v-736.571c0-25.714 16-49.143 41.143-58.857 8-3.429 16.571-5.143 25.143-5.143h598.857z"
+ ],
+ "width": 731.4285714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bookmark"
+ ],
+ "defaultCode": 61486,
+ "grid": 14
+ },
+ {
+ "id": 48,
+ "paths": [
+ "M219.429 877.714h512v-146.286h-512v146.286zM219.429 512h512v-219.429h-91.429c-30.286 0-54.857-24.571-54.857-54.857v-91.429h-365.714v365.714zM877.714 548.571c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM950.857 548.571v237.714c0 9.714-8.571 18.286-18.286 18.286h-128v91.429c0 30.286-24.571 54.857-54.857 54.857h-548.571c-30.286 0-54.857-24.571-54.857-54.857v-91.429h-128c-9.714 0-18.286-8.571-18.286-18.286v-237.714c0-60 49.714-109.714 109.714-109.714h36.571v-310.857c0-30.286 24.571-54.857 54.857-54.857h384c30.286 0 72 17.143 93.714 38.857l86.857 86.857c21.714 21.714 38.857 63.429 38.857 93.714v146.286h36.571c60 0 109.714 49.714 109.714 109.714z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "print"
+ ],
+ "defaultCode": 61487,
+ "grid": 14
+ },
+ {
+ "id": 49,
+ "paths": [
+ "M548.571 384c90.857 0 164.571 73.714 164.571 164.571s-73.714 164.571-164.571 164.571-164.571-73.714-164.571-164.571 73.714-164.571 164.571-164.571zM950.857 146.286c80.571 0 146.286 65.714 146.286 146.286v512c0 80.571-65.714 146.286-146.286 146.286h-804.571c-80.571 0-146.286-65.714-146.286-146.286v-512c0-80.571 65.714-146.286 146.286-146.286h128l29.143-77.714c14.286-37.714 58.857-68.571 98.857-68.571h292.571c40 0 84.571 30.857 98.857 68.571l29.143 77.714h128zM548.571 804.571c141.143 0 256-114.857 256-256s-114.857-256-256-256-256 114.857-256 256 114.857 256 256 256z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "camera"
+ ],
+ "defaultCode": 61488,
+ "grid": 14
+ },
+ {
+ "id": 50,
+ "paths": [
+ "M414.286 319.429l-97.143 257.143c56.571 0.571 113.143 2.286 169.714 2.286 10.857 0 21.714-0.571 32.571-1.143-29.714-86.857-64.571-175.429-105.143-258.286zM0 950.857l1.143-45.143c53.714-16.571 112-5.143 136-66.857l135.429-352 160-413.714h73.143c2.286 4 4.571 8 6.286 12l117.143 274.286c42.857 101.143 82.286 203.429 125.714 304 25.714 59.429 45.714 120.571 74.286 178.857 4 9.143 12 26.286 20 32.571 18.857 14.857 71.429 18.286 98.286 28.571 1.714 10.857 3.429 21.714 3.429 32.571 0 5.143-0.571 9.714-0.571 14.857-72.571 0-145.143-9.143-217.714-9.143-74.857 0-149.714 6.286-224.571 8.571 0-14.857 0.571-29.714 2.286-44.571l74.857-16c15.429-3.429 45.714-7.429 45.714-28.571 0-20.571-73.714-190.286-82.857-213.714l-257.143-1.143c-14.857 33.143-72.571 182.857-72.571 204.571 0 44 84 45.714 116.571 50.286 0.571 10.857 0.571 21.714 0.571 33.143 0 5.143-0.571 10.286-1.143 15.429-66.286 0-133.143-11.429-199.429-11.429-8 0-19.429 3.429-27.429 4.571-36 6.286-71.429 8-107.429 8z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "font"
+ ],
+ "defaultCode": 61489,
+ "grid": 14
+ },
+ {
+ "id": 51,
+ "paths": [
+ "M317.143 869.143c25.143 10.857 52.571 18.286 80 18.286 130.286 0 214.857-52 214.857-191.429 0-35.429-4.571-72.571-23.429-102.857-53.143-85.714-129.714-90.286-221.714-90.286-17.143 0-41.714 0-57.714 5.714 0 60.571-0.571 121.143-0.571 181.143 0 39.429-5.143 146.286 8.571 179.429zM309.143 442.857c20.571 3.429 41.714 4 62.286 4 117.714 0 201.714-33.143 201.714-165.143 0-111.429-98.857-149.714-194.286-149.714-25.143 0-49.714 3.429-74.286 7.429 0 57.714 4.571 115.429 4.571 173.143 0 30.286-0.571 60.571-0.571 90.857 0 13.143 0 26.286 0.571 39.429zM0 950.857l1.143-53.714c36.571-9.143 73.714-9.714 109.143-24.571 20-33.714 17.143-93.143 17.143-131.429 0-12.571 1.143-558.857-12.571-585.714-8.571-16.571-92.571-20.571-111.429-22.857l-2.286-47.429c136-2.286 272-12 407.429-12 25.714 0 52 0.571 77.714 0.571 129.143 0 271.429 61.714 271.429 210.286 0 102.286-77.714 140.571-158.286 177.143 108.571 24.571 205.143 98.286 205.143 218.286 0 196.571-178.857 261.714-346.286 261.714-50.286 0-100.571-3.429-150.857-3.429-102.286 0-205.714 9.143-307.429 13.143z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bold"
+ ],
+ "defaultCode": 61490,
+ "grid": 14
+ },
+ {
+ "id": 52,
+ "paths": [
+ "M0 949.714l9.714-48.571c36.571-11.429 76-16 110.286-33.714 13.143-16.571 19.429-37.714 23.429-57.714 7.429-38.857 132-599.429 130.286-645.143v-14.286c-31.429-17.143-69.714-12.571-104-18.286l10.857-58.857c73.714 3.429 148.571 9.143 222.857 9.143 60.571 0 121.143-5.714 181.714-9.143-2.286 17.143-6.286 34.286-10.857 50.857-39.429 13.714-81.143 20-120 35.429-12.571 30.857-15.429 64.571-21.143 97.143-27.429 148-64 296-94.286 442.857-5.714 27.429-33.714 141.143-31.429 165.143l0.571 10.286c34.857 8 70.286 12 105.714 17.714-1.143 18.857-4.571 37.714-9.143 56.571-12.571 0-24.571 1.714-37.143 1.714-32.571 0-66.286-10.857-98.857-11.429-39.429-0.571-78.857-1.143-117.714-1.143-50.857 0-100.571 8.571-150.857 11.429z"
+ ],
+ "width": 585.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "italic"
+ ],
+ "defaultCode": 61491,
+ "grid": 14
+ },
+ {
+ "id": 53,
+ "paths": [
+ "M996.571 804.571c25.143 0 33.143 16 17.714 36l-72 92.571c-15.429 20-40.571 20-56 0l-72-92.571c-15.429-20-7.429-36 17.714-36h45.714v-585.143h-45.714c-25.143 0-33.143-16-17.714-36l72-92.571c15.429-20 40.571-20 56 0l72 92.571c15.429 20 7.429 36-17.714 36h-45.714v585.143h45.714zM46.286 73.714l30.857 15.429c4 1.714 108.571 2.857 120.571 2.857 50.286 0 100.571-2.286 150.857-2.286 41.143 0 81.714 0.571 122.857 0.571h167.429c22.857 0 36 5.143 51.429-16.571l24-0.571c5.143 0 10.857 0.571 16 0.571 1.143 64 1.143 128 1.143 192 0 20 0.571 42.286-2.857 62.286-12.571 4.571-25.714 8.571-38.857 10.286-13.143-22.857-22.286-48-30.857-73.143-4-11.429-17.714-88.571-18.857-89.714-12-14.857-25.143-12-42.857-12-52 0-106.286-2.286-157.714 4-2.857 25.143-5.143 52-4.571 77.714 0.571 160.571 2.286 321.143 2.286 481.714 0 44-6.857 90.286 5.714 132.571 43.429 22.286 94.857 25.714 139.429 45.714 1.143 9.143 2.857 18.857 2.857 28.571 0 5.143-0.571 10.857-1.714 16.571l-19.429 0.571c-81.143 2.286-161.143-10.286-242.857-10.286-57.714 0-115.429 10.286-173.143 10.286-0.571-9.714-1.714-20-1.714-29.714v-5.143c21.714-34.857 100-35.429 136-56.571 12.571-28 10.857-182.857 10.857-218.857 0-115.429-3.429-230.857-3.429-346.286v-66.857c0-10.286 2.286-51.429-4.571-59.429-8-8.571-82.857-6.857-92.571-6.857-21.143 0-82.286 9.714-98.857 21.714-27.429 18.857-27.429 133.143-61.714 135.429-10.286-6.286-24.571-15.429-32-25.143v-218.857z"
+ ],
+ "width": 1029.7051428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "text-height"
+ ],
+ "defaultCode": 61492,
+ "grid": 14
+ },
+ {
+ "id": 54,
+ "paths": [
+ "M46.286 73.714l30.857 15.429c4 1.714 108.571 2.857 120.571 2.857 50.286 0 100.571-2.286 150.857-2.286 151.429 0 304.571-3.429 456 1.714 12.571 0.571 24.571-7.429 32-17.714l24-0.571c5.143 0 10.857 0.571 16 0.571 1.143 64 1.143 128 1.143 192 0 20.571 0.571 42.286-2.857 62.286-12.571 4.571-25.714 8.571-38.857 10.286-13.143-22.857-22.286-48-30.857-73.143-4-11.429-18.286-88.571-18.857-89.714-4-5.143-9.143-8.571-15.429-10.857-4.571-1.714-32-1.143-37.714-1.143-70.286 0-151.429-4-220.571 4-2.857 25.143-5.143 52-4.571 77.714l0.571 86.857v-29.714c0.571 93.143 1.714 185.714 1.714 278.286 0 44-6.857 90.286 5.714 132.571 43.429 22.286 94.857 25.714 139.429 45.714 1.143 9.143 2.857 18.857 2.857 28.571 0 5.143-0.571 10.857-1.714 16.571l-19.429 0.571c-81.143 2.286-161.143-10.286-242.857-10.286-57.714 0-115.429 10.286-173.143 10.286-0.571-9.714-1.714-20-1.714-29.714v-5.143c21.714-34.857 100-35.429 136-56.571 14.286-32 10.286-302.286 10.286-352.571 0-8-2.857-16.571-2.857-25.143 0-23.429 4-157.714-4.571-167.429-8-8.571-82.857-6.857-92.571-6.857-24 0-158.286 12.571-172 21.714-26.857 17.714-27.429 132.571-61.714 135.429-10.286-6.286-24.571-15.429-32-25.143v-218.857zM748.571 806.286c20 0 96 68 111.429 80 8.571 6.857 14.857 16.571 14.857 28s-6.286 21.143-14.857 28c-15.429 12-91.429 80-111.429 80-26.286 0-17.143-61.143-17.143-71.429h-585.143c0 10.286 9.143 71.429-17.143 71.429-20 0-96-68-111.429-80-8.571-6.857-14.857-16.571-14.857-28s6.286-21.143 14.857-28c15.429-12 91.429-80 111.429-80 26.286 0 17.143 61.143 17.143 71.429h585.143c0-10.286-9.143-71.429 17.143-71.429z"
+ ],
+ "width": 878.2994285714285,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "text-width"
+ ],
+ "defaultCode": 61493,
+ "grid": 14
+ },
+ {
+ "id": 55,
+ "paths": [
+ "M1024 768v73.143c0 20-16.571 36.571-36.571 36.571h-950.857c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h950.857c20 0 36.571 16.571 36.571 36.571zM804.571 548.571v73.143c0 20-16.571 36.571-36.571 36.571h-731.429c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h731.429c20 0 36.571 16.571 36.571 36.571zM950.857 329.143v73.143c0 20-16.571 36.571-36.571 36.571h-877.714c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h877.714c20 0 36.571 16.571 36.571 36.571zM731.429 109.714v73.143c0 20-16.571 36.571-36.571 36.571h-658.286c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h658.286c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "align-left"
+ ],
+ "defaultCode": 61494,
+ "grid": 14
+ },
+ {
+ "id": 56,
+ "paths": [
+ "M1024 768v73.143c0 20-16.571 36.571-36.571 36.571h-950.857c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h950.857c20 0 36.571 16.571 36.571 36.571zM804.571 548.571v73.143c0 20-16.571 36.571-36.571 36.571h-512c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h512c20 0 36.571 16.571 36.571 36.571zM950.857 329.143v73.143c0 20-16.571 36.571-36.571 36.571h-804.571c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h804.571c20 0 36.571 16.571 36.571 36.571zM731.429 109.714v73.143c0 20-16.571 36.571-36.571 36.571h-365.714c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h365.714c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "align-center"
+ ],
+ "defaultCode": 61495,
+ "grid": 14
+ },
+ {
+ "id": 57,
+ "paths": [
+ "M1024 768v73.143c0 20-16.571 36.571-36.571 36.571h-950.857c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h950.857c20 0 36.571 16.571 36.571 36.571zM1024 548.571v73.143c0 20-16.571 36.571-36.571 36.571h-731.429c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h731.429c20 0 36.571 16.571 36.571 36.571zM1024 329.143v73.143c0 20-16.571 36.571-36.571 36.571h-877.714c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h877.714c20 0 36.571 16.571 36.571 36.571zM1024 109.714v73.143c0 20-16.571 36.571-36.571 36.571h-658.286c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h658.286c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "align-right"
+ ],
+ "defaultCode": 61496,
+ "grid": 14
+ },
+ {
+ "id": 58,
+ "paths": [
+ "M1024 768v73.143c0 20-16.571 36.571-36.571 36.571h-950.857c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h950.857c20 0 36.571 16.571 36.571 36.571zM1024 548.571v73.143c0 20-16.571 36.571-36.571 36.571h-950.857c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h950.857c20 0 36.571 16.571 36.571 36.571zM1024 329.143v73.143c0 20-16.571 36.571-36.571 36.571h-950.857c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h950.857c20 0 36.571 16.571 36.571 36.571zM1024 109.714v73.143c0 20-16.571 36.571-36.571 36.571h-950.857c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h950.857c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "align-justify"
+ ],
+ "defaultCode": 61497,
+ "grid": 14
+ },
+ {
+ "id": 59,
+ "paths": [
+ "M146.286 749.714v109.714c0 9.714-8.571 18.286-18.286 18.286h-109.714c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h109.714c9.714 0 18.286 8.571 18.286 18.286zM146.286 530.286v109.714c0 9.714-8.571 18.286-18.286 18.286h-109.714c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h109.714c9.714 0 18.286 8.571 18.286 18.286zM146.286 310.857v109.714c0 9.714-8.571 18.286-18.286 18.286h-109.714c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h109.714c9.714 0 18.286 8.571 18.286 18.286zM1024 749.714v109.714c0 9.714-8.571 18.286-18.286 18.286h-768c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h768c9.714 0 18.286 8.571 18.286 18.286zM146.286 91.429v109.714c0 9.714-8.571 18.286-18.286 18.286h-109.714c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h109.714c9.714 0 18.286 8.571 18.286 18.286zM1024 530.286v109.714c0 9.714-8.571 18.286-18.286 18.286h-768c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h768c9.714 0 18.286 8.571 18.286 18.286zM1024 310.857v109.714c0 9.714-8.571 18.286-18.286 18.286h-768c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h768c9.714 0 18.286 8.571 18.286 18.286zM1024 91.429v109.714c0 9.714-8.571 18.286-18.286 18.286h-768c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h768c9.714 0 18.286 8.571 18.286 18.286z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "list"
+ ],
+ "defaultCode": 61498,
+ "grid": 14
+ },
+ {
+ "id": 60,
+ "paths": [
+ "M219.429 310.857v329.143c0 9.714-8.571 18.286-18.286 18.286-4.571 0-9.714-1.714-13.143-5.143l-164.571-164.571c-3.429-3.429-5.143-8.571-5.143-13.143s1.714-9.714 5.143-13.143l164.571-164.571c3.429-3.429 8.571-5.143 13.143-5.143 9.714 0 18.286 8.571 18.286 18.286zM1024 749.714v109.714c0 9.714-8.571 18.286-18.286 18.286h-987.429c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h987.429c9.714 0 18.286 8.571 18.286 18.286zM1024 530.286v109.714c0 9.714-8.571 18.286-18.286 18.286h-621.714c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h621.714c9.714 0 18.286 8.571 18.286 18.286zM1024 310.857v109.714c0 9.714-8.571 18.286-18.286 18.286h-621.714c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h621.714c9.714 0 18.286 8.571 18.286 18.286zM1024 91.429v109.714c0 9.714-8.571 18.286-18.286 18.286h-987.429c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h987.429c9.714 0 18.286 8.571 18.286 18.286z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "dedent",
+ "outdent"
+ ],
+ "defaultCode": 61499,
+ "grid": 14
+ },
+ {
+ "id": 61,
+ "paths": [
+ "M201.143 475.429c0 4.571-1.714 9.714-5.143 13.143l-164.571 164.571c-3.429 3.429-8.571 5.143-13.143 5.143-9.714 0-18.286-8.571-18.286-18.286v-329.143c0-9.714 8.571-18.286 18.286-18.286 4.571 0 9.714 1.714 13.143 5.143l164.571 164.571c3.429 3.429 5.143 8.571 5.143 13.143zM1024 749.714v109.714c0 9.714-8.571 18.286-18.286 18.286h-987.429c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h987.429c9.714 0 18.286 8.571 18.286 18.286zM1024 530.286v109.714c0 9.714-8.571 18.286-18.286 18.286h-621.714c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h621.714c9.714 0 18.286 8.571 18.286 18.286zM1024 310.857v109.714c0 9.714-8.571 18.286-18.286 18.286h-621.714c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h621.714c9.714 0 18.286 8.571 18.286 18.286zM1024 91.429v109.714c0 9.714-8.571 18.286-18.286 18.286h-987.429c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h987.429c9.714 0 18.286 8.571 18.286 18.286z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "indent"
+ ],
+ "defaultCode": 61500,
+ "grid": 14
+ },
+ {
+ "id": 62,
+ "paths": [
+ "M1024 201.143v621.714c0 14.857-9.143 28-22.286 33.714-4.571 1.714-9.714 2.857-14.286 2.857-9.714 0-18.857-3.429-25.714-10.857l-230.286-230.286v94.857c0 90.857-73.714 164.571-164.571 164.571h-402.286c-90.857 0-164.571-73.714-164.571-164.571v-402.286c0-90.857 73.714-164.571 164.571-164.571h402.286c90.857 0 164.571 73.714 164.571 164.571v94.286l230.286-229.714c6.857-7.429 16-10.857 25.714-10.857 4.571 0 9.714 1.143 14.286 2.857 13.143 5.714 22.286 18.857 22.286 33.714z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "video-camera"
+ ],
+ "defaultCode": 61501,
+ "grid": 14
+ },
+ {
+ "id": 63,
+ "paths": [
+ "M365.714 329.143c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714 109.714 49.143 109.714 109.714zM950.857 548.571v256h-804.571v-109.714l182.857-182.857 91.429 91.429 292.571-292.571zM1005.714 146.286h-914.286c-9.714 0-18.286 8.571-18.286 18.286v694.857c0 9.714 8.571 18.286 18.286 18.286h914.286c9.714 0 18.286-8.571 18.286-18.286v-694.857c0-9.714-8.571-18.286-18.286-18.286zM1097.143 164.571v694.857c0 50.286-41.143 91.429-91.429 91.429h-914.286c-50.286 0-91.429-41.143-91.429-91.429v-694.857c0-50.286 41.143-91.429 91.429-91.429h914.286c50.286 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "image",
+ "photo",
+ "picture-o"
+ ],
+ "defaultCode": 61502,
+ "grid": 14
+ },
+ {
+ "id": 64,
+ "paths": [
+ "M207.429 877.714l52-52-134.286-134.286-52 52v61.143h73.143v73.143h61.143zM506.286 347.429c0-7.429-5.143-12.571-12.571-12.571-3.429 0-6.857 1.143-9.714 4l-309.714 309.714c-2.857 2.857-4 6.286-4 9.714 0 7.429 5.143 12.571 12.571 12.571 3.429 0 6.857-1.143 9.714-4l309.714-309.714c2.857-2.857 4-6.286 4-9.714zM475.429 237.714l237.714 237.714-475.429 475.429h-237.714v-237.714zM865.714 292.571c0 19.429-8 38.286-21.143 51.429l-94.857 94.857-237.714-237.714 94.857-94.286c13.143-13.714 32-21.714 51.429-21.714s38.286 8 52 21.714l134.286 133.714c13.143 13.714 21.143 32.571 21.143 52z"
+ ],
+ "width": 865.7188571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pencil"
+ ],
+ "defaultCode": 61504,
+ "grid": 14
+ },
+ {
+ "id": 65,
+ "paths": [
+ "M438.857 365.714c0-80.571-65.714-146.286-146.286-146.286s-146.286 65.714-146.286 146.286 65.714 146.286 146.286 146.286 146.286-65.714 146.286-146.286zM585.143 365.714c0 34.857-4 70.857-18.857 102.286l-208 442.286c-12 25.143-38.286 40.571-65.714 40.571s-53.714-15.429-65.143-40.571l-208.571-442.286c-14.857-31.429-18.857-67.429-18.857-102.286 0-161.714 130.857-292.571 292.571-292.571s292.571 130.857 292.571 292.571z"
+ ],
+ "width": 585.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "map-marker"
+ ],
+ "defaultCode": 61505,
+ "grid": 14
+ },
+ {
+ "id": 66,
+ "paths": [
+ "M438.857 822.857v-621.714c-171.429 0-310.857 139.429-310.857 310.857s139.429 310.857 310.857 310.857zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "adjust"
+ ],
+ "defaultCode": 61506,
+ "grid": 14
+ },
+ {
+ "id": 67,
+ "paths": [
+ "M292.571 658.286c0-14.286-4.571-28-11.429-39.429-7.429-11.429-37.714-50.286-49.714-88.571-1.714-6.286-7.429-9.143-12-9.143s-10.286 2.857-12 9.143c-12 38.286-42.286 77.143-49.714 88.571-6.857 11.429-11.429 25.143-11.429 39.429 0 40.571 32.571 73.143 73.143 73.143s73.143-32.571 73.143-73.143zM585.143 585.143c0 161.714-130.857 292.571-292.571 292.571s-292.571-130.857-292.571-292.571c0-57.714 17.714-111.429 46.286-157.143 29.143-45.714 151.429-200.571 197.714-354.857 7.429-24.571 30.286-36.571 48.571-36.571s41.714 12 48.571 36.571c46.286 154.286 168.571 309.143 197.714 354.857s46.286 99.429 46.286 157.143z"
+ ],
+ "width": 585.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tint"
+ ],
+ "defaultCode": 61507,
+ "grid": 14
+ },
+ {
+ "id": 68,
+ "paths": [
+ "M507.429 676.571l66.286-66.286-86.857-86.857-66.286 66.286v32h54.857v54.857h32zM758.857 265.143c-5.143-5.143-13.714-4.571-18.857 0.571l-200 200c-5.143 5.143-5.714 13.714-0.571 18.857s13.714 4.571 18.857-0.571l200-200c5.143-5.143 5.714-13.714 0.571-18.857zM804.571 604.571v108.571c0 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.429c22.857 0 45.714 4.571 66.857 14.286 5.143 2.286 9.143 7.429 10.286 13.143 1.143 6.286-0.571 12-5.143 16.571l-28 28c-5.143 5.143-12 6.857-18.286 4.571-8.571-2.286-17.143-3.429-25.714-3.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.429v-72c0-4.571 1.714-9.143 5.143-12.571l36.571-36.571c5.714-5.714 13.143-6.857 20-4s11.429 9.143 11.429 16.571zM749.714 182.857l164.571 164.571-384 384h-164.571v-164.571zM1003.429 258.286l-52.571 52.571-164.571-164.571 52.571-52.571c21.143-21.143 56.571-21.143 77.714 0l86.857 86.857c21.143 21.143 21.143 56.571 0 77.714z"
+ ],
+ "width": 1024.5851428571427,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "edit",
+ "pencil-square-o"
+ ],
+ "defaultCode": 61508,
+ "grid": 14
+ },
+ {
+ "id": 69,
+ "paths": [
+ "M804.571 565.143v148c0 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.571h145.714c9.714 0 18.286 8 18.286 18.286 0 9.143-6.286 16.571-14.857 18.286-28.571 9.714-54.286 21.143-76 34.286-2.857 1.143-5.714 2.286-9.143 2.286h-64c-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-122.286c0-6.857 4-13.143 10.286-16.571 11.429-5.143 21.714-12.571 30.857-21.143 5.143-5.143 13.143-7.429 20-4.571s12 9.143 12 16.571zM940 281.714l-219.429 219.429c-6.857 7.429-16 10.857-25.714 10.857-4.571 0-9.714-1.143-14.286-2.857-13.143-5.714-22.286-18.857-22.286-33.714v-109.714h-91.429c-125.714 0-205.714 24-250.286 74.857-46.286 53.143-60 138.857-42.286 270.286 1.143 8-4 16-11.429 19.429-2.286 0.571-4.571 1.143-6.857 1.143-5.714 0-11.429-2.857-14.857-7.429-4-5.714-94.857-134.286-94.857-248.571 0-153.143 48-329.143 420.571-329.143h91.429v-109.714c0-14.857 9.143-28 22.286-33.714 4.571-1.714 9.714-2.857 14.286-2.857 9.714 0 18.857 4 25.714 10.857l219.429 219.429c14.286 14.286 14.286 37.143 0 51.429z"
+ ],
+ "width": 954.2948571428572,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "share-square-o"
+ ],
+ "defaultCode": 61509,
+ "grid": 14
+ },
+ {
+ "id": 70,
+ "paths": [
+ "M804.571 531.429v181.714c0 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.429c22.857 0 45.714 4.571 66.857 14.286 5.143 2.286 9.143 7.429 10.286 13.143 1.143 6.286-0.571 12-5.143 16.571l-28 28c-3.429 3.429-8.571 5.714-13.143 5.714-1.714 0-3.429-0.571-5.143-1.143-8.571-2.286-17.143-3.429-25.714-3.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.429v-145.143c0-4.571 1.714-9.143 5.143-12.571l36.571-36.571c4-4 8.571-5.714 13.143-5.714 2.286 0 4.571 0.571 6.857 1.714 6.857 2.857 11.429 9.143 11.429 16.571zM936.571 252l-465.143 465.143c-18.286 18.286-46.857 18.286-65.143 0l-245.714-245.714c-18.286-18.286-18.286-46.857 0-65.143l62.857-62.857c18.286-18.286 46.857-18.286 65.143 0l150.286 150.286 369.714-369.714c18.286-18.286 46.857-18.286 65.143 0l62.857 62.857c18.286 18.286 18.286 46.857 0 65.143z"
+ ],
+ "width": 954.8799999999999,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "check-square-o"
+ ],
+ "defaultCode": 61510,
+ "grid": 14
+ },
+ {
+ "id": 71,
+ "paths": [
+ "M1024 512c0 9.714-4 18.857-10.857 25.714l-146.286 146.286c-6.857 6.857-16 10.857-25.714 10.857-20 0-36.571-16.571-36.571-36.571v-73.143h-219.429v219.429h73.143c20 0 36.571 16.571 36.571 36.571 0 9.714-4 18.857-10.857 25.714l-146.286 146.286c-6.857 6.857-16 10.857-25.714 10.857s-18.857-4-25.714-10.857l-146.286-146.286c-6.857-6.857-10.857-16-10.857-25.714 0-20 16.571-36.571 36.571-36.571h73.143v-219.429h-219.429v73.143c0 20-16.571 36.571-36.571 36.571-9.714 0-18.857-4-25.714-10.857l-146.286-146.286c-6.857-6.857-10.857-16-10.857-25.714s4-18.857 10.857-25.714l146.286-146.286c6.857-6.857 16-10.857 25.714-10.857 20 0 36.571 16.571 36.571 36.571v73.143h219.429v-219.429h-73.143c-20 0-36.571-16.571-36.571-36.571 0-9.714 4-18.857 10.857-25.714l146.286-146.286c6.857-6.857 16-10.857 25.714-10.857s18.857 4 25.714 10.857l146.286 146.286c6.857 6.857 10.857 16 10.857 25.714 0 20-16.571 36.571-36.571 36.571h-73.143v219.429h219.429v-73.143c0-20 16.571-36.571 36.571-36.571 9.714 0 18.857 4 25.714 10.857l146.286 146.286c6.857 6.857 10.857 16 10.857 25.714z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrows"
+ ],
+ "defaultCode": 61511,
+ "grid": 14
+ },
+ {
+ "id": 72,
+ "paths": [
+ "M559.429 80.571c14.286-14.286 25.714-9.143 25.714 10.857v841.143c0 20-11.429 25.143-25.714 10.857l-405.714-405.714c-3.429-3.429-5.714-6.857-7.429-10.857v387.429c0 20-16.571 36.571-36.571 36.571h-73.143c-20 0-36.571-16.571-36.571-36.571v-804.571c0-20 16.571-36.571 36.571-36.571h73.143c20 0 36.571 16.571 36.571 36.571v387.429c1.714-4 4-7.429 7.429-10.857z"
+ ],
+ "width": 585.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "step-backward"
+ ],
+ "defaultCode": 61512,
+ "grid": 14
+ },
+ {
+ "id": 73,
+ "paths": [
+ "M998.286 80.571c14.286-14.286 25.714-9.143 25.714 10.857v841.143c0 20-11.429 25.143-25.714 10.857l-405.714-405.714c-3.429-3.429-5.714-6.857-7.429-10.857v405.714c0 20-11.429 25.143-25.714 10.857l-405.714-405.714c-3.429-3.429-5.714-6.857-7.429-10.857v387.429c0 20-16.571 36.571-36.571 36.571h-73.143c-20 0-36.571-16.571-36.571-36.571v-804.571c0-20 16.571-36.571 36.571-36.571h73.143c20 0 36.571 16.571 36.571 36.571v387.429c1.714-4 4-7.429 7.429-10.857l405.714-405.714c14.286-14.286 25.714-9.143 25.714 10.857v405.714c1.714-4 4-7.429 7.429-10.857z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fast-backward"
+ ],
+ "defaultCode": 61513,
+ "grid": 14
+ },
+ {
+ "id": 74,
+ "paths": [
+ "M925.143 80.571c14.286-14.286 25.714-9.143 25.714 10.857v841.143c0 20-11.429 25.143-25.714 10.857l-405.714-405.714c-3.429-3.429-5.714-6.857-7.429-10.857v405.714c0 20-11.429 25.143-25.714 10.857l-405.714-405.714c-14.286-14.286-14.286-37.143 0-51.429l405.714-405.714c14.286-14.286 25.714-9.143 25.714 10.857v405.714c1.714-4 4-7.429 7.429-10.857z"
+ ],
+ "width": 1017.1245714285715,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "backward"
+ ],
+ "defaultCode": 61514,
+ "grid": 14
+ },
+ {
+ "id": 75,
+ "paths": [
+ "M790.857 529.714l-758.857 421.714c-17.714 9.714-32 1.143-32-18.857v-841.143c0-20 14.286-28.571 32-18.857l758.857 421.714c17.714 9.714 17.714 25.714 0 35.429z"
+ ],
+ "width": 808.5942857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "play"
+ ],
+ "defaultCode": 61515,
+ "grid": 14
+ },
+ {
+ "id": 76,
+ "paths": [
+ "M877.714 109.714v804.571c0 20-16.571 36.571-36.571 36.571h-292.571c-20 0-36.571-16.571-36.571-36.571v-804.571c0-20 16.571-36.571 36.571-36.571h292.571c20 0 36.571 16.571 36.571 36.571zM365.714 109.714v804.571c0 20-16.571 36.571-36.571 36.571h-292.571c-20 0-36.571-16.571-36.571-36.571v-804.571c0-20 16.571-36.571 36.571-36.571h292.571c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pause"
+ ],
+ "defaultCode": 61516,
+ "grid": 14
+ },
+ {
+ "id": 77,
+ "paths": [
+ "M877.714 109.714v804.571c0 20-16.571 36.571-36.571 36.571h-804.571c-20 0-36.571-16.571-36.571-36.571v-804.571c0-20 16.571-36.571 36.571-36.571h804.571c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "stop"
+ ],
+ "defaultCode": 61517,
+ "grid": 14
+ },
+ {
+ "id": 78,
+ "paths": [
+ "M25.714 943.429c-14.286 14.286-25.714 9.143-25.714-10.857v-841.143c0-20 11.429-25.143 25.714-10.857l405.714 405.714c3.429 3.429 5.714 6.857 7.429 10.857v-405.714c0-20 11.429-25.143 25.714-10.857l405.714 405.714c14.286 14.286 14.286 37.143 0 51.429l-405.714 405.714c-14.286 14.286-25.714 9.143-25.714-10.857v-405.714c-1.714 4-4 7.429-7.429 10.857z"
+ ],
+ "width": 884.5897142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "forward"
+ ],
+ "defaultCode": 61518,
+ "grid": 14
+ },
+ {
+ "id": 79,
+ "paths": [
+ "M25.714 943.429c-14.286 14.286-25.714 9.143-25.714-10.857v-841.143c0-20 11.429-25.143 25.714-10.857l405.714 405.714c3.429 3.429 5.714 6.857 7.429 10.857v-405.714c0-20 11.429-25.143 25.714-10.857l405.714 405.714c3.429 3.429 5.714 6.857 7.429 10.857v-387.429c0-20 16.571-36.571 36.571-36.571h73.143c20 0 36.571 16.571 36.571 36.571v804.571c0 20-16.571 36.571-36.571 36.571h-73.143c-20 0-36.571-16.571-36.571-36.571v-387.429c-1.714 4-4 7.429-7.429 10.857l-405.714 405.714c-14.286 14.286-25.714 9.143-25.714-10.857v-405.714c-1.714 4-4 7.429-7.429 10.857z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fast-forward"
+ ],
+ "defaultCode": 61520,
+ "grid": 14
+ },
+ {
+ "id": 80,
+ "paths": [
+ "M25.714 943.429c-14.286 14.286-25.714 9.143-25.714-10.857v-841.143c0-20 11.429-25.143 25.714-10.857l405.714 405.714c3.429 3.429 5.714 6.857 7.429 10.857v-387.429c0-20 16.571-36.571 36.571-36.571h73.143c20 0 36.571 16.571 36.571 36.571v804.571c0 20-16.571 36.571-36.571 36.571h-73.143c-20 0-36.571-16.571-36.571-36.571v-387.429c-1.714 4-4 7.429-7.429 10.857z"
+ ],
+ "width": 585.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "step-forward"
+ ],
+ "defaultCode": 61521,
+ "grid": 14
+ },
+ {
+ "id": 81,
+ "paths": [
+ "M8 559.429l405.714-405.714c14.286-14.286 37.143-14.286 51.429 0l405.714 405.714c14.286 14.286 9.143 25.714-10.857 25.714h-841.143c-20 0-25.143-11.429-10.857-25.714zM841.714 877.714h-804.571c-20 0-36.571-16.571-36.571-36.571v-146.286c0-20 16.571-36.571 36.571-36.571h804.571c20 0 36.571 16.571 36.571 36.571v146.286c0 20-16.571 36.571-36.571 36.571z"
+ ],
+ "width": 878.8845714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "eject"
+ ],
+ "defaultCode": 61522,
+ "grid": 14
+ },
+ {
+ "id": 82,
+ "paths": [
+ "M669.143 172l-303.429 303.429 303.429 303.429c14.286 14.286 14.286 37.143 0 51.429l-94.857 94.857c-14.286 14.286-37.143 14.286-51.429 0l-424-424c-14.286-14.286-14.286-37.143 0-51.429l424-424c14.286-14.286 37.143-14.286 51.429 0l94.857 94.857c14.286 14.286 14.286 37.143 0 51.429z"
+ ],
+ "width": 768,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chevron-left"
+ ],
+ "defaultCode": 61523,
+ "grid": 14
+ },
+ {
+ "id": 83,
+ "paths": [
+ "M632.571 501.143l-424 424c-14.286 14.286-37.143 14.286-51.429 0l-94.857-94.857c-14.286-14.286-14.286-37.143 0-51.429l303.429-303.429-303.429-303.429c-14.286-14.286-14.286-37.143 0-51.429l94.857-94.857c14.286-14.286 37.143-14.286 51.429 0l424 424c14.286 14.286 14.286 37.143 0 51.429z"
+ ],
+ "width": 694.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chevron-right"
+ ],
+ "defaultCode": 61524,
+ "grid": 14
+ },
+ {
+ "id": 84,
+ "paths": [
+ "M694.857 548.571v-73.143c0-20-16.571-36.571-36.571-36.571h-146.286v-146.286c0-20-16.571-36.571-36.571-36.571h-73.143c-20 0-36.571 16.571-36.571 36.571v146.286h-146.286c-20 0-36.571 16.571-36.571 36.571v73.143c0 20 16.571 36.571 36.571 36.571h146.286v146.286c0 20 16.571 36.571 36.571 36.571h73.143c20 0 36.571-16.571 36.571-36.571v-146.286h146.286c20 0 36.571-16.571 36.571-36.571zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "plus-circle"
+ ],
+ "defaultCode": 61525,
+ "grid": 14
+ },
+ {
+ "id": 85,
+ "paths": [
+ "M694.857 548.571v-73.143c0-20-16.571-36.571-36.571-36.571h-438.857c-20 0-36.571 16.571-36.571 36.571v73.143c0 20 16.571 36.571 36.571 36.571h438.857c20 0 36.571-16.571 36.571-36.571zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "minus-circle"
+ ],
+ "defaultCode": 61526,
+ "grid": 14
+ },
+ {
+ "id": 86,
+ "paths": [
+ "M656.571 641.143c0-9.714-4-18.857-10.857-25.714l-103.429-103.429 103.429-103.429c6.857-6.857 10.857-16 10.857-25.714s-4-19.429-10.857-26.286l-51.429-51.429c-6.857-6.857-16.571-10.857-26.286-10.857s-18.857 4-25.714 10.857l-103.429 103.429-103.429-103.429c-6.857-6.857-16-10.857-25.714-10.857s-19.429 4-26.286 10.857l-51.429 51.429c-6.857 6.857-10.857 16.571-10.857 26.286s4 18.857 10.857 25.714l103.429 103.429-103.429 103.429c-6.857 6.857-10.857 16-10.857 25.714s4 19.429 10.857 26.286l51.429 51.429c6.857 6.857 16.571 10.857 26.286 10.857s18.857-4 25.714-10.857l103.429-103.429 103.429 103.429c6.857 6.857 16 10.857 25.714 10.857s19.429-4 26.286-10.857l51.429-51.429c6.857-6.857 10.857-16.571 10.857-26.286zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "times-circle"
+ ],
+ "defaultCode": 61527,
+ "grid": 14
+ },
+ {
+ "id": 87,
+ "paths": [
+ "M733.714 419.429c0-9.714-3.429-19.429-10.286-26.286l-52-51.429c-6.857-6.857-16-10.857-25.714-10.857s-18.857 4-25.714 10.857l-233.143 232.571-129.143-129.143c-6.857-6.857-16-10.857-25.714-10.857s-18.857 4-25.714 10.857l-52 51.429c-6.857 6.857-10.286 16.571-10.286 26.286s3.429 18.857 10.286 25.714l206.857 206.857c6.857 6.857 16.571 10.857 25.714 10.857 9.714 0 19.429-4 26.286-10.857l310.286-310.286c6.857-6.857 10.286-16 10.286-25.714zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "check-circle"
+ ],
+ "defaultCode": 61528,
+ "grid": 14
+ },
+ {
+ "id": 88,
+ "paths": [
+ "M512 786.286v-109.714c0-10.286-8-18.286-18.286-18.286h-109.714c-10.286 0-18.286 8-18.286 18.286v109.714c0 10.286 8 18.286 18.286 18.286h109.714c10.286 0 18.286-8 18.286-18.286zM658.286 402.286c0-104.571-109.714-182.857-208-182.857-93.143 0-162.857 40-212 121.714-5.143 8-2.857 18.286 4.571 24l75.429 57.143c2.857 2.286 6.857 3.429 10.857 3.429 5.143 0 10.857-2.286 14.286-6.857 26.857-34.286 38.286-44.571 49.143-52.571 9.714-6.857 28.571-13.714 49.143-13.714 36.571 0 70.286 23.429 70.286 48.571 0 29.714-15.429 44.571-50.286 60.571-40.571 18.286-96 65.714-96 121.143v20.571c0 10.286 8 18.286 18.286 18.286h109.714c10.286 0 18.286-8 18.286-18.286v0c0-13.143 16.571-41.143 43.429-56.571 43.429-24.571 102.857-57.714 102.857-144.571zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "question-circle"
+ ],
+ "defaultCode": 61529,
+ "grid": 14
+ },
+ {
+ "id": 89,
+ "paths": [
+ "M585.143 786.286v-91.429c0-10.286-8-18.286-18.286-18.286h-54.857v-292.571c0-10.286-8-18.286-18.286-18.286h-182.857c-10.286 0-18.286 8-18.286 18.286v91.429c0 10.286 8 18.286 18.286 18.286h54.857v182.857h-54.857c-10.286 0-18.286 8-18.286 18.286v91.429c0 10.286 8 18.286 18.286 18.286h256c10.286 0 18.286-8 18.286-18.286zM512 274.286v-91.429c0-10.286-8-18.286-18.286-18.286h-109.714c-10.286 0-18.286 8-18.286 18.286v91.429c0 10.286 8 18.286 18.286 18.286h109.714c10.286 0 18.286-8 18.286-18.286zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "info-circle"
+ ],
+ "defaultCode": 61530,
+ "grid": 14
+ },
+ {
+ "id": 90,
+ "paths": [
+ "M684 585.143h-62.286c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h62.286c-24.571-82.286-89.714-147.429-172-172v62.286c0 20-16.571 36.571-36.571 36.571h-73.143c-20 0-36.571-16.571-36.571-36.571v-62.286c-82.286 24.571-147.429 89.714-172 172h62.286c20 0 36.571 16.571 36.571 36.571v73.143c0 20-16.571 36.571-36.571 36.571h-62.286c24.571 82.286 89.714 147.429 172 172v-62.286c0-20 16.571-36.571 36.571-36.571h73.143c20 0 36.571 16.571 36.571 36.571v62.286c82.286-24.571 147.429-89.714 172-172zM877.714 475.429v73.143c0 20-16.571 36.571-36.571 36.571h-81.714c-28 122.857-124.571 219.429-247.429 247.429v81.714c0 20-16.571 36.571-36.571 36.571h-73.143c-20 0-36.571-16.571-36.571-36.571v-81.714c-122.857-28-219.429-124.571-247.429-247.429h-81.714c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h81.714c28-122.857 124.571-219.429 247.429-247.429v-81.714c0-20 16.571-36.571 36.571-36.571h73.143c20 0 36.571 16.571 36.571 36.571v81.714c122.857 28 219.429 124.571 247.429 247.429h81.714c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "crosshairs"
+ ],
+ "defaultCode": 61531,
+ "grid": 14
+ },
+ {
+ "id": 91,
+ "paths": [
+ "M626.857 616.571l-83.429 83.429c-7.429 7.429-18.857 7.429-26.286 0l-78.286-78.286-78.286 78.286c-7.429 7.429-18.857 7.429-26.286 0l-83.429-83.429c-7.429-7.429-7.429-18.857 0-26.286l78.286-78.286-78.286-78.286c-7.429-7.429-7.429-18.857 0-26.286l83.429-83.429c7.429-7.429 18.857-7.429 26.286 0l78.286 78.286 78.286-78.286c7.429-7.429 18.857-7.429 26.286 0l83.429 83.429c7.429 7.429 7.429 18.857 0 26.286l-78.286 78.286 78.286 78.286c7.429 7.429 7.429 18.857 0 26.286zM749.714 512c0-171.429-139.429-310.857-310.857-310.857s-310.857 139.429-310.857 310.857 139.429 310.857 310.857 310.857 310.857-139.429 310.857-310.857zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "times-circle-o"
+ ],
+ "defaultCode": 61532,
+ "grid": 14
+ },
+ {
+ "id": 92,
+ "paths": [
+ "M669.143 464.571l-241.143 241.143c-14.286 14.286-37.143 14.286-51.429 0l-168-168c-14.286-14.286-14.286-37.143 0-51.429l58.286-58.286c14.286-14.286 37.143-14.286 51.429 0l84 84 157.143-157.143c14.286-14.286 37.143-14.286 51.429 0l58.286 58.286c14.286 14.286 14.286 37.143 0 51.429zM749.714 512c0-171.429-139.429-310.857-310.857-310.857s-310.857 139.429-310.857 310.857 139.429 310.857 310.857 310.857 310.857-139.429 310.857-310.857zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "check-circle-o"
+ ],
+ "defaultCode": 61533,
+ "grid": 14
+ },
+ {
+ "id": 93,
+ "paths": [
+ "M749.714 510.286c0-62.286-18.286-120-49.714-168.571l-430.857 430.286c49.143 32 107.429 50.857 169.714 50.857 171.429 0 310.857-140 310.857-312.571zM178.857 681.143l431.429-430.857c-49.143-33.143-108-52-171.429-52-171.429 0-310.857 140-310.857 312 0 63.429 18.857 121.714 50.857 170.857zM877.714 510.286c0 243.429-196.571 440.571-438.857 440.571s-438.857-197.143-438.857-440.571c0-242.857 196.571-440 438.857-440s438.857 197.143 438.857 440z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "ban"
+ ],
+ "defaultCode": 61534,
+ "grid": 14
+ },
+ {
+ "id": 94,
+ "paths": [
+ "M877.714 512v73.143c0 38.857-25.714 73.143-66.857 73.143h-402.286l167.429 168c13.714 13.143 21.714 32 21.714 51.429s-8 38.286-21.714 51.429l-42.857 43.429c-13.143 13.143-32 21.143-51.429 21.143s-38.286-8-52-21.143l-372-372.571c-13.143-13.143-21.143-32-21.143-51.429s8-38.286 21.143-52l372-371.429c13.714-13.714 32.571-21.714 52-21.714s37.714 8 51.429 21.714l42.857 42.286c13.714 13.714 21.714 32.571 21.714 52s-8 38.286-21.714 52l-167.429 167.429h402.286c41.143 0 66.857 34.286 66.857 73.143z"
+ ],
+ "width": 914.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow-left"
+ ],
+ "defaultCode": 61536,
+ "grid": 14
+ },
+ {
+ "id": 95,
+ "paths": [
+ "M841.143 548.571c0 19.429-7.429 38.286-21.143 52l-372 372c-13.714 13.143-32.571 21.143-52 21.143s-37.714-8-51.429-21.143l-42.857-42.857c-13.714-13.714-21.714-32.571-21.714-52s8-38.286 21.714-52l167.429-167.429h-402.286c-41.143 0-66.857-34.286-66.857-73.143v-73.143c0-38.857 25.714-73.143 66.857-73.143h402.286l-167.429-168c-13.714-13.143-21.714-32-21.714-51.429s8-38.286 21.714-51.429l42.857-42.857c13.714-13.714 32-21.714 51.429-21.714s38.286 8 52 21.714l372 372c13.714 13.143 21.143 32 21.143 51.429z"
+ ],
+ "width": 841.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow-right"
+ ],
+ "defaultCode": 61537,
+ "grid": 14
+ },
+ {
+ "id": 96,
+ "paths": [
+ "M920.571 554.857c0 19.429-8 37.714-21.143 51.429l-42.857 42.857c-13.714 13.714-32.571 21.714-52 21.714s-38.286-8-51.429-21.714l-168-167.429v402.286c0 41.143-34.286 66.857-73.143 66.857h-73.143c-38.857 0-73.143-25.714-73.143-66.857v-402.286l-168 167.429c-13.143 13.714-32 21.714-51.429 21.714s-38.286-8-51.429-21.714l-42.857-42.857c-13.714-13.714-21.714-32-21.714-51.429s8-38.286 21.714-52l372-372c13.143-13.714 32-21.143 51.429-21.143s38.286 7.429 52 21.143l372 372c13.143 13.714 21.143 32.571 21.143 52z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow-up"
+ ],
+ "defaultCode": 61538,
+ "grid": 14
+ },
+ {
+ "id": 97,
+ "paths": [
+ "M920.571 475.429c0 19.429-8 38.286-21.143 51.429l-372 372.571c-13.714 13.143-32.571 21.143-52 21.143s-38.286-8-51.429-21.143l-372-372.571c-13.714-13.143-21.714-32-21.714-51.429s8-38.286 21.714-52l42.286-42.857c13.714-13.143 32.571-21.143 52-21.143s38.286 8 51.429 21.143l168 168v-402.286c0-40 33.143-73.143 73.143-73.143h73.143c40 0 73.143 33.143 73.143 73.143v402.286l168-168c13.143-13.143 32-21.143 51.429-21.143s38.286 8 52 21.143l42.857 42.857c13.143 13.714 21.143 32.571 21.143 52z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow-down"
+ ],
+ "defaultCode": 61539,
+ "grid": 14
+ },
+ {
+ "id": 98,
+ "paths": [
+ "M1024 365.714c0 9.714-4 18.857-10.857 25.714l-292.571 292.571c-6.857 6.857-16 10.857-25.714 10.857-20 0-36.571-16.571-36.571-36.571v-146.286h-128c-246.286 0-408 47.429-408 320 0 23.429 1.143 46.857 2.857 70.286 0.571 9.143 2.857 19.429 2.857 28.571 0 10.857-6.857 20-18.286 20-8 0-12-4-16-9.714-8.571-12-14.857-30.286-21.143-43.429-32.571-73.143-72.571-177.714-72.571-257.714 0-64 6.286-129.714 30.286-190.286 79.429-197.143 312.571-230.286 500-230.286h128v-146.286c0-20 16.571-36.571 36.571-36.571 9.714 0 18.857 4 25.714 10.857l292.571 292.571c6.857 6.857 10.857 16 10.857 25.714z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mail-forward",
+ "share"
+ ],
+ "defaultCode": 61540,
+ "grid": 14
+ },
+ {
+ "id": 99,
+ "paths": [
+ "M431.429 603.429c0 4.571-2.286 9.714-5.714 13.143l-189.714 189.714 82.286 82.286c6.857 6.857 10.857 16 10.857 25.714 0 20-16.571 36.571-36.571 36.571h-256c-20 0-36.571-16.571-36.571-36.571v-256c0-20 16.571-36.571 36.571-36.571 9.714 0 18.857 4 25.714 10.857l82.286 82.286 189.714-189.714c3.429-3.429 8.571-5.714 13.143-5.714s9.714 2.286 13.143 5.714l65.143 65.143c3.429 3.429 5.714 8.571 5.714 13.143zM877.714 109.714v256c0 20-16.571 36.571-36.571 36.571-9.714 0-18.857-4-25.714-10.857l-82.286-82.286-189.714 189.714c-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.143l189.714-189.714-82.286-82.286c-6.857-6.857-10.857-16-10.857-25.714 0-20 16.571-36.571 36.571-36.571h256c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "expand"
+ ],
+ "defaultCode": 61541,
+ "grid": 14
+ },
+ {
+ "id": 100,
+ "paths": [
+ "M438.857 548.571v256c0 20-16.571 36.571-36.571 36.571-9.714 0-18.857-4-25.714-10.857l-82.286-82.286-189.714 189.714c-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.143l189.714-189.714-82.286-82.286c-6.857-6.857-10.857-16-10.857-25.714 0-20 16.571-36.571 36.571-36.571h256c20 0 36.571 16.571 36.571 36.571zM870.286 164.571c0 4.571-2.286 9.714-5.714 13.143l-189.714 189.714 82.286 82.286c6.857 6.857 10.857 16 10.857 25.714 0 20-16.571 36.571-36.571 36.571h-256c-20 0-36.571-16.571-36.571-36.571v-256c0-20 16.571-36.571 36.571-36.571 9.714 0 18.857 4 25.714 10.857l82.286 82.286 189.714-189.714c3.429-3.429 8.571-5.714 13.143-5.714s9.714 2.286 13.143 5.714l65.143 65.143c3.429 3.429 5.714 8.571 5.714 13.143z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "compress"
+ ],
+ "defaultCode": 61542,
+ "grid": 14
+ },
+ {
+ "id": 101,
+ "paths": [
+ "M438.857 73.143c242.286 0 438.857 196.571 438.857 438.857s-196.571 438.857-438.857 438.857-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857zM512 785.714v-108.571c0-10.286-8-18.857-17.714-18.857h-109.714c-10.286 0-18.857 8.571-18.857 18.857v108.571c0 10.286 8.571 18.857 18.857 18.857h109.714c9.714 0 17.714-8.571 17.714-18.857zM510.857 589.143l10.286-354.857c0-4-1.714-8-5.714-10.286-3.429-2.857-8.571-4.571-13.714-4.571h-125.714c-5.143 0-10.286 1.714-13.714 4.571-4 2.286-5.714 6.286-5.714 10.286l9.714 354.857c0 8 8.571 14.286 19.429 14.286h105.714c10.286 0 18.857-6.286 19.429-14.286z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "exclamation-circle"
+ ],
+ "defaultCode": 61546,
+ "grid": 14
+ },
+ {
+ "id": 102,
+ "paths": [
+ "M530.286 774.857v-409.143h-182.857v409.143c0 20 16.571 29.714 36.571 29.714h109.714c20 0 36.571-9.714 36.571-29.714zM269.714 292.571h111.429l-72-92c-6.286-7.429-20-17.714-39.429-17.714-30.286 0-54.857 24.571-54.857 54.857s24.571 54.857 54.857 54.857zM662.857 237.714c0-30.286-24.571-54.857-54.857-54.857-19.429 0-33.143 10.286-39.429 17.714l-71.429 92h110.857c30.286 0 54.857-24.571 54.857-54.857zM877.714 384v182.857c0 10.286-8 18.286-18.286 18.286h-54.857v237.714c0 30.286-24.571 54.857-54.857 54.857h-621.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-54.857c-10.286 0-18.286-8-18.286-18.286v-182.857c0-10.286 8-18.286 18.286-18.286h251.429c-70.857 0-128-57.143-128-128s57.143-128 128-128c38.286 0 73.714 16 96 44l73.143 94.286 73.143-94.286c22.286-28 57.714-44 96-44 70.857 0 128 57.143 128 128s-57.143 128-128 128h251.429c10.286 0 18.286 8 18.286 18.286z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "gift"
+ ],
+ "defaultCode": 61547,
+ "grid": 14
+ },
+ {
+ "id": 103,
+ "paths": [
+ "M731.429 402.286c0-20-16.571-36.571-36.571-36.571-202.286 0-332.571 84.571-464.571 230.286-6.857 7.429-10.857 15.429-10.857 25.714 0 20 16.571 36.571 36.571 36.571 10.286 0 18.286-4 25.714-10.857 28-25.143 53.143-52.571 80.571-78.286 103.429-93.143 192-130.286 332.571-130.286 20 0 36.571-16.571 36.571-36.571zM1024 289.143c0 36.571-4 73.714-11.429 110.286-36.571 177.714-150.857 293.143-309.714 372-77.143 38.857-163.429 61.714-250.286 61.714-54.857 0-111.429-9.143-163.429-26.857-27.429-9.143-82.286-45.143-105.143-45.143-28.571 0-62.857 116.571-112.571 116.571-36 0-46.857-17.714-62.286-44-5.143-9.714-9.143-13.143-9.143-25.143 0-59.429 113.143-105.714 113.143-138.857 0-5.143-14.857-35.429-17.143-46.857-3.429-19.429-5.143-39.429-5.143-59.429 0-181.714 144.571-311.429 306.857-365.143 117.143-38.857 366.286 6.286 445.714-69.143 31.429-29.143 46.857-56 94.857-56 64.571 0 85.714 167.429 85.714 216z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "leaf"
+ ],
+ "defaultCode": 61548,
+ "grid": 14
+ },
+ {
+ "id": 104,
+ "paths": [
+ "M804.571 969.143v36.571c0 9.714-8.571 18.286-18.286 18.286h-768c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h768c9.714 0 18.286 8.571 18.286 18.286zM658.286 365.714c0 218.857-256 238.286-256 384 0 40 20 93.143 38.286 128l-2.286-0.571 0.571 0.571c-157.714-72.571-292.571-172.571-292.571-365.714 0-218.857 256-238.286 256-384 0-40-20-93.143-37.714-128l1.714 0.571-0.571-0.571c157.714 72.571 292.571 172.571 292.571 365.714z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fire"
+ ],
+ "defaultCode": 61549,
+ "grid": 14
+ },
+ {
+ "id": 105,
+ "paths": [
+ "M950.857 548.571c-54.286-84-128.571-156-217.714-201.714 22.857 38.857 34.857 83.429 34.857 128.571 0 141.143-114.857 256-256 256s-256-114.857-256-256c0-45.143 12-89.714 34.857-128.571-89.143 45.714-163.429 117.714-217.714 201.714 97.714 150.857 255.429 256 438.857 256s341.143-105.143 438.857-256zM539.429 329.143c0-14.857-12.571-27.429-27.429-27.429-95.429 0-173.714 78.286-173.714 173.714 0 14.857 12.571 27.429 27.429 27.429s27.429-12.571 27.429-27.429c0-65.143 53.714-118.857 118.857-118.857 14.857 0 27.429-12.571 27.429-27.429zM1024 548.571c0 14.286-4.571 27.429-11.429 39.429-105.143 173.143-297.714 289.714-500.571 289.714s-395.429-117.143-500.571-289.714c-6.857-12-11.429-25.143-11.429-39.429s4.571-27.429 11.429-39.429c105.143-172.571 297.714-289.714 500.571-289.714s395.429 117.143 500.571 289.714c6.857 12 11.429 25.143 11.429 39.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "eye"
+ ],
+ "defaultCode": 61550,
+ "grid": 14
+ },
+ {
+ "id": 106,
+ "paths": [
+ "M317.143 762.857l44.571-80.571c-66.286-48-105.714-125.143-105.714-206.857 0-45.143 12-89.714 34.857-128.571-89.143 45.714-163.429 117.714-217.714 201.714 59.429 92 143.429 169.143 244 214.286zM539.429 329.143c0-14.857-12.571-27.429-27.429-27.429-95.429 0-173.714 78.286-173.714 173.714 0 14.857 12.571 27.429 27.429 27.429s27.429-12.571 27.429-27.429c0-65.714 53.714-118.857 118.857-118.857 14.857 0 27.429-12.571 27.429-27.429zM746.857 220c0 1.143 0 4-0.571 5.143-120.571 215.429-240 432-360.571 647.429l-28 50.857c-3.429 5.714-9.714 9.143-16 9.143-10.286 0-64.571-33.143-76.571-40-5.714-3.429-9.143-9.143-9.143-16 0-9.143 19.429-40 25.143-49.714-110.857-50.286-204-136-269.714-238.857-7.429-11.429-11.429-25.143-11.429-39.429 0-13.714 4-28 11.429-39.429 113.143-173.714 289.714-289.714 500.571-289.714 34.286 0 69.143 3.429 102.857 9.714l30.857-55.429c3.429-5.714 9.143-9.143 16-9.143 10.286 0 64 33.143 76 40 5.714 3.429 9.143 9.143 9.143 15.429zM768 475.429c0 106.286-65.714 201.143-164.571 238.857l160-286.857c2.857 16 4.571 32 4.571 48zM1024 548.571c0 14.857-4 26.857-11.429 39.429-17.714 29.143-40 57.143-62.286 82.857-112 128.571-266.286 206.857-438.286 206.857l42.286-75.429c166.286-14.286 307.429-115.429 396.571-253.714-42.286-65.714-96.571-123.429-161.143-168l36-64c70.857 47.429 142.286 118.857 186.857 192.571 7.429 12.571 11.429 24.571 11.429 39.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "eye-slash"
+ ],
+ "defaultCode": 61552,
+ "grid": 14
+ },
+ {
+ "id": 107,
+ "paths": [
+ "M585.143 785.714v-108.571c0-10.286-8-18.857-18.286-18.857h-109.714c-10.286 0-18.286 8.571-18.286 18.857v108.571c0 10.286 8 18.857 18.286 18.857h109.714c10.286 0 18.286-8.571 18.286-18.857zM584 572l10.286-262.286c0-3.429-1.714-8-5.714-10.857-3.429-2.857-8.571-6.286-13.714-6.286h-125.714c-5.143 0-10.286 3.429-13.714 6.286-4 2.857-5.714 8.571-5.714 12l9.714 261.143c0 7.429 8.571 13.143 19.429 13.143h105.714c10.286 0 18.857-5.714 19.429-13.143zM576 38.286l438.857 804.571c12.571 22.286 12 49.714-1.143 72s-37.143 36-62.857 36h-877.714c-25.714 0-49.714-13.714-62.857-36s-13.714-49.714-1.143-72l438.857-804.571c12.571-23.429 37.143-38.286 64-38.286s51.429 14.857 64 38.286z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "exclamation-triangle",
+ "warning"
+ ],
+ "defaultCode": 61553,
+ "grid": 14
+ },
+ {
+ "id": 108,
+ "paths": [
+ "M786.286 91.429c36.571 36.571 0 128-54.857 182.857l-92 92 91.429 397.714c1.714 6.857-1.143 14.286-6.857 18.857l-73.143 54.857c-2.857 2.286-6.857 3.429-10.857 3.429-1.143 0-2.286 0-4-0.571-5.143-1.143-9.714-4-12-9.143l-159.429-290.286-148 148 30.286 110.857c1.714 6.286 0 12.571-4.571 17.714l-54.857 54.857c-3.429 3.429-8.571 5.143-13.143 5.143h-1.143c-5.714-0.571-10.286-2.857-13.714-7.429l-108-144-144-108c-4.571-2.857-6.857-8-7.429-13.143s1.714-10.286 5.143-14.286l54.857-55.429c3.429-3.429 8.571-5.143 13.143-5.143 1.714 0 3.429 0 4.571 0.571l110.857 30.286 148-148-290.286-159.429c-5.143-2.857-8.571-8-9.714-13.714-0.571-5.143 1.143-11.429 5.143-15.429l73.143-73.143c4.571-4 11.429-6.286 17.143-4.571l380 90.857 91.429-91.429c54.857-54.857 146.286-91.429 182.857-54.857z"
+ ],
+ "width": 822.272,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "plane"
+ ],
+ "defaultCode": 61554,
+ "grid": 14
+ },
+ {
+ "id": 109,
+ "paths": [
+ "M73.143 950.857h164.571v-164.571h-164.571v164.571zM274.286 950.857h182.857v-164.571h-182.857v164.571zM73.143 749.714h164.571v-182.857h-164.571v182.857zM274.286 749.714h182.857v-182.857h-182.857v182.857zM73.143 530.286h164.571v-164.571h-164.571v164.571zM493.714 950.857h182.857v-164.571h-182.857v164.571zM274.286 530.286h182.857v-164.571h-182.857v164.571zM713.143 950.857h164.571v-164.571h-164.571v164.571zM493.714 749.714h182.857v-182.857h-182.857v182.857zM292.571 256v-164.571c0-9.714-8.571-18.286-18.286-18.286h-36.571c-9.714 0-18.286 8.571-18.286 18.286v164.571c0 9.714 8.571 18.286 18.286 18.286h36.571c9.714 0 18.286-8.571 18.286-18.286zM713.143 749.714h164.571v-182.857h-164.571v182.857zM493.714 530.286h182.857v-164.571h-182.857v164.571zM713.143 530.286h164.571v-164.571h-164.571v164.571zM731.429 256v-164.571c0-9.714-8.571-18.286-18.286-18.286h-36.571c-9.714 0-18.286 8.571-18.286 18.286v164.571c0 9.714 8.571 18.286 18.286 18.286h36.571c9.714 0 18.286-8.571 18.286-18.286zM950.857 219.429v731.429c0 40-33.143 73.143-73.143 73.143h-804.571c-40 0-73.143-33.143-73.143-73.143v-731.429c0-40 33.143-73.143 73.143-73.143h73.143v-54.857c0-50.286 41.143-91.429 91.429-91.429h36.571c50.286 0 91.429 41.143 91.429 91.429v54.857h219.429v-54.857c0-50.286 41.143-91.429 91.429-91.429h36.571c50.286 0 91.429 41.143 91.429 91.429v54.857h73.143c40 0 73.143 33.143 73.143 73.143z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "calendar"
+ ],
+ "defaultCode": 61555,
+ "grid": 14
+ },
+ {
+ "id": 110,
+ "paths": [
+ "M380.571 274.857c-32 49.143-55.429 102.286-78.286 156-33.143-69.143-69.714-138.286-156-138.286h-128c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h128c101.714 0 176.571 47.429 234.286 128.571zM1024 731.429c0 4.571-1.714 9.714-5.143 13.143l-182.857 182.857c-3.429 3.429-8.571 5.143-13.143 5.143-9.714 0-18.286-8.571-18.286-18.286v-109.714c-169.714 0-274.286 20-380-128.571 31.429-49.143 54.857-102.286 77.714-156 33.143 69.143 69.714 138.286 156 138.286h146.286v-109.714c0-10.286 8-18.286 18.286-18.286 5.143 0 9.714 2.286 13.714 5.714l182.286 182.286c3.429 3.429 5.143 8.571 5.143 13.143zM1024 219.429c0 4.571-1.714 9.714-5.143 13.143l-182.857 182.857c-3.429 3.429-8.571 5.143-13.143 5.143-9.714 0-18.286-8-18.286-18.286v-109.714h-146.286c-76 0-112 52-144 113.714-16.571 32-30.857 65.143-44.571 97.714-63.429 147.429-137.714 300.571-323.429 300.571h-128c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h128c76 0 112-52 144-113.714 16.571-32 30.857-65.143 44.571-97.714 63.429-147.429 137.714-300.571 323.429-300.571h146.286v-109.714c0-10.286 8-18.286 18.286-18.286 5.143 0 9.714 2.286 13.714 5.714l182.286 182.286c3.429 3.429 5.143 8.571 5.143 13.143z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "random"
+ ],
+ "defaultCode": 61556,
+ "grid": 14
+ },
+ {
+ "id": 111,
+ "paths": [
+ "M1024 512c0 202.286-229.143 365.714-512 365.714-28 0-56-1.714-82.857-4.571-74.857 66.286-164 113.143-262.857 138.286-20.571 5.714-42.857 9.714-65.143 12.571-12.571 1.143-24.571-8-27.429-21.714v-0.571c-2.857-14.286 6.857-22.857 15.429-33.143 36-40.571 77.143-74.857 104-170.286-117.714-66.857-193.143-170.286-193.143-286.286 0-201.714 229.143-365.714 512-365.714s512 163.429 512 365.714z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "comment"
+ ],
+ "defaultCode": 61557,
+ "grid": 14
+ },
+ {
+ "id": 112,
+ "paths": [
+ "M877.714 475.429v73.143c0 233.143-184.571 402.286-438.857 402.286s-438.857-169.143-438.857-402.286v-73.143c0-20 16.571-36.571 36.571-36.571h219.429c20 0 36.571 16.571 36.571 36.571v73.143c0 104.571 121.714 109.714 146.286 109.714s146.286-5.143 146.286-109.714v-73.143c0-20 16.571-36.571 36.571-36.571h219.429c20 0 36.571 16.571 36.571 36.571zM292.571 109.714v219.429c0 20-16.571 36.571-36.571 36.571h-219.429c-20 0-36.571-16.571-36.571-36.571v-219.429c0-20 16.571-36.571 36.571-36.571h219.429c20 0 36.571 16.571 36.571 36.571zM877.714 109.714v219.429c0 20-16.571 36.571-36.571 36.571h-219.429c-20 0-36.571-16.571-36.571-36.571v-219.429c0-20 16.571-36.571 36.571-36.571h219.429c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "magnet"
+ ],
+ "defaultCode": 61558,
+ "grid": 14
+ },
+ {
+ "id": 113,
+ "paths": [
+ "M961.714 760.571l-94.857 94.286c-14.286 14.286-37.143 14.286-51.429 0l-303.429-303.429-303.429 303.429c-14.286 14.286-37.143 14.286-51.429 0l-94.857-94.286c-14.286-14.286-14.286-37.714 0-52l424-423.429c14.286-14.286 37.143-14.286 51.429 0l424 423.429c14.286 14.286 14.286 37.714 0 52z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chevron-up"
+ ],
+ "defaultCode": 61559,
+ "grid": 14
+ },
+ {
+ "id": 114,
+ "paths": [
+ "M961.714 461.714l-424 423.429c-14.286 14.286-37.143 14.286-51.429 0l-424-423.429c-14.286-14.286-14.286-37.714 0-52l94.857-94.286c14.286-14.286 37.143-14.286 51.429 0l303.429 303.429 303.429-303.429c14.286-14.286 37.143-14.286 51.429 0l94.857 94.286c14.286 14.286 14.286 37.714 0 52z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chevron-down"
+ ],
+ "defaultCode": 61560,
+ "grid": 14
+ },
+ {
+ "id": 115,
+ "paths": [
+ "M731.429 859.429c0 9.714-8.571 18.286-18.286 18.286h-548.571c-21.143 0-18.286-22.286-18.286-36.571v-329.143h-109.714c-20 0-36.571-16.571-36.571-36.571 0-8.571 2.857-17.143 8.571-23.429l182.857-219.429c6.857-8 17.143-12.571 28-12.571s21.143 4.571 28 12.571l182.857 219.429c5.714 6.286 8.571 14.857 8.571 23.429 0 20-16.571 36.571-36.571 36.571h-109.714v219.429h329.143c5.143 0 10.857 2.286 14.286 6.286l91.429 109.714c2.286 3.429 4 8 4 12zM1097.143 621.714c0 8.571-2.857 17.143-8.571 23.429l-182.857 219.429c-6.857 8-17.143 13.143-28 13.143s-21.143-5.143-28-13.143l-182.857-219.429c-5.714-6.286-8.571-14.857-8.571-23.429 0-20 16.571-36.571 36.571-36.571h109.714v-219.429h-329.143c-5.143 0-10.857-2.286-14.286-6.857l-91.429-109.714c-2.286-2.857-4-7.429-4-11.429 0-9.714 8.571-18.286 18.286-18.286h548.571c21.143 0 18.286 22.286 18.286 36.571v329.143h109.714c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "retweet"
+ ],
+ "defaultCode": 61561,
+ "grid": 14
+ },
+ {
+ "id": 116,
+ "paths": [
+ "M365.714 877.714c0 40-33.143 73.143-73.143 73.143s-73.143-33.143-73.143-73.143 33.143-73.143 73.143-73.143 73.143 33.143 73.143 73.143zM877.714 877.714c0 40-33.143 73.143-73.143 73.143s-73.143-33.143-73.143-73.143 33.143-73.143 73.143-73.143 73.143 33.143 73.143 73.143zM950.857 256v292.571c0 18.286-14.286 34.286-32.571 36.571l-596.571 69.714c2.857 13.143 7.429 26.286 7.429 40 0 13.143-8 25.143-13.714 36.571h525.714c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571h-585.143c-20 0-36.571-16.571-36.571-36.571 0-17.714 25.714-60.571 34.857-78.286l-101.143-470.286h-116.571c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571h146.286c38.286 0 39.429 45.714 45.143 73.143h686.286c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "shopping-cart"
+ ],
+ "defaultCode": 61562,
+ "grid": 14
+ },
+ {
+ "id": 117,
+ "paths": [
+ "M950.857 347.429v402.286c0 70.286-57.714 128-128 128h-694.857c-70.286 0-128-57.714-128-128v-548.571c0-70.286 57.714-128 128-128h182.857c70.286 0 128 57.714 128 128v18.286h384c70.286 0 128 57.714 128 128z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "folder"
+ ],
+ "defaultCode": 61563,
+ "grid": 14
+ },
+ {
+ "id": 118,
+ "paths": [
+ "M1073.714 544c0 13.714-8.571 27.429-17.714 37.714l-192 226.286c-33.143 38.857-100.571 69.714-150.857 69.714h-621.714c-20.571 0-49.714-6.286-49.714-32 0-13.714 8.571-27.429 17.714-37.714l192-226.286c33.143-38.857 100.571-69.714 150.857-69.714h621.714c20.571 0 49.714 6.286 49.714 32zM877.714 347.429v91.429h-475.429c-71.429 0-160 40.571-206.286 95.429l-195.429 229.714c0-4.571-0.571-9.714-0.571-14.286v-548.571c0-70.286 57.714-128 128-128h182.857c70.286 0 128 57.714 128 128v18.286h310.857c70.286 0 128 57.714 128 128z"
+ ],
+ "width": 1073.7371428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "folder-open"
+ ],
+ "defaultCode": 61564,
+ "grid": 14
+ },
+ {
+ "id": 119,
+ "paths": [
+ "M402.286 182.857c0 20-16.571 36.571-36.571 36.571h-73.143v585.143h73.143c20 0 36.571 16.571 36.571 36.571 0 9.714-4 18.857-10.857 25.714l-146.286 146.286c-6.857 6.857-16 10.857-25.714 10.857s-18.857-4-25.714-10.857l-146.286-146.286c-6.857-6.857-10.857-16-10.857-25.714 0-20 16.571-36.571 36.571-36.571h73.143v-585.143h-73.143c-20 0-36.571-16.571-36.571-36.571 0-9.714 4-18.857 10.857-25.714l146.286-146.286c6.857-6.857 16-10.857 25.714-10.857s18.857 4 25.714 10.857l146.286 146.286c6.857 6.857 10.857 16 10.857 25.714z"
+ ],
+ "width": 438.85714285714283,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrows-v"
+ ],
+ "defaultCode": 61565,
+ "grid": 14
+ },
+ {
+ "id": 120,
+ "paths": [
+ "M1024 512c0 9.714-4 18.857-10.857 25.714l-146.286 146.286c-6.857 6.857-16 10.857-25.714 10.857-20 0-36.571-16.571-36.571-36.571v-73.143h-585.143v73.143c0 20-16.571 36.571-36.571 36.571-9.714 0-18.857-4-25.714-10.857l-146.286-146.286c-6.857-6.857-10.857-16-10.857-25.714s4-18.857 10.857-25.714l146.286-146.286c6.857-6.857 16-10.857 25.714-10.857 20 0 36.571 16.571 36.571 36.571v73.143h585.143v-73.143c0-20 16.571-36.571 36.571-36.571 9.714 0 18.857 4 25.714 10.857l146.286 146.286c6.857 6.857 10.857 16 10.857 25.714z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrows-h"
+ ],
+ "defaultCode": 61566,
+ "grid": 14
+ },
+ {
+ "id": 121,
+ "paths": [
+ "M365.714 512v292.571h-146.286v-292.571h146.286zM585.143 219.429v585.143h-146.286v-585.143h146.286zM1170.286 877.714v73.143h-1170.286v-877.714h73.143v804.571h1097.143zM804.571 365.714v438.857h-146.286v-438.857h146.286zM1024 146.286v658.286h-146.286v-658.286h146.286z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bar-chart",
+ "bar-chart-o"
+ ],
+ "defaultCode": 61568,
+ "grid": 14
+ },
+ {
+ "id": 122,
+ "paths": [
+ "M731.429 348.571c-21.714 9.714-44.571 16-69.143 19.429 25.143-14.857 44-38.857 53.143-66.857-23.429 13.714-49.143 24-76.571 29.143-21.714-23.429-53.143-37.714-87.429-37.714-66.286 0-120 53.714-120 120 0 9.143 0.571 18.857 2.857 27.429-100-5.143-188.571-52.571-248-125.714-10.286 17.714-16.571 38.857-16.571 60.571 0 41.714 19.429 78.286 52 100-20-0.571-38.857-6.286-57.143-14.857v1.143c0 58.286 44 106.857 98.857 117.714-10.286 2.857-18.286 4.571-29.143 4.571-7.429 0-14.857-1.143-22.286-2.286 15.429 47.429 59.429 82.286 112 83.429-41.143 32-92.571 51.429-149.143 51.429-9.714 0-19.429-0.571-28.571-1.714 53.143 33.714 116 53.714 184 53.714 220.571 0 341.714-182.857 341.714-341.714 0-5.143 0-10.286-0.571-15.429 23.429-16.571 44-37.714 60-62.286zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "twitter-square"
+ ],
+ "defaultCode": 61569,
+ "grid": 14
+ },
+ {
+ "id": 123,
+ "paths": [
+ "M713.143 73.143c90.857 0 164.571 73.714 164.571 164.571v548.571c0 90.857-73.714 164.571-164.571 164.571h-107.429v-340h113.714l17.143-132.571h-130.857v-84.571c0-38.286 10.286-64 65.714-64l69.714-0.571v-118.286c-12-1.714-53.714-5.143-101.714-5.143-101.143 0-170.857 61.714-170.857 174.857v97.714h-114.286v132.571h114.286v340h-304c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "facebook-square"
+ ],
+ "defaultCode": 61570,
+ "grid": 14
+ },
+ {
+ "id": 124,
+ "paths": [
+ "M530.286 475.429c0-10.286-8-18.286-18.286-18.286-50.286 0-91.429 41.143-91.429 91.429 0 10.286 8 18.286 18.286 18.286s18.286-8 18.286-18.286c0-30.286 24.571-54.857 54.857-54.857 10.286 0 18.286-8 18.286-18.286zM658.286 549.714c0 80.571-65.714 146.286-146.286 146.286s-146.286-65.714-146.286-146.286 65.714-146.286 146.286-146.286 146.286 65.714 146.286 146.286zM73.143 877.714h877.714v-73.143h-877.714v73.143zM731.429 549.714c0-121.143-98.286-219.429-219.429-219.429s-219.429 98.286-219.429 219.429 98.286 219.429 219.429 219.429 219.429-98.286 219.429-219.429zM146.286 182.857h219.429v-73.143h-219.429v73.143zM73.143 292.571h877.714v-146.286h-473.143l-36.571 73.143h-368v73.143zM1024 146.286v731.429c0 40.571-32.571 73.143-73.143 73.143h-877.714c-40.571 0-73.143-32.571-73.143-73.143v-731.429c0-40.571 32.571-73.143 73.143-73.143h877.714c40.571 0 73.143 32.571 73.143 73.143z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "camera-retro"
+ ],
+ "defaultCode": 61571,
+ "grid": 14
+ },
+ {
+ "id": 125,
+ "paths": [
+ "M475.429 292.571c0-60.571-49.143-109.714-109.714-109.714s-109.714 49.143-109.714 109.714c0 16.571 4 32.571 10.857 47.429-14.857-6.857-30.857-10.857-47.429-10.857-60.571 0-109.714 49.143-109.714 109.714s49.143 109.714 109.714 109.714 109.714-49.143 109.714-109.714c0-16.571-4-32.571-10.857-47.429 14.857 6.857 30.857 10.857 47.429 10.857 60.571 0 109.714-49.143 109.714-109.714zM961.714 694.857c0 13.143-52.571 65.714-65.714 65.714-14.857 0-61.143-53.714-73.143-65.714l-54.857 54.857 125.714 125.714c10.286 10.286 16 24.571 16 38.857 0 32-36.571 68.571-68.571 68.571-14.286 0-28.571-5.714-38.857-16l-383.429-383.429c-60 44.571-133.143 74.857-208.571 74.857-124.571 0-210.286-86.286-210.286-210.286 0-187.429 187.429-374.857 374.857-374.857 124 0 210.286 85.714 210.286 210.286 0 75.429-30.286 148.571-74.857 208.571l202.857 202.857 54.857-54.857c-12-12-65.714-58.286-65.714-73.143 0-13.143 52.571-65.714 65.714-65.714 4.571 0 9.714 2.286 13.143 5.714 21.143 21.143 180.571 171.429 180.571 188z"
+ ],
+ "width": 961.6822857142856,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "key"
+ ],
+ "defaultCode": 61572,
+ "grid": 14
+ },
+ {
+ "id": 126,
+ "paths": [
+ "M512 512c0-80.571-65.714-146.286-146.286-146.286s-146.286 65.714-146.286 146.286 65.714 146.286 146.286 146.286 146.286-65.714 146.286-146.286zM950.857 804.571c0-40-33.143-73.143-73.143-73.143s-73.143 33.143-73.143 73.143c0 40.571 33.143 73.143 73.143 73.143 40.571 0 73.143-33.143 73.143-73.143zM950.857 219.429c0-40-33.143-73.143-73.143-73.143s-73.143 33.143-73.143 73.143c0 40.571 33.143 73.143 73.143 73.143 40.571 0 73.143-33.143 73.143-73.143zM731.429 460v105.714c0 7.429-5.714 16-13.143 17.143l-88.571 13.714c-4.571 14.857-10.857 29.143-18.286 43.429 16 22.857 33.143 44 51.429 65.714 2.286 3.429 4 6.857 4 11.429 0 4-1.143 8-4 10.857-11.429 15.429-75.429 85.143-92 85.143-4.571 0-8.571-1.714-12-4l-65.714-51.429c-14.286 7.429-28.571 13.143-44 17.714-2.857 29.143-5.714 60.571-13.143 88.571-2.286 8-9.143 13.714-17.143 13.714h-106.286c-8 0-16-6.286-17.143-14.286l-13.143-87.429c-14.857-4.571-29.143-10.857-42.857-17.714l-67.429 50.857c-2.857 2.857-7.429 4-11.429 4-4.571 0-8.571-1.714-12-4.571-14.857-13.714-82.286-74.857-82.286-91.429 0-4 1.714-7.429 4-10.857 16.571-21.714 33.714-42.857 50.286-65.143-8-15.429-14.857-30.857-20-46.857l-86.857-13.714c-8-1.143-13.714-8.571-13.714-16.571v-105.714c0-7.429 5.714-16 13.143-17.143l88.571-13.714c4.571-14.857 10.857-29.143 18.286-43.429-16-22.857-33.143-44-51.429-65.714-2.286-3.429-4-7.429-4-11.429s1.143-8 4-11.429c11.429-15.429 75.429-84.571 92-84.571 4.571 0 8.571 1.714 12 4l65.714 51.429c14.286-7.429 28.571-13.143 44-18.286 2.857-28.571 5.714-60 13.143-88 2.286-8 9.143-13.714 17.143-13.714h106.286c8 0 16 6.286 17.143 14.286l13.143 87.429c14.857 4.571 29.143 10.857 42.857 17.714l67.429-50.857c3.429-2.857 7.429-4 11.429-4 4.571 0 8.571 1.714 12 4.571 14.857 13.714 82.286 75.429 82.286 91.429 0 4-1.714 7.429-4 10.857-16.571 22.286-33.714 42.857-49.714 65.143 7.429 15.429 14.286 30.857 19.429 46.857l86.857 13.143c8 1.714 13.714 9.143 13.714 17.143zM1097.143 764.571v80c0 8.571-73.714 16.571-85.143 17.714-4.571 10.857-10.286 20.571-17.143 29.714 5.143 11.429 29.143 68.571 29.143 78.857 0 1.714-0.571 2.857-2.286 4-6.857 4-68 40.571-70.857 40.571-7.429 0-50.286-57.143-56-65.714-5.714 0.571-11.429 1.143-17.143 1.143s-11.429-0.571-17.143-1.143c-5.714 8.571-48.571 65.714-56 65.714-2.857 0-64-36.571-70.857-40.571-1.714-1.143-2.286-2.857-2.286-4 0-9.714 24-67.429 29.143-78.857-6.857-9.143-12.571-18.857-17.143-29.714-11.429-1.143-85.143-9.143-85.143-17.714v-80c0-8.571 73.714-16.571 85.143-17.714 4.571-10.286 10.286-20.571 17.143-29.714-5.143-11.429-29.143-69.143-29.143-78.857 0-1.143 0.571-2.857 2.286-4 6.857-3.429 68-40 70.857-40 7.429 0 50.286 56.571 56 65.143 5.714-0.571 11.429-1.143 17.143-1.143s11.429 0.571 17.143 1.143c16-22.286 33.143-44.571 52.571-64l3.429-1.143c2.857 0 64 36 70.857 40 1.714 1.143 2.286 2.857 2.286 4 0 10.286-24 67.429-29.143 78.857 6.857 9.143 12.571 19.429 17.143 29.714 11.429 1.143 85.143 9.143 85.143 17.714zM1097.143 179.429v80c0 8.571-73.714 16.571-85.143 17.714-4.571 10.857-10.286 20.571-17.143 29.714 5.143 11.429 29.143 68.571 29.143 78.857 0 1.714-0.571 2.857-2.286 4-6.857 4-68 40.571-70.857 40.571-7.429 0-50.286-57.143-56-65.714-5.714 0.571-11.429 1.143-17.143 1.143s-11.429-0.571-17.143-1.143c-5.714 8.571-48.571 65.714-56 65.714-2.857 0-64-36.571-70.857-40.571-1.714-1.143-2.286-2.857-2.286-4 0-9.714 24-67.429 29.143-78.857-6.857-9.143-12.571-18.857-17.143-29.714-11.429-1.143-85.143-9.143-85.143-17.714v-80c0-8.571 73.714-16.571 85.143-17.714 4.571-10.286 10.286-20.571 17.143-29.714-5.143-11.429-29.143-69.143-29.143-78.857 0-1.143 0.571-2.857 2.286-4 6.857-3.429 68-40 70.857-40 7.429 0 50.286 56.571 56 65.143 5.714-0.571 11.429-1.143 17.143-1.143s11.429 0.571 17.143 1.143c16-22.286 33.143-44.571 52.571-64l3.429-1.143c2.857 0 64 36 70.857 40 1.714 1.143 2.286 2.857 2.286 4 0 10.286-24 67.429-29.143 78.857 6.857 9.143 12.571 19.429 17.143 29.714 11.429 1.143 85.143 9.143 85.143 17.714z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cogs",
+ "gears"
+ ],
+ "defaultCode": 61573,
+ "grid": 14
+ },
+ {
+ "id": 127,
+ "paths": [
+ "M804.571 438.857c0 161.714-180 292.571-402.286 292.571-34.857 0-68.571-3.429-100.571-9.143-47.429 33.714-101.143 58.286-158.857 73.143-15.429 4-32 6.857-49.143 9.143h-1.714c-8.571 0-16.571-6.857-18.286-16.571v0c-2.286-10.857 5.143-17.714 11.429-25.143 22.286-25.143 47.429-47.429 66.857-94.857-92.571-53.714-152-136.571-152-229.143 0-161.714 180-292.571 402.286-292.571s402.286 130.857 402.286 292.571zM1024 585.143c0 93.143-59.429 175.429-152 229.143 19.429 47.429 44.571 69.714 66.857 94.857 6.286 7.429 13.714 14.286 11.429 25.143v0c-2.286 10.286-10.857 17.714-20 16.571-17.143-2.286-33.714-5.143-49.143-9.143-57.714-14.857-111.429-39.429-158.857-73.143-32 5.714-65.714 9.143-100.571 9.143-103.429 0-198.286-28.571-269.714-75.429 16.571 1.143 33.714 2.286 50.286 2.286 122.857 0 238.857-35.429 327.429-99.429 95.429-69.714 148-164 148-266.286 0-29.714-4.571-58.857-13.143-86.857 96.571 53.143 159.429 137.714 159.429 233.143z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "comments"
+ ],
+ "defaultCode": 61574,
+ "grid": 14
+ },
+ {
+ "id": 128,
+ "paths": [
+ "M146.286 768c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM804.571 438.857c0-38.857-34.857-73.143-73.143-73.143h-201.143c0-66.857 54.857-115.429 54.857-182.857 0-66.857-13.143-109.714-91.429-109.714-36.571 37.143-17.714 124.571-73.143 182.857-16 16.571-29.714 34.286-44 52-25.714 33.143-93.714 130.857-138.857 130.857h-18.286v365.714h18.286c32 0 84.571 20.571 115.429 31.429 62.857 21.714 128 41.714 195.429 41.714h69.143c64.571 0 109.714-25.714 109.714-95.429 0-10.857-1.143-21.714-2.857-32 24-13.143 37.143-45.714 37.143-72 0-13.714-3.429-27.429-10.286-39.429 19.429-18.286 30.286-41.143 30.286-68 0-18.286-8-45.143-20-58.857 26.857-0.571 42.857-52 42.857-73.143zM877.714 438.286c0 33.143-9.714 65.714-28 93.143 3.429 12.571 5.143 26.286 5.143 39.429 0 28.571-7.429 57.143-21.714 82.286 1.143 8 1.714 16.571 1.714 24.571 0 36.571-12 73.143-34.286 101.714 1.143 108-72.571 171.429-178.286 171.429h-73.714c-81.143 0-156.571-24-232-50.286-16.571-5.714-62.857-22.857-78.857-22.857h-164.571c-40.571 0-73.143-32.571-73.143-73.143v-365.714c0-40.571 32.571-73.143 73.143-73.143h156.571c22.286-14.857 61.143-66.286 78.286-88.571 19.429-25.143 39.429-49.714 61.143-73.143 34.286-36.571 16-126.857 73.143-182.857 13.714-13.143 32-21.143 51.429-21.143 59.429 0 116.571 21.143 144.571 76.571 17.714 34.857 20 68 20 106.286 0 40-10.286 74.286-27.429 109.714h100.571c78.857 0 146.286 66.857 146.286 145.714z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "thumbs-o-up"
+ ],
+ "defaultCode": 61575,
+ "grid": 14
+ },
+ {
+ "id": 129,
+ "paths": [
+ "M146.286 256c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM804.571 585.143c0-21.143-16-72.571-42.857-73.143 12-13.714 20-40.571 20-58.857 0-26.857-10.857-49.714-30.286-68 6.857-12 10.286-25.714 10.286-39.429 0-26.286-13.143-58.857-37.143-72 1.714-10.286 2.857-21.143 2.857-32 0-66.857-42.286-95.429-105.714-95.429h-73.143c-67.429 0-132.571 20-195.429 41.714-30.857 10.857-83.429 31.429-115.429 31.429h-18.286v365.714h18.286c45.143 0 113.143 97.714 138.857 130.857 14.286 17.714 28 35.429 44 52 55.429 58.286 36.571 145.714 73.143 182.857 78.286 0 91.429-42.857 91.429-109.714 0-67.429-54.857-116-54.857-182.857h201.143c38.286 0 73.143-34.286 73.143-73.143zM877.714 585.714c0 78.857-67.429 145.714-146.286 145.714h-100.571c17.143 35.429 27.429 69.714 27.429 109.714 0 37.714-2.286 72-20 106.286-28 55.429-85.143 76.571-144.571 76.571-19.429 0-37.714-8-51.429-21.143-57.143-56-39.429-146.286-73.143-183.429-21.714-22.857-41.714-47.429-61.143-72.571-17.143-22.286-56-73.714-78.286-88.571h-156.571c-40.571 0-73.143-32.571-73.143-73.143v-365.714c0-40.571 32.571-73.143 73.143-73.143h164.571c16 0 62.286-17.143 78.857-22.857 82.286-28.571 153.714-50.286 241.714-50.286h64c104 0 178.857 61.714 178.286 168.571v2.857c22.286 28.571 34.286 65.143 34.286 101.714 0 8-0.571 16.571-1.714 24.571 14.286 25.143 21.714 53.714 21.714 82.286 0 13.143-1.714 26.857-5.143 39.429 18.286 27.429 28 60 28 93.143z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "thumbs-o-down"
+ ],
+ "defaultCode": 61576,
+ "grid": 14
+ },
+ {
+ "id": 130,
+ "paths": [
+ "M475.429 18.286v765.143l-256.571 134.857c-7.429 4-14.857 6.857-22.857 6.857-16.571 0-24-13.714-24-28.571 0-4 0.571-7.429 1.143-11.429l49.143-285.714-208-202.286c-6.857-7.429-14.286-17.143-14.286-27.429 0-17.143 17.714-24 32-26.286l286.857-41.714 128.571-260c5.143-10.857 14.857-23.429 28-23.429v0z"
+ ],
+ "width": 475.4285714285714,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "star-half"
+ ],
+ "defaultCode": 61577,
+ "grid": 14
+ },
+ {
+ "id": 131,
+ "paths": [
+ "M950.857 340.571c0-160.571-108.571-194.286-200-194.286-85.143 0-181.143 92-210.857 127.429-13.714 16.571-42.286 16.571-56 0-29.714-35.429-125.714-127.429-210.857-127.429-91.429 0-200 33.714-200 194.286 0 104.571 105.714 201.714 106.857 202.857l332 320 331.429-319.429c1.714-1.714 107.429-98.857 107.429-203.429zM1024 340.571c0 137.143-125.714 252-130.857 257.143l-356 342.857c-6.857 6.857-16 10.286-25.143 10.286s-18.286-3.429-25.143-10.286l-356.571-344c-4.571-4-130.286-118.857-130.286-256 0-167.429 102.286-267.429 273.143-267.429 100 0 193.714 78.857 238.857 123.429 45.143-44.571 138.857-123.429 238.857-123.429 170.857 0 273.143 100 273.143 267.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "heart-o"
+ ],
+ "defaultCode": 61578,
+ "grid": 14
+ },
+ {
+ "id": 132,
+ "paths": [
+ "M365.714 822.857c0 16 7.429 54.857-18.286 54.857h-182.857c-90.857 0-164.571-73.714-164.571-164.571v-402.286c0-90.857 73.714-164.571 164.571-164.571h182.857c9.714 0 18.286 8.571 18.286 18.286 0 16 7.429 54.857-18.286 54.857h-182.857c-50.286 0-91.429 41.143-91.429 91.429v402.286c0 50.286 41.143 91.429 91.429 91.429h164.571c14.286 0 36.571-2.857 36.571 18.286zM896 512c0 9.714-4 18.857-10.857 25.714l-310.857 310.857c-6.857 6.857-16 10.857-25.714 10.857-20 0-36.571-16.571-36.571-36.571v-164.571h-256c-20 0-36.571-16.571-36.571-36.571v-219.429c0-20 16.571-36.571 36.571-36.571h256v-164.571c0-20 16.571-36.571 36.571-36.571 9.714 0 18.857 4 25.714 10.857l310.857 310.857c6.857 6.857 10.857 16 10.857 25.714z"
+ ],
+ "width": 896,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sign-out"
+ ],
+ "defaultCode": 61579,
+ "grid": 14
+ },
+ {
+ "id": 133,
+ "paths": [
+ "M135.429 808h132v-396.571h-132v396.571zM276 289.143c-0.571-38.857-28.571-68.571-73.714-68.571s-74.857 29.714-74.857 68.571c0 37.714 28.571 68.571 73.143 68.571h0.571c46.286 0 74.857-30.857 74.857-68.571zM610.286 808h132v-227.429c0-121.714-65.143-178.286-152-178.286-70.857 0-102.286 39.429-119.429 66.857h1.143v-57.714h-132s1.714 37.143 0 396.571v0h132v-221.714c0-11.429 0.571-23.429 4-32 9.714-23.429 31.429-48 68-48 47.429 0 66.286 36 66.286 89.714v212zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "linkedin-square"
+ ],
+ "defaultCode": 61580,
+ "grid": 14
+ },
+ {
+ "id": 134,
+ "paths": [
+ "M274.286 493.714v-256c0-10.286-8-18.286-18.286-18.286s-18.286 8-18.286 18.286v256c0 10.286 8 18.286 18.286 18.286s18.286-8 18.286-18.286zM658.286 694.857c0 20-16.571 36.571-36.571 36.571h-245.143l-29.143 276c-1.143 9.143-8.571 16.571-17.714 16.571h-0.571c-9.143 0-16.571-6.286-18.286-15.429l-43.429-277.143h-230.857c-20 0-36.571-16.571-36.571-36.571 0-93.714 70.857-182.857 146.286-182.857v-292.571c-40 0-73.143-33.143-73.143-73.143s33.143-73.143 73.143-73.143h365.714c40 0 73.143 33.143 73.143 73.143s-33.143 73.143-73.143 73.143v292.571c75.429 0 146.286 89.143 146.286 182.857z"
+ ],
+ "width": 658.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "thumb-tack"
+ ],
+ "defaultCode": 61581,
+ "grid": 14
+ },
+ {
+ "id": 135,
+ "paths": [
+ "M804.571 530.286v182.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 36.571v292.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
+ },
+ {
+ "id": 136,
+ "paths": [
+ "M676.571 512c0 9.714-4 18.857-10.857 25.714l-310.857 310.857c-6.857 6.857-16 10.857-25.714 10.857-20 0-36.571-16.571-36.571-36.571v-164.571h-256c-20 0-36.571-16.571-36.571-36.571v-219.429c0-20 16.571-36.571 36.571-36.571h256v-164.571c0-20 16.571-36.571 36.571-36.571 9.714 0 18.857 4 25.714 10.857l310.857 310.857c6.857 6.857 10.857 16 10.857 25.714zM877.714 310.857v402.286c0 90.857-73.714 164.571-164.571 164.571h-182.857c-9.714 0-18.286-8.571-18.286-18.286 0-16-7.429-54.857 18.286-54.857h182.857c50.286 0 91.429-41.143 91.429-91.429v-402.286c0-50.286-41.143-91.429-91.429-91.429h-164.571c-14.286 0-36.571 2.857-36.571-18.286 0-16-7.429-54.857 18.286-54.857h182.857c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sign-in"
+ ],
+ "defaultCode": 61584,
+ "grid": 14
+ },
+ {
+ "id": 137,
+ "paths": [
+ "M261.714 504.571c-24-52.571-42.286-122.286-42.286-212h-146.286v54.857c0 56 76 133.714 188.571 157.143zM877.714 347.429v-54.857h-146.286c0 89.714-18.286 159.429-42.286 212 112.571-23.429 188.571-101.143 188.571-157.143zM950.857 274.286v73.143c0 108.571-131.429 228.571-309.714 237.143-22.857 29.143-44 46.286-54.286 54.286-30.286 27.429-38.286 56-38.286 92.571s18.286 73.143 73.143 73.143 109.714 36.571 109.714 91.429v36.571c0 10.286-8 18.286-18.286 18.286h-475.429c-10.286 0-18.286-8-18.286-18.286v-36.571c0-54.857 54.857-91.429 109.714-91.429s73.143-36.571 73.143-73.143-8-65.143-38.286-92.571c-10.286-8-31.429-25.143-54.286-54.286-178.286-8.571-309.714-128.571-309.714-237.143v-73.143c0-30.286 24.571-54.857 54.857-54.857h164.571v-54.857c0-50.286 41.143-91.429 91.429-91.429h329.143c50.286 0 91.429 41.143 91.429 91.429v54.857h164.571c30.286 0 54.857 24.571 54.857 54.857z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "trophy"
+ ],
+ "defaultCode": 61585,
+ "grid": 14
+ },
+ {
+ "id": 138,
+ "paths": [
+ "M296.571 685.714v0c1.143-1.714 0.571-5.143-1.714-7.429-2.857-2.286-6.286-2.857-8-1.143-1.143 1.714-0.571 5.143 1.714 7.429 2.857 2.286 6.286 2.857 8 1.143zM280.571 662.286c-1.714-2.286-4.571-3.429-6.857-2.286-1.714 1.143-1.714 4.571 0 6.857 2.286 2.857 5.143 4 6.857 2.857v0c1.714-1.143 1.714-4.571 0-7.429zM257.143 639.429v0c0.571-1.143-0.571-3.429-2.857-4.571-1.714-0.571-4-0.571-4.571 1.143-1.143 1.714 0 3.429 2.286 4.571 2.286 0.571 4.571 0.571 5.143-1.143zM269.143 652.571v0c1.143-1.143 1.143-4-1.143-5.714-1.714-2.286-4.571-2.857-5.714-1.714-1.714 1.714-1.143 4 0.571 6.286 1.714 1.714 4.571 2.857 6.286 1.143zM318.286 695.429v0c0.571-2.286-1.714-5.143-5.143-6.286s-6.286 0-7.429 2.286c-0.571 2.286 1.714 5.143 5.143 6.286s6.286 0 7.429-2.286zM342.286 697.143v0c0-2.286-2.857-4.571-6.857-4.571-3.429 0-5.714 2.286-5.714 4.571s2.857 4.571 6.286 4.571 6.286-2.286 6.286-4.571zM364.571 693.143v0c-0.571-2.286-4-3.429-7.429-2.857s-5.714 2.857-5.143 5.143 3.429 4 6.857 3.429 5.714-3.429 5.714-5.714zM731.429 512c0-161.714-130.857-292.571-292.571-292.571s-292.571 130.857-292.571 292.571c0 129.143 84 238.857 200 277.714 14.857 2.857 20-6.286 20-14.286 0-6.857 0-29.714-0.571-54.286 0 0-81.143 17.714-98.286-34.857 0 0-13.143-33.714-32.571-42.286 0 0-26.286-18.286 2.286-18.286 0 0 28.571 2.286 44.571 30.286 25.714 45.143 68.571 32 85.143 24.571 2.857-18.857 10.286-32 18.857-39.429-65.143-7.429-133.714-32.571-133.714-144.571 0-32 11.429-57.714 30.286-78.286-2.857-7.429-13.143-37.143 2.857-77.714 24.571-7.429 80.571 30.286 80.571 30.286 23.429-6.857 48-9.714 73.143-9.714s49.714 2.857 73.143 9.714c0 0 56-37.714 80.571-30.286 16 40.571 5.714 70.286 2.857 77.714 18.857 20.571 30.286 46.286 30.286 78.286 0 112.571-68.571 137.143-133.714 144.571 10.286 9.143 20 26.857 20 54.286 0 38.857-0.571 70.286-0.571 80 0 8 5.143 17.143 20 14.286 116-38.857 200-148.571 200-277.714zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "github-square"
+ ],
+ "defaultCode": 61586,
+ "grid": 14
+ },
+ {
+ "id": 139,
+ "paths": [
+ "M731.429 841.143c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM877.714 841.143c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM950.857 713.143v182.857c0 30.286-24.571 54.857-54.857 54.857h-841.143c-30.286 0-54.857-24.571-54.857-54.857v-182.857c0-30.286 24.571-54.857 54.857-54.857h244c15.429 42.286 56 73.143 103.429 73.143h146.286c47.429 0 88-30.857 103.429-73.143h244c30.286 0 54.857 24.571 54.857 54.857zM765.143 342.857c-5.714 13.714-18.857 22.857-33.714 22.857h-146.286v256c0 20-16.571 36.571-36.571 36.571h-146.286c-20 0-36.571-16.571-36.571-36.571v-256h-146.286c-14.857 0-28-9.143-33.714-22.857-5.714-13.143-2.857-29.143 8-39.429l256-256c6.857-7.429 16.571-10.857 25.714-10.857s18.857 3.429 25.714 10.857l256 256c10.857 10.286 13.714 26.286 8 39.429z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "upload"
+ ],
+ "defaultCode": 61587,
+ "grid": 14
+ },
+ {
+ "id": 140,
+ "paths": [
+ "M804 472c0-26.857-5.143-97.143-14.286-120-10.857-27.429-17.143-42.857-17.143-73.714 0-26.286 5.714-52 5.714-77.714 0-10.857-0.571-22.286-5.714-31.429-2.286-0.571-5.143-0.571-7.429-0.571-22.286 0-44.571 5.143-66.857 5.143-68 0-132.571-27.429-200.571-27.429-53.143 0-104.571 20-153.714 39.429-38.857 15.429-81.714 33.714-115.429 58.857-115.429 87.429-155.429 247.429-155.429 385.143 0 46.286 14.286 91.429 14.286 137.714 0 26.286-12.571 50.286-12.571 75.429 0 16 9.143 29.143 26.286 29.143 28 0 54.857-12.571 83.429-12.571 65.143 0 128.571 17.714 193.714 17.714 50.857 0 114.857-4 162.286-20.571 150.286-53.143 263.429-226.857 263.429-384.571zM877.143 470.857c0 190.286-132 390.857-312.571 454.857-56.571 20-126.857 25.143-186.286 25.143-65.143 0-129.143-16.571-193.714-16.571-27.429 0-54.857 16.571-83.429 16.571-56.571 0-99.429-50.857-99.429-105.143 0-26.857 12.571-50.857 12.571-77.143 0-46.286-14.286-91.429-14.286-138.286 0-162.286 49.714-341.714 184.571-444 38.857-29.714 87.429-50.857 132.571-68.571 58.286-23.429 117.143-44.571 180.571-44.571 68 0 132.571 27.429 199.429 27.429 21.714 0 43.429-5.714 65.714-5.714 65.143 0 88.571 46.286 88.571 105.714 0 25.714-5.714 52-5.714 77.714 0 20.571 5.143 28.571 12 46.857 13.143 33.143 19.429 109.143 19.429 145.714z"
+ ],
+ "width": 877.1291428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "lemon-o"
+ ],
+ "defaultCode": 61588,
+ "grid": 14
+ },
+ {
+ "id": 141,
+ "paths": [
+ "M804.571 708.571c0 20.571-9.143 60.571-17.714 79.429-12 28-44 46.286-69.714 60.571-33.714 18.286-68 29.143-106.286 29.143-53.143 0-101.143-21.714-149.714-39.429-34.857-12.571-68.571-28-100-47.429-97.143-60-214.286-177.143-274.286-274.286-19.429-31.429-34.857-65.143-47.429-100-17.714-48.571-39.429-96.571-39.429-149.714 0-38.286 10.857-72.571 29.143-106.286 14.286-25.714 32.571-57.714 60.571-69.714 18.857-8.571 58.857-17.714 79.429-17.714 4 0 8 0 12 1.714 12 4 24.571 32 30.286 43.429 18.286 32.571 36 65.714 54.857 97.714 9.143 14.857 26.286 33.143 26.286 50.857 0 34.857-103.429 85.714-103.429 116.571 0 15.429 14.286 35.429 22.286 49.143 57.714 104 129.714 176 233.714 233.714 13.714 8 33.714 22.286 49.143 22.286 30.857 0 81.714-103.429 116.571-103.429 17.714 0 36 17.143 50.857 26.286 32 18.857 65.143 36.571 97.714 54.857 11.429 5.714 39.429 18.286 43.429 30.286 1.714 4 1.714 8 1.714 12z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "phone"
+ ],
+ "defaultCode": 61589,
+ "grid": 14
+ },
+ {
+ "id": 142,
+ "paths": [
+ "M640 146.286h-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.429v-475.429c0-50.286-41.143-91.429-91.429-91.429zM804.571 237.714v475.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": [
+ "square-o"
+ ],
+ "defaultCode": 61590,
+ "grid": 14
+ },
+ {
+ "id": 143,
+ "paths": [
+ "M658.286 146.286h-585.143v709.714l292.571-280.571 50.857 48.571 241.714 232v-709.714zM665.143 73.143c8.571 0 17.143 1.714 25.143 5.143 25.143 9.714 41.143 33.143 41.143 58.857v736.571c0 25.714-16 49.143-41.143 58.857-8 3.429-16.571 4.571-25.143 4.571-17.714 0-34.286-6.286-47.429-18.286l-252-242.286-252 242.286c-13.143 12-29.714 18.857-47.429 18.857-8.571 0-17.143-1.714-25.143-5.143-25.143-9.714-41.143-33.143-41.143-58.857v-736.571c0-25.714 16-49.143 41.143-58.857 8-3.429 16.571-5.143 25.143-5.143h598.857z"
+ ],
+ "width": 731.4285714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bookmark-o"
+ ],
+ "defaultCode": 61591,
+ "grid": 14
+ },
+ {
+ "id": 144,
+ "paths": [
+ "M731.429 681.714c0-2.857 0-6.286-1.143-9.143-3.429-10.286-86.857-52.571-102.857-61.714-10.857-6.286-24-18.857-37.143-18.857-25.143 0-62.286 74.857-84.571 74.857-11.429 0-25.714-10.286-36-16-75.429-42.286-127.429-94.286-169.714-169.714-5.714-10.286-16-24.571-16-36 0-22.286 74.857-59.429 74.857-84.571 0-13.143-12.571-26.286-18.857-37.143-9.143-16-51.429-99.429-61.714-102.857-2.857-1.143-6.286-1.143-9.143-1.143-14.857 0-44 6.857-57.714 12.571-37.714 17.143-65.143 89.143-65.143 128.571 0 38.286 15.429 73.143 28.571 108.571 45.714 125.143 181.714 261.143 306.857 306.857 35.429 13.143 70.286 28.571 108.571 28.571 39.429 0 111.429-27.429 128.571-65.143 5.714-13.714 12.571-42.857 12.571-57.714zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "phone-square"
+ ],
+ "defaultCode": 61592,
+ "grid": 14
+ },
+ {
+ "id": 145,
+ "paths": [
+ "M925.714 233.143c-25.143 36.571-56.571 69.143-92.571 95.429 0.571 8 0.571 16 0.571 24 0 244-185.714 525.143-525.143 525.143-104.571 0-201.714-30.286-283.429-82.857 14.857 1.714 29.143 2.286 44.571 2.286 86.286 0 165.714-29.143 229.143-78.857-81.143-1.714-149.143-54.857-172.571-128 11.429 1.714 22.857 2.857 34.857 2.857 16.571 0 33.143-2.286 48.571-6.286-84.571-17.143-148-91.429-148-181.143v-2.286c24.571 13.714 53.143 22.286 83.429 23.429-49.714-33.143-82.286-89.714-82.286-153.714 0-34.286 9.143-65.714 25.143-93.143 90.857 112 227.429 185.143 380.571 193.143-2.857-13.714-4.571-28-4.571-42.286 0-101.714 82.286-184.571 184.571-184.571 53.143 0 101.143 22.286 134.857 58.286 41.714-8 81.714-23.429 117.143-44.571-13.714 42.857-42.857 78.857-81.143 101.714 37.143-4 73.143-14.286 106.286-28.571z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "twitter"
+ ],
+ "defaultCode": 61593,
+ "grid": 14
+ },
+ {
+ "id": 146,
+ "paths": [
+ "M548 6.857v150.857h-89.714c-70.286 0-83.429 33.714-83.429 82.286v108h167.429l-22.286 169.143h-145.143v433.714h-174.857v-433.714h-145.714v-169.143h145.714v-124.571c0-144.571 88.571-223.429 217.714-223.429 61.714 0 114.857 4.571 130.286 6.857z"
+ ],
+ "width": 602.2582857142856,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "facebook",
+ "facebook-f"
+ ],
+ "defaultCode": 61594,
+ "grid": 14
+ },
+ {
+ "id": 147,
+ "paths": [
+ "M438.857 73.143c242.286 0 438.857 196.571 438.857 438.857 0 193.714-125.714 358.286-300 416.571-22.286 4-30.286-9.714-30.286-21.143 0-14.286 0.571-61.714 0.571-120.571 0-41.143-13.714-67.429-29.714-81.143 97.714-10.857 200.571-48 200.571-216.571 0-48-17.143-86.857-45.143-117.714 4.571-11.429 19.429-56-4.571-116.571-36.571-11.429-120.571 45.143-120.571 45.143-34.857-9.714-72.571-14.857-109.714-14.857s-74.857 5.143-109.714 14.857c0 0-84-56.571-120.571-45.143-24 60.571-9.143 105.143-4.571 116.571-28 30.857-45.143 69.714-45.143 117.714 0 168 102.286 205.714 200 216.571-12.571 11.429-24 30.857-28 58.857-25.143 11.429-89.143 30.857-127.429-36.571-24-41.714-67.429-45.143-67.429-45.143-42.857-0.571-2.857 26.857-2.857 26.857 28.571 13.143 48.571 64 48.571 64 25.714 78.286 148 52 148 52 0 36.571 0.571 70.857 0.571 81.714 0 11.429-8 25.143-30.286 21.143-174.286-58.286-300-222.857-300-416.571 0-242.286 196.571-438.857 438.857-438.857zM166.286 703.429c1.143-2.286-0.571-5.143-4-6.857-3.429-1.143-6.286-0.571-7.429 1.143-1.143 2.286 0.571 5.143 4 6.857 2.857 1.714 6.286 1.143 7.429-1.143zM184 722.857c2.286-1.714 1.714-5.714-1.143-9.143-2.857-2.857-6.857-4-9.143-1.714-2.286 1.714-1.714 5.714 1.143 9.143 2.857 2.857 6.857 4 9.143 1.714zM201.143 748.571c2.857-2.286 2.857-6.857 0-10.857-2.286-4-6.857-5.714-9.714-3.429-2.857 1.714-2.857 6.286 0 10.286s7.429 5.714 9.714 4zM225.143 772.571c2.286-2.286 1.143-7.429-2.286-10.857-4-4-9.143-4.571-11.429-1.714-2.857 2.286-1.714 7.429 2.286 10.857 4 4 9.143 4.571 11.429 1.714zM257.714 786.857c1.143-3.429-2.286-7.429-7.429-9.143-4.571-1.143-9.714 0.571-10.857 4s2.286 7.429 7.429 8.571c4.571 1.714 9.714 0 10.857-3.429zM293.714 789.714c0-4-4.571-6.857-9.714-6.286-5.143 0-9.143 2.857-9.143 6.286 0 4 4 6.857 9.714 6.286 5.143 0 9.143-2.857 9.143-6.286zM326.857 784c-0.571-3.429-5.143-5.714-10.286-5.143-5.143 1.143-8.571 4.571-8 8.571 0.571 3.429 5.143 5.714 10.286 4.571s8.571-4.571 8-8z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "github"
+ ],
+ "defaultCode": 61595,
+ "grid": 14
+ },
+ {
+ "id": 148,
+ "paths": [
+ "M950.857 329.143v146.286c0 20-16.571 36.571-36.571 36.571h-36.571c-20 0-36.571-16.571-36.571-36.571v-146.286c0-80.571-65.714-146.286-146.286-146.286s-146.286 65.714-146.286 146.286v109.714h54.857c30.286 0 54.857 24.571 54.857 54.857v329.143c0 30.286-24.571 54.857-54.857 54.857h-548.571c-30.286 0-54.857-24.571-54.857-54.857v-329.143c0-30.286 24.571-54.857 54.857-54.857h384v-109.714c0-141.143 114.857-256 256-256s256 114.857 256 256z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "unlock"
+ ],
+ "defaultCode": 61596,
+ "grid": 14
+ },
+ {
+ "id": 149,
+ "paths": [
+ "M1005.714 73.143c50.286 0 91.429 41.143 91.429 91.429v694.857c0 50.286-41.143 91.429-91.429 91.429h-914.286c-50.286 0-91.429-41.143-91.429-91.429v-694.857c0-50.286 41.143-91.429 91.429-91.429h914.286zM91.429 146.286c-9.714 0-18.286 8.571-18.286 18.286v128h950.857v-128c0-9.714-8.571-18.286-18.286-18.286h-914.286zM1005.714 877.714c9.714 0 18.286-8.571 18.286-18.286v-347.429h-950.857v347.429c0 9.714 8.571 18.286 18.286 18.286h914.286zM146.286 804.571v-73.143h146.286v73.143h-146.286zM365.714 804.571v-73.143h219.429v73.143h-219.429z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "credit-card"
+ ],
+ "defaultCode": 61597,
+ "grid": 14
+ },
+ {
+ "id": 150,
+ "paths": [
+ "M219.429 768c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714 109.714 49.143 109.714 109.714zM512 838.286c0.571 10.286-2.857 20-9.714 27.429-6.857 8-16.571 12-26.857 12h-77.143c-18.857 0-34.286-14.286-36-33.143-16.571-174.286-154.857-312.571-329.143-329.143-18.857-1.714-33.143-17.143-33.143-36v-77.143c0-10.286 4-20 12-26.857 6.286-6.286 15.429-9.714 24.571-9.714h2.857c121.714 9.714 236.571 62.857 322.857 149.714 86.857 86.286 140 201.143 149.714 322.857zM804.571 839.429c0.571 9.714-2.857 19.429-10.286 26.857-6.857 7.429-16 11.429-26.286 11.429h-81.714c-19.429 0-35.429-14.857-36.571-34.286-18.857-332-283.429-596.571-615.429-616-19.429-1.143-34.286-17.143-34.286-36v-81.714c0-10.286 4-19.429 11.429-26.286 6.857-6.857 16-10.286 25.143-10.286h1.714c200 10.286 388 94.286 529.714 236.571 142.286 141.714 226.286 329.714 236.571 529.714z"
+ ],
+ "width": 805.1565714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "feed",
+ "rss"
+ ],
+ "defaultCode": 61598,
+ "grid": 14
+ },
+ {
+ "id": 151,
+ "paths": [
+ "M594.286 694.857c0 25.143-20.571 45.714-45.714 45.714s-45.714-20.571-45.714-45.714 20.571-45.714 45.714-45.714 45.714 20.571 45.714 45.714zM740.571 694.857c0 25.143-20.571 45.714-45.714 45.714s-45.714-20.571-45.714-45.714 20.571-45.714 45.714-45.714 45.714 20.571 45.714 45.714zM804.571 786.286v-182.857c0-9.714-8.571-18.286-18.286-18.286h-694.857c-9.714 0-18.286 8.571-18.286 18.286v182.857c0 9.714 8.571 18.286 18.286 18.286h694.857c9.714 0 18.286-8.571 18.286-18.286zM101.714 512h674.286l-89.714-275.429c-2.857-9.714-13.714-17.143-24-17.143h-446.857c-10.286 0-21.143 7.429-24 17.143zM877.714 603.429v182.857c0 50.286-41.143 91.429-91.429 91.429h-694.857c-50.286 0-91.429-41.143-91.429-91.429v-182.857c0-15.429 4.571-28.571 9.143-42.857l112.571-346.286c13.143-40 51.429-68 93.714-68h446.857c42.286 0 80.571 28 93.714 68l112.571 346.286c4.571 14.286 9.143 27.429 9.143 42.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hdd-o"
+ ],
+ "defaultCode": 61600,
+ "grid": 14
+ },
+ {
+ "id": 152,
+ "paths": [
+ "M950.857 365.714c40.571 0 73.143 32.571 73.143 73.143s-32.571 73.143-73.143 73.143v219.429c0 40-33.143 73.143-73.143 73.143-101.714-84.571-265.714-200.571-464-217.143-68 22.857-91.429 102.286-46.857 148-40 65.714 11.429 112 72 159.429-35.429 69.714-182.857 70.857-235.429 22.286-33.143-101.714-82.286-203.429-42.286-332h-69.714c-50.286 0-91.429-41.143-91.429-91.429v-109.714c0-50.286 41.143-91.429 91.429-91.429h274.286c219.429 0 402.286-128 512-219.429 40 0 73.143 33.143 73.143 73.143v219.429zM877.714 710.857v-545.143c-149.143 114.286-293.714 180-438.857 196v154.286c145.143 16 289.714 80.571 438.857 194.857z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bullhorn"
+ ],
+ "defaultCode": 61601,
+ "grid": 14
+ },
+ {
+ "id": 153,
+ "paths": [
+ "M521.143 969.143c0-5.143-4-9.143-9.143-9.143-45.143 0-82.286-37.143-82.286-82.286 0-5.143-4-9.143-9.143-9.143s-9.143 4-9.143 9.143c0 55.429 45.143 100.571 100.571 100.571 5.143 0 9.143-4 9.143-9.143zM140.571 804.571h742.857c-102.286-115.429-152-272-152-475.429 0-73.714-69.714-182.857-219.429-182.857s-219.429 109.143-219.429 182.857c0 203.429-49.714 360-152 475.429zM987.429 804.571c0 40-33.143 73.143-73.143 73.143h-256c0 80.571-65.714 146.286-146.286 146.286s-146.286-65.714-146.286-146.286h-256c-40 0-73.143-33.143-73.143-73.143 84.571-71.429 182.857-199.429 182.857-475.429 0-109.714 90.857-229.714 242.286-252-2.857-6.857-4.571-14.286-4.571-22.286 0-30.286 24.571-54.857 54.857-54.857s54.857 24.571 54.857 54.857c0 8-1.714 15.429-4.571 22.286 151.429 22.286 242.286 142.286 242.286 252 0 276 98.286 404 182.857 475.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bell-o"
+ ],
+ "defaultCode": 61602,
+ "grid": 14
+ },
+ {
+ "id": 154,
+ "paths": [
+ "M786.286 512l78.857 77.143c10.857 10.286 14.857 25.714 11.429 40-4 14.286-15.429 25.714-29.714 29.143l-107.429 27.429 30.286 106.286c4 14.286 0 29.714-10.857 40-10.286 10.857-25.714 14.857-40 10.857l-106.286-30.286-27.429 107.429c-3.429 14.286-14.857 25.714-29.143 29.714-3.429 0.571-7.429 1.143-10.857 1.143-10.857 0-21.714-4.571-29.143-12.571l-77.143-78.857-77.143 78.857c-10.286 10.857-25.714 14.857-40 11.429-14.857-4-25.714-15.429-29.143-29.714l-27.429-107.429-106.286 30.286c-14.286 4-29.714 0-40-10.857-10.857-10.286-14.857-25.714-10.857-40l30.286-106.286-107.429-27.429c-14.286-3.429-25.714-14.857-29.714-29.143-3.429-14.286 0.571-29.714 11.429-40l78.857-77.143-78.857-77.143c-10.857-10.286-14.857-25.714-11.429-40 4-14.286 15.429-25.714 29.714-29.143l107.429-27.429-30.286-106.286c-4-14.286 0-29.714 10.857-40 10.286-10.857 25.714-14.857 40-10.857l106.286 30.286 27.429-107.429c3.429-14.286 14.857-25.714 29.143-29.143 14.286-4 29.714 0 40 10.857l77.143 79.429 77.143-79.429c10.286-10.857 25.143-14.857 40-10.857 14.286 3.429 25.714 14.857 29.143 29.143l27.429 107.429 106.286-30.286c14.286-4 29.714 0 40 10.857 10.857 10.286 14.857 25.714 10.857 40l-30.286 106.286 107.429 27.429c14.286 3.429 25.714 14.857 29.714 29.143 3.429 14.286-0.571 29.714-11.429 40z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "certificate"
+ ],
+ "defaultCode": 61603,
+ "grid": 14
+ },
+ {
+ "id": 155,
+ "paths": [
+ "M146.286 768c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM950.857 438.857c0-38.857-34.857-73.143-73.143-73.143h-329.143c0-36 54.857-73.143 54.857-146.286 0-54.857-42.857-73.143-91.429-73.143-16 0-45.143 66.286-51.429 79.429-6.857 12.571-13.714 25.143-21.143 37.143-18.857 30.286-40.571 56.571-64 82.857-36.571 41.714-77.143 93.143-137.714 93.143h-18.286v365.714h18.286c100 0 197.714 73.143 308.571 73.143 64 0 108-26.857 108-95.429 0-10.857-1.143-21.714-2.857-32 24-13.143 37.143-45.714 37.143-72 0-13.714-3.429-27.429-10.286-39.429 19.429-18.286 30.286-41.143 30.286-68 0-18.286-8-45.143-20-58.857h189.143c39.429 0 73.143-33.714 73.143-73.143zM1024 438.286c0 80-66.286 146.857-146.286 146.857h-96.571c-1.714 24-9.143 46.857-21.143 68 1.143 8 1.714 16.571 1.714 24.571 0 36.571-12 73.143-34.286 101.714 1.143 108-72.571 171.429-178.286 171.429-64 0-124.571-17.714-184-39.429-34.857-12.571-91.429-33.714-127.429-33.714h-164.571c-40.571 0-73.143-32.571-73.143-73.143v-365.714c0-40.571 32.571-73.143 73.143-73.143h164.571c27.429 0 66.286-49.143 82.857-68 20.571-23.429 40-46.857 57.143-73.714 33.143-53.143 57.714-150.857 134.286-150.857 90.857 0 164.571 49.714 164.571 146.286 0 25.143-4 49.714-12.571 73.143h213.714c78.857 0 146.286 66.857 146.286 145.714z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hand-o-right"
+ ],
+ "defaultCode": 61604,
+ "grid": 14
+ },
+ {
+ "id": 156,
+ "paths": [
+ "M786.286 804.571h18.286v-365.714h-18.286c-60.571 0-101.143-51.429-137.714-93.143-23.429-26.286-45.143-52.571-64-82.857-8-12.571-14.857-25.714-21.714-38.857s-35.429-77.714-50.857-77.714c-48.571 0-91.429 18.286-91.429 73.143 0 73.143 54.857 110.286 54.857 146.286h-329.143c-38.286 0-73.143 34.286-73.143 73.143 0 39.429 33.714 73.143 73.143 73.143h189.143c-12 13.714-20 40.571-20 58.857 0 26.857 10.857 49.714 30.286 68-6.857 12-10.286 25.714-10.286 39.429 0 26.286 13.143 58.857 37.143 72-1.714 10.286-2.286 21.143-2.286 32 0 67.429 41.714 95.429 105.143 95.429 113.714 0 210.857-73.143 310.857-73.143zM950.857 768c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM1024 438.857v365.714c0 40.571-32.571 73.143-73.143 73.143h-164.571c-36 0-92.571 21.143-127.429 33.714-58.286 21.143-118.286 39.429-181.143 39.429-105.143 0-181.714-59.429-181.143-168.571l0.571-2.857c-22.857-28.571-34.857-65.143-34.857-101.714 0-8 0.571-16.571 1.714-24.571-12-21.143-19.429-44-21.143-68h-96.571c-80 0-146.286-66.857-146.286-146.857 0-78.857 67.429-145.714 146.286-145.714h213.714c-8.571-23.429-12.571-48-12.571-73.143 0-96.571 73.714-146.286 164.571-146.286 76.571 0 101.143 97.714 134.286 150.857 17.143 26.857 36.571 50.286 57.143 73.714 16.571 18.857 55.429 68 82.857 68h164.571c40.571 0 73.143 32.571 73.143 73.143z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hand-o-left"
+ ],
+ "defaultCode": 61605,
+ "grid": 14
+ },
+ {
+ "id": 157,
+ "paths": [
+ "M731.429 914.286c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM804.571 477.714c0-64.571-26.286-108-95.429-108-10.857 0-21.714 1.143-32 2.857-13.143-24-45.714-37.143-72-37.143-13.714 0-27.429 3.429-39.429 10.286-18.286-19.429-41.143-30.286-68-30.286-18.286 0-45.143 8-58.857 20v-189.143c0-39.429-33.714-73.143-73.143-73.143-38.857 0-73.143 34.857-73.143 73.143v329.143c-36 0-73.143-54.857-146.286-54.857-54.857 0-73.143 42.857-73.143 91.429 0 16 66.286 45.143 79.429 51.429 12.571 6.857 25.143 13.714 37.143 21.143 30.286 18.857 56.571 40.571 82.857 64 41.714 36.571 93.143 77.143 93.143 137.714v18.286h365.714v-18.286c0-100 73.143-197.714 73.143-308.571zM877.714 474.857c0 64-17.714 124.571-39.429 184-12.571 34.857-33.714 91.429-33.714 127.429v164.571c0 40.571-32.571 73.143-73.143 73.143h-365.714c-40.571 0-73.143-32.571-73.143-73.143v-164.571c0-27.429-49.143-66.286-68-82.857-23.429-20.571-46.857-40-73.714-57.143-53.143-33.143-150.857-57.714-150.857-134.286 0-90.857 49.714-164.571 146.286-164.571 25.143 0 49.714 4 73.143 12.571v-213.714c0-78.857 66.857-146.286 145.714-146.286 80 0 146.857 66.286 146.857 146.286v96.571c24 1.714 46.857 9.143 68 21.143 8-1.143 16.571-1.714 24.571-1.714 36.571 0 73.143 12 101.714 34.286 108-1.143 171.429 72.571 171.429 178.286z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hand-o-up"
+ ],
+ "defaultCode": 61606,
+ "grid": 14
+ },
+ {
+ "id": 158,
+ "paths": [
+ "M804.571 548.571c0-113.714-73.143-210.857-73.143-310.857v-18.286h-365.714v18.286c0 60.571-51.429 101.143-93.143 137.714-26.286 23.429-52.571 45.143-82.857 64-12.571 8-25.714 14.857-38.857 21.714s-77.714 35.429-77.714 50.857c0 48.571 18.286 91.429 73.143 91.429 73.143 0 110.286-54.857 146.286-54.857v329.143c0 38.286 34.286 73.143 73.143 73.143 39.429 0 73.143-33.714 73.143-73.143v-189.143c14.857 11.429 40 20 58.857 20 26.857 0 49.714-10.857 68-30.286 12 6.857 25.714 10.286 39.429 10.286 26.286 0 58.857-13.143 72-37.143 10.286 1.714 21.143 2.286 32 2.286 67.429 0 95.429-41.714 95.429-105.143zM731.429 109.714c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM877.714 546.286c0 105.143-59.429 181.714-168.571 181.143l-2.857-0.571c-28.571 22.857-65.143 34.857-101.714 34.857-8 0-16.571-0.571-24.571-1.714-19.429 10.857-45.714 18.857-68 21.143v96.571c0 80-66.857 146.286-146.857 146.286-78.857 0-145.714-67.429-145.714-146.286v-213.714c-22.286 9.143-49.143 12.571-73.143 12.571-96 0-146.286-73.714-146.286-164.571 0-76.571 97.714-101.143 150.857-134.286 26.857-17.143 50.286-36.571 73.714-57.143 18.857-16.571 68-55.429 68-82.857v-164.571c0-40.571 32.571-73.143 73.143-73.143h365.714c40.571 0 73.143 32.571 73.143 73.143v164.571c0 36 21.143 92.571 33.714 127.429 21.143 58.286 39.429 118.286 39.429 181.143z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hand-o-down"
+ ],
+ "defaultCode": 61607,
+ "grid": 14
+ },
+ {
+ "id": 159,
+ "paths": [
+ "M731.429 548.571v-73.143c0-20-16.571-36.571-36.571-36.571h-286.857l108-108c6.857-6.857 10.857-16 10.857-25.714s-4-18.857-10.857-25.714l-52-52c-6.857-6.857-16-10.286-25.714-10.286s-18.857 3.429-25.714 10.286l-258.857 258.857c-6.857 6.857-10.286 16-10.286 25.714s3.429 18.857 10.286 25.714l258.857 258.857c6.857 6.857 16 10.286 25.714 10.286s18.857-3.429 25.714-10.286l52-52c6.857-6.857 10.286-16 10.286-25.714s-3.429-18.857-10.286-25.714l-108-108h286.857c20 0 36.571-16.571 36.571-36.571zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow-circle-left"
+ ],
+ "defaultCode": 61608,
+ "grid": 14
+ },
+ {
+ "id": 160,
+ "paths": [
+ "M734.286 512c0-9.714-3.429-18.857-10.286-25.714l-258.857-258.857c-6.857-6.857-16-10.286-25.714-10.286s-18.857 3.429-25.714 10.286l-52 52c-6.857 6.857-10.286 16-10.286 25.714s3.429 18.857 10.286 25.714l108 108h-286.857c-20 0-36.571 16.571-36.571 36.571v73.143c0 20 16.571 36.571 36.571 36.571h286.857l-108 108c-6.857 6.857-10.857 16-10.857 25.714s4 18.857 10.857 25.714l52 52c6.857 6.857 16 10.286 25.714 10.286s18.857-3.429 25.714-10.286l258.857-258.857c6.857-6.857 10.286-16 10.286-25.714zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow-circle-right"
+ ],
+ "defaultCode": 61609,
+ "grid": 14
+ },
+ {
+ "id": 161,
+ "paths": [
+ "M733.714 511.429c0-9.714-3.429-18.857-10.286-25.714l-258.857-258.857c-6.857-6.857-16-10.286-25.714-10.286s-18.857 3.429-25.714 10.286l-258.857 258.857c-6.857 6.857-10.286 16-10.286 25.714s3.429 18.857 10.286 25.714l52 52c6.857 6.857 16 10.286 25.714 10.286s18.857-3.429 25.714-10.286l108-108v286.857c0 20 16.571 36.571 36.571 36.571h73.143c20 0 36.571-16.571 36.571-36.571v-286.857l108 108c6.857 6.857 16 10.857 25.714 10.857s18.857-4 25.714-10.857l52-52c6.857-6.857 10.286-16 10.286-25.714zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow-circle-up"
+ ],
+ "defaultCode": 61610,
+ "grid": 14
+ },
+ {
+ "id": 162,
+ "paths": [
+ "M733.714 512.571c0-9.714-3.429-18.857-10.286-25.714l-52-52c-6.857-6.857-16-10.286-25.714-10.286s-18.857 3.429-25.714 10.286l-108 108v-286.857c0-20-16.571-36.571-36.571-36.571h-73.143c-20 0-36.571 16.571-36.571 36.571v286.857l-108-108c-6.857-6.857-16-10.857-25.714-10.857s-18.857 4-25.714 10.857l-52 52c-6.857 6.857-10.286 16-10.286 25.714s3.429 18.857 10.286 25.714l258.857 258.857c6.857 6.857 16 10.286 25.714 10.286s18.857-3.429 25.714-10.286l258.857-258.857c6.857-6.857 10.286-16 10.286-25.714zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow-circle-down"
+ ],
+ "defaultCode": 61611,
+ "grid": 14
+ },
+ {
+ "id": 163,
+ "paths": [
+ "M438.857 73.143c242.286 0 438.857 196.571 438.857 438.857s-196.571 438.857-438.857 438.857-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857zM595.429 370.857c-4.571 3.429-7.429 9.714-13.143 10.857 2.857-0.571 5.714-10.857 7.429-13.143 3.429-4 8-6.286 12.571-8.571 9.714-4 19.429-5.143 29.714-6.857 9.714-2.286 21.714-2.286 29.143 6.286-1.714-1.714 12-13.714 13.714-14.286 5.143-2.857 13.714-1.714 17.143-6.857 1.143-1.714 1.143-12.571 1.143-12.571-9.714 1.143-13.143-8-13.714-16 0 0.571-1.143 2.286-3.429 4.571 0.571-8.571-10.286-2.286-14.286-3.429-13.143-3.429-11.429-12.571-15.429-22.286-2.286-5.143-8.571-6.857-10.857-12-2.286-3.429-3.429-10.857-8.571-11.429-3.429-0.571-9.714 12-10.857 11.429-5.143-2.857-7.429 1.143-11.429 3.429-3.429 2.286-6.286 1.143-9.714 2.857 10.286-3.429-4.571-9.143-9.714-8 8-2.286 4-10.857-0.571-14.857h2.857c-1.143-5.143-17.143-9.714-22.286-13.143s-32.571-9.143-38.286-5.714c-6.857 4 1.714 15.429 1.714 21.143 0.571 6.857-6.857 8.571-6.857 14.286 0 9.714 18.286 8 13.714 21.143-2.857 8-13.714 9.714-18.286 16-4.571 5.714 0.571 16 5.143 20 4.571 3.429-8 9.143-9.714 10.286-9.714 4.571-17.143-9.714-19.429-18.286-1.714-6.286-2.286-13.714-9.143-17.143-3.429-1.143-14.286-2.857-16.571 0.571-3.429-8.571-15.429-12-23.429-14.857-11.429-4-21.143-4-33.143-2.286 4-0.571-1.143-18.286-10.857-15.429 2.857-5.714 1.714-12 2.857-17.714 1.143-4.571 3.429-9.143 6.857-13.143 1.143-2.286 13.714-15.429 9.714-16 9.714 1.143 20.571 1.714 28.571-6.286 5.143-5.143 7.429-13.714 12.571-19.429 7.429-8.571 16.571 2.286 24.571 2.857 11.429 0.571 10.857-12 4.571-17.714 7.429 0.571 1.143-13.143-2.857-14.857-5.143-1.714-24.571 3.429-14.286 7.429-2.286-1.143-16 27.429-24 13.143-2.286-2.857-3.429-14.857-8.571-15.429-4.571 0-7.429 5.143-9.143 8.571 2.857-7.429-16-12.571-20-13.143 8.571-5.714 1.714-12-4.571-15.429-4.571-2.857-18.857-5.143-22.857-0.571-10.857 13.143 11.429 14.857 17.143 18.286 1.714 1.143 8.571 5.143 4.571 8-3.429 1.714-13.714 4.571-14.857 6.857-3.429 5.143 4 10.857-1.143 16-5.143-5.143-5.143-13.714-9.143-19.429 5.143 6.286-20.571 2.857-20 2.857-8.571 0-22.286 5.714-28.571-2.857-1.143-2.286-1.143-15.429 2.286-12.571-5.143-4-8.571-8-12-10.286-18.857 6.286-36.571 14.286-53.714 23.429 2.286 0.571 4 0.571 6.857-0.571 4.571-1.714 8.571-4.571 13.143-6.857 5.714-2.286 17.714-9.143 24-4 0.571-1.143 2.286-2.286 2.857-2.857 4 4.571 8 9.143 11.429 14.286-4.571-2.286-12-1.143-17.143-0.571-4 1.143-10.857 2.286-12.571 6.857 1.714 2.857 4 7.429 2.857 10.286-7.429-5.143-13.143-13.714-23.429-14.857-4.571 0-9.143 0-12.571 0.571-54.857 30.286-101.143 74.286-134.286 126.857 2.286 2.286 4.571 4 6.857 4.571 5.714 1.714 0 18.286 10.857 9.714 3.429 2.857 4 6.857 1.714 10.857 0.571-0.571 23.429 14.286 25.143 15.429 4 3.429 10.286 7.429 12 12 1.143 4-2.286 8.571-5.714 10.286-0.571-1.143-9.143-9.714-10.286-7.429-1.714 2.857 0 18.286 6.286 17.714-9.143 0.571-5.143 36-7.429 42.857 0 0.571 1.143 0.571 1.143 0.571-1.714 6.857 4 33.714 15.429 30.857-7.429 1.714 13.143 28 16 29.714 7.429 5.143 16 8.571 21.143 16 5.714 8 5.714 20 13.714 26.286-2.286 6.857 12 14.857 11.429 24.571-1.143 0.571-1.714 0.571-2.857 1.143 2.857 8 13.714 8 17.714 15.429 2.286 4.571 0 15.429 7.429 13.143 1.143-12.571-7.429-25.143-13.714-35.429-3.429-5.714-6.857-10.857-9.714-16.571-2.857-5.143-3.429-11.429-5.714-17.143 2.286 0.571 14.857 5.143 13.714 6.857-4.571 11.429 18.286 31.429 24.571 38.857 1.714 1.714 14.857 18.857 8 18.857 7.429 0 17.714 11.429 21.143 17.143 5.143 8.571 4 19.429 7.429 28.571 3.429 11.429 19.429 16.571 28.571 21.714 8 4 14.857 9.714 22.857 12.571 12 4.571 14.857 0.571 25.143-1.143 14.857-2.286 16.571 14.286 28.571 20.571 7.429 4 23.429 9.714 31.429 6.286-3.429 1.143 12 24.571 13.143 26.286 5.143 6.857 14.857 10.286 20.571 17.143 1.714-1.143 3.429-2.857 4-5.143-2.286 6.286 8.571 18.286 14.286 17.143 6.286-1.143 8-13.714 8-18.286-11.429 5.714-21.714 1.143-28-10.286-1.143-2.857-10.286-18.857-2.286-18.857 10.857 0 3.429-8.571 2.286-16.571s-9.143-13.143-13.143-20c-3.429 6.857-14.857 5.143-18.286-0.571 0 1.714-1.714 4.571-1.714 6.857-2.857 0-5.714 0.571-8.571-0.571 1.143-6.857 1.714-15.429 3.429-22.857 2.857-10.286 21.714-30.286-2.857-29.143-8.571 0.571-12 4-14.857 11.429-2.857 6.857-1.714 13.143-9.714 16.571-5.143 2.286-22.286 1.143-27.429-1.714-10.857-6.286-18.286-26.286-18.286-37.714-0.571-15.429 7.429-29.143 0-43.429 3.429-2.857 6.857-8.571 10.857-11.429 3.429-2.286 7.429 1.714 9.143-5.143-1.714-1.143-4-3.429-4.571-3.429 8.571 4 24.571-5.714 32 0 4.571 3.429 9.714 4.571 12.571-1.143 0.571-1.714-4-8.571-1.714-13.143 1.714 9.714 8 11.429 16.571 5.143 3.429 3.429 12.571 2.286 18.857 5.714 6.286 4 7.429 10.286 14.857 1.714 4.571 6.857 5.143 6.857 6.857 13.714 1.714 6.286 5.143 22.286 10.857 25.143 12 7.429 9.143-12.571 8-19.429-0.571-0.571-0.571-19.429-1.143-19.429-18.286-4-11.429-18.286-1.143-28 1.714-1.143 14.857-5.714 20.571-10.286 5.143-4.571 11.429-12.571 8.571-20 2.857 0 5.143-2.286 6.286-5.143-1.714-0.571-8.571-6.286-9.714-5.714 4-2.286 3.429-5.714 1.143-9.143 5.714-3.429 2.857-9.714 8.571-12 6.286 8.571 18.857-1.143 12.571-8 5.714-8 18.857-4 22.286-11.429 8.571 2.286 2.286-8.571 6.857-14.857 4-5.143 10.857-5.143 16-8 0 0.571 14.286-8 9.714-8.571 9.714 1.143 29.143-9.143 14.286-17.714 2.286-5.143-5.143-7.429-10.286-8.571 4-1.143 9.143 1.143 12.571-1.143 7.429-5.143 2.286-7.429-4-9.143-8-2.286-18.286 2.857-24.571 6.857zM502.286 872c78.286-13.714 148-52.571 200.571-108-3.429-3.429-9.714-2.286-14.286-4.571-4.571-1.714-8-3.429-13.714-4.571 1.143-11.429-11.429-15.429-19.429-21.143-7.429-5.714-12-12-22.857-9.714-1.143 0.571-12.571 4.571-10.286 6.857-7.429-6.286-10.857-9.714-20.571-12.571-9.143-2.857-15.429-14.286-24.571-4-4.571 4.571-2.286 11.429-4.571 16-7.429-6.286 6.857-13.714 1.143-20.571-6.857-8-18.857 5.143-24.571 8.571-3.429 2.857-7.429 4-9.714 7.429-2.857 4-4 9.143-6.286 13.143-1.714-4.571-11.429-3.429-12-6.857 2.286 13.714 2.286 28 5.143 41.714 1.714 8 0 21.143-6.857 27.429s-15.429 13.143-16.571 22.857c-1.143 6.857 0.571 13.143 6.857 14.857 0.571 8.571-9.143 14.857-8.571 24 0 0.571 0.571 6.286 1.143 9.143z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "globe"
+ ],
+ "defaultCode": 61612,
+ "grid": 14
+ },
+ {
+ "id": 164,
+ "paths": [
+ "M219.429 841.143c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM587.429 601.143l-389.714 389.714c-13.143 13.143-32 21.143-51.429 21.143s-38.286-8-52-21.143l-60.571-61.714c-13.714-13.143-21.714-32-21.714-51.429s8-38.286 21.714-52l389.143-389.143c29.714 74.857 89.714 134.857 164.571 164.571zM949.714 352.571c0 18.857-6.857 42.286-13.143 60.571-36 101.714-133.714 172-241.714 172-141.143 0-256-114.857-256-256s114.857-256 256-256c41.714 0 96 12.571 130.857 36 5.714 4 9.143 9.143 9.143 16 0 6.286-4 12.571-9.143 16l-167.429 96.571v128l110.286 61.143c18.857-10.857 151.429-94.286 162.857-94.286s18.286 8.571 18.286 20z"
+ ],
+ "width": 961.6822857142856,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wrench"
+ ],
+ "defaultCode": 61613,
+ "grid": 14
+ },
+ {
+ "id": 165,
+ "paths": [
+ "M585.143 804.571h365.714v-73.143h-365.714v73.143zM365.714 512h585.143v-73.143h-585.143v73.143zM731.429 219.429h219.429v-73.143h-219.429v73.143zM1024 694.857v146.286c0 20-16.571 36.571-36.571 36.571h-950.857c-20 0-36.571-16.571-36.571-36.571v-146.286c0-20 16.571-36.571 36.571-36.571h950.857c20 0 36.571 16.571 36.571 36.571zM1024 402.286v146.286c0 20-16.571 36.571-36.571 36.571h-950.857c-20 0-36.571-16.571-36.571-36.571v-146.286c0-20 16.571-36.571 36.571-36.571h950.857c20 0 36.571 16.571 36.571 36.571zM1024 109.714v146.286c0 20-16.571 36.571-36.571 36.571h-950.857c-20 0-36.571-16.571-36.571-36.571v-146.286c0-20 16.571-36.571 36.571-36.571h950.857c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tasks"
+ ],
+ "defaultCode": 61614,
+ "grid": 14
+ },
+ {
+ "id": 166,
+ "paths": [
+ "M801.714 168.571c5.714 13.714 2.857 29.714-8 40l-281.714 281.714v424c0 14.857-9.143 28-22.286 33.714-4.571 1.714-9.714 2.857-14.286 2.857-9.714 0-18.857-3.429-25.714-10.857l-146.286-146.286c-6.857-6.857-10.857-16-10.857-25.714v-277.714l-281.714-281.714c-10.857-10.286-13.714-26.286-8-40 5.714-13.143 18.857-22.286 33.714-22.286h731.429c14.857 0 28 9.143 33.714 22.286z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "filter"
+ ],
+ "defaultCode": 61616,
+ "grid": 14
+ },
+ {
+ "id": 167,
+ "paths": [
+ "M365.714 146.286h292.571v-73.143h-292.571v73.143zM1024 512v274.286c0 50.286-41.143 91.429-91.429 91.429h-841.143c-50.286 0-91.429-41.143-91.429-91.429v-274.286h384v91.429c0 20 16.571 36.571 36.571 36.571h182.857c20 0 36.571-16.571 36.571-36.571v-91.429h384zM585.143 512v73.143h-146.286v-73.143h146.286zM1024 237.714v219.429h-1024v-219.429c0-50.286 41.143-91.429 91.429-91.429h201.143v-91.429c0-30.286 24.571-54.857 54.857-54.857h329.143c30.286 0 54.857 24.571 54.857 54.857v91.429h201.143c50.286 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "briefcase"
+ ],
+ "defaultCode": 61617,
+ "grid": 14
+ },
+ {
+ "id": 168,
+ "paths": [
+ "M733.143 309.143l-202.857 202.857 202.857 202.857 82.286-82.286c10.286-10.857 26.286-13.714 40-8 13.143 5.714 22.286 18.857 22.286 33.714v256c0 20-16.571 36.571-36.571 36.571h-256c-14.857 0-28-9.143-33.714-22.857-5.714-13.143-2.857-29.143 8-39.429l82.286-82.286-202.857-202.857-202.857 202.857 82.286 82.286c10.857 10.286 13.714 26.286 8 39.429-5.714 13.714-18.857 22.857-33.714 22.857h-256c-20 0-36.571-16.571-36.571-36.571v-256c0-14.857 9.143-28 22.857-33.714 13.143-5.714 29.143-2.857 39.429 8l82.286 82.286 202.857-202.857-202.857-202.857-82.286 82.286c-6.857 6.857-16 10.857-25.714 10.857-4.571 0-9.714-1.143-13.714-2.857-13.714-5.714-22.857-18.857-22.857-33.714v-256c0-20 16.571-36.571 36.571-36.571h256c14.857 0 28 9.143 33.714 22.857 5.714 13.143 2.857 29.143-8 39.429l-82.286 82.286 202.857 202.857 202.857-202.857-82.286-82.286c-10.857-10.286-13.714-26.286-8-39.429 5.714-13.714 18.857-22.857 33.714-22.857h256c20 0 36.571 16.571 36.571 36.571v256c0 14.857-9.143 28-22.286 33.714-4.571 1.714-9.714 2.857-14.286 2.857-9.714 0-18.857-4-25.714-10.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrows-alt"
+ ],
+ "defaultCode": 61618,
+ "grid": 14
+ },
+ {
+ "id": 169,
+ "paths": [
+ "M338.857 512c-59.429 1.714-113.143 27.429-151.429 73.143h-76.571c-57.143 0-110.857-27.429-110.857-90.857 0-46.286-1.714-201.714 70.857-201.714 12 0 71.429 48.571 148.571 48.571 26.286 0 51.429-4.571 76-13.143-1.714 12.571-2.857 25.143-2.857 37.714 0 52 16.571 103.429 46.286 146.286zM950.857 876c0 92.571-61.143 148-152.571 148h-499.429c-91.429 0-152.571-55.429-152.571-148 0-129.143 30.286-327.429 197.714-327.429 19.429 0 90.286 79.429 204.571 79.429s185.143-79.429 204.571-79.429c167.429 0 197.714 198.286 197.714 327.429zM365.714 146.286c0 80.571-65.714 146.286-146.286 146.286s-146.286-65.714-146.286-146.286 65.714-146.286 146.286-146.286 146.286 65.714 146.286 146.286zM768 365.714c0 121.143-98.286 219.429-219.429 219.429s-219.429-98.286-219.429-219.429 98.286-219.429 219.429-219.429 219.429 98.286 219.429 219.429zM1097.143 494.286c0 63.429-53.714 90.857-110.857 90.857h-76.571c-38.286-45.714-92-71.429-151.429-73.143 29.714-42.857 46.286-94.286 46.286-146.286 0-12.571-1.143-25.143-2.857-37.714 24.571 8.571 49.714 13.143 76 13.143 77.143 0 136.571-48.571 148.571-48.571 72.571 0 70.857 155.429 70.857 201.714zM1024 146.286c0 80.571-65.714 146.286-146.286 146.286s-146.286-65.714-146.286-146.286 65.714-146.286 146.286-146.286 146.286 65.714 146.286 146.286z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "group",
+ "users"
+ ],
+ "defaultCode": 61632,
+ "grid": 14
+ },
+ {
+ "id": 170,
+ "paths": [
+ "M832 694.857c0-14.857-5.714-28.571-16-38.857l-118.857-118.857c-10.286-10.286-24.571-16-38.857-16-16.571 0-29.714 6.286-41.143 18.286 18.857 18.857 41.143 34.857 41.143 64 0 30.286-24.571 54.857-54.857 54.857-29.143 0-45.143-22.286-64-41.143-12 11.429-18.857 24.571-18.857 41.714 0 14.286 5.714 28.571 16 38.857l117.714 118.286c10.286 10.286 24.571 15.429 38.857 15.429s28.571-5.143 38.857-14.857l84-83.429c10.286-10.286 16-24 16-38.286zM430.286 292c0-14.286-5.714-28.571-16-38.857l-117.714-118.286c-10.286-10.286-24.571-16-38.857-16s-28.571 5.714-38.857 15.429l-84 83.429c-10.286 10.286-16 24-16 38.286 0 14.857 5.714 28.571 16 38.857l118.857 118.857c10.286 10.286 24.571 15.429 38.857 15.429 16.571 0 29.714-5.714 41.143-17.714-18.857-18.857-41.143-34.857-41.143-64 0-30.286 24.571-54.857 54.857-54.857 29.143 0 45.143 22.286 64 41.143 12-11.429 18.857-24.571 18.857-41.714zM941.714 694.857c0 43.429-17.714 85.714-48.571 116l-84 83.429c-30.857 30.857-72.571 47.429-116 47.429-44 0-85.714-17.143-116.571-48.571l-117.714-118.286c-30.857-30.857-47.429-72.571-47.429-116 0-45.143 18.286-88 50.286-119.429l-50.286-50.286c-31.429 32-73.714 50.286-118.857 50.286-43.429 0-85.714-17.143-116.571-48l-118.857-118.857c-31.429-31.429-48-72.571-48-116.571 0-43.429 17.714-85.714 48.571-116l84-83.429c30.857-30.857 72.571-47.429 116-47.429 44 0 85.714 17.143 116.571 48.571l117.714 118.286c30.857 30.857 47.429 72.571 47.429 116 0 45.143-18.286 88-50.286 119.429l50.286 50.286c31.429-32 73.714-50.286 118.857-50.286 43.429 0 85.714 17.143 116.571 48l118.857 118.857c31.429 31.429 48 72.571 48 116.571z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chain",
+ "link"
+ ],
+ "defaultCode": 61633,
+ "grid": 14
+ },
+ {
+ "id": 171,
+ "paths": [
+ "M1097.143 658.286c0 121.143-98.286 219.429-219.429 219.429h-621.714c-141.143 0-256-114.857-256-256 0-102.286 60.571-190.857 147.429-231.429-0.571-8-1.143-16.571-1.143-24.571 0-161.714 130.857-292.571 292.571-292.571 122.286 0 226.857 74.857 270.857 181.714 25.143-22.286 58.286-35.429 94.857-35.429 80.571 0 146.286 65.714 146.286 146.286 0 29.143-8.571 56-23.429 78.857 97.143 22.857 169.714 109.714 169.714 213.714z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cloud"
+ ],
+ "defaultCode": 61634,
+ "grid": 14
+ },
+ {
+ "id": 172,
+ "paths": [
+ "M872.571 827.429c42.857 68 12.571 123.429-68 123.429h-658.286c-80.571 0-110.857-55.429-68-123.429l287.429-453.143v-228h-36.571c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571h292.571c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571h-36.571v228zM427.429 413.143l-155.429 245.143h406.857l-155.429-245.143-11.429-17.714v-249.143h-73.143v249.143z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "flask"
+ ],
+ "defaultCode": 61635,
+ "grid": 14
+ },
+ {
+ "id": 173,
+ "paths": [
+ "M548.571 512c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571zM720 548.571l289.714 227.429c10.286 7.429 15.429 20 14.286 32-1.714 12.571-9.143 23.429-20 29.143l-73.143 36.571c-5.143 2.857-10.857 4-16.571 4-6.286 0-12.571-1.714-17.714-4.571l-394.286-221.143-62.857 37.714c-2.286 1.143-4.571 2.286-6.857 2.857 5.143 17.714 7.429 36.571 5.714 55.429-5.143 58.857-44.571 114.857-107.429 154.857-48.571 30.857-104.571 48-158.286 48-51.429 0-94.857-15.429-126.857-44.571-32.571-30.286-49.143-73.714-45.143-118.286 5.143-58.286 44.571-114.857 106.857-154.857 48.571-30.857 105.143-48 158.857-48 32 0 61.143 6.286 86.286 17.714 3.429-5.143 7.429-9.143 12.571-12.571l69.714-41.714-69.714-41.714c-5.143-3.429-9.143-7.429-12.571-12.571-25.143 11.429-54.286 17.714-86.286 17.714-53.714 0-110.286-17.143-158.857-48-62.286-40-101.714-96.571-106.857-154.857-4-44.571 12.571-88 45.143-117.714 32-29.714 75.429-45.143 126.857-45.143 53.714 0 109.714 17.143 158.286 48 62.857 39.429 102.286 96 107.429 154.857 1.714 18.857-0.571 37.714-5.714 55.429 2.286 0.571 4.571 1.714 6.857 2.857l62.857 37.714 394.286-221.143c5.143-2.857 11.429-4.571 17.714-4.571 5.714 0 11.429 1.143 16.571 4l73.143 36.571c10.857 5.714 18.286 16.571 20 29.143 1.143 12-4 24.571-14.286 32zM330.857 400c34.857-32 13.143-89.714-48.571-128.571-34.857-22.286-75.429-33.714-109.714-33.714-26.286 0-49.714 6.857-64.571 20.571-34.857 32-13.143 89.714 48.571 128.571 34.857 22.286 74.857 33.714 109.714 33.714 26.286 0 49.714-6.857 64.571-20.571zM282.286 825.714c61.714-38.857 83.429-96.571 48.571-128.571-14.857-13.714-38.286-20.571-64.571-20.571-34.857 0-74.857 11.429-109.714 33.714-61.714 38.857-83.429 96.571-48.571 128.571 14.857 13.714 38.286 20.571 64.571 20.571 34.286 0 74.857-11.429 109.714-33.714zM384 475.429l54.857 33.143v-6.286c0-13.143 7.429-25.143 18.857-32l8-4.571-45.143-26.857-14.857 14.857c-4.571 4.571-8 9.143-12.571 13.143-1.714 1.714-2.857 2.286-4 3.429zM512 603.429l54.857 18.286 420.571-329.143-73.143-36.571-438.857 246.286v64.571l-91.429 54.857 5.143 4.571c1.143 1.714 2.286 2.286 4 3.429 4.571 4.571 8 9.143 12.571 13.714l14.857 14.857zM914.286 841.143l73.143-36.571-297.143-233.143-101.143 78.857c-1.714 2.286-4.571 2.857-7.429 4z"
+ ],
+ "width": 1021.7325714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cut",
+ "scissors"
+ ],
+ "defaultCode": 61636,
+ "grid": 14
+ },
+ {
+ "id": 174,
+ "paths": [
+ "M969.143 219.429c30.286 0 54.857 24.571 54.857 54.857v694.857c0 30.286-24.571 54.857-54.857 54.857h-548.571c-30.286 0-54.857-24.571-54.857-54.857v-164.571h-310.857c-30.286 0-54.857-24.571-54.857-54.857v-384c0-30.286 17.714-72.571 38.857-93.714l233.143-233.143c21.143-21.143 63.429-38.857 93.714-38.857h237.714c30.286 0 54.857 24.571 54.857 54.857v187.429c22.286-13.143 50.857-22.857 73.143-22.857h237.714zM658.286 341.143l-170.857 170.857h170.857v-170.857zM292.571 121.714l-170.857 170.857h170.857v-170.857zM404.571 491.429l180.571-180.571v-237.714h-219.429v237.714c0 30.286-24.571 54.857-54.857 54.857h-237.714v365.714h292.571v-146.286c0-30.286 17.714-72.571 38.857-93.714zM950.857 950.857v-658.286h-219.429v237.714c0 30.286-24.571 54.857-54.857 54.857h-237.714v365.714h512z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "copy",
+ "files-o"
+ ],
+ "defaultCode": 61637,
+ "grid": 14
+ },
+ {
+ "id": 175,
+ "paths": [
+ "M802.286 791.429c0 89.143-68 157.143-157.143 157.143-50.286 0-98.857-21.714-134.286-57.143l-444-443.429c-40.571-41.143-64.571-97.143-64.571-154.857 0-121.143 95.429-217.714 216.571-217.714 58.286 0 114.286 23.429 156 64.571l345.714 346.286c3.429 3.429 5.714 8 5.714 12.571 0 12-32 44-44 44-5.143 0-9.714-2.286-13.143-5.714l-346.286-346.857c-27.429-26.857-64.571-44-103.429-44-81.143 0-144 65.714-144 146.286 0 38.857 16 76 43.429 103.429l443.429 444c21.714 21.714 52 36 82.857 36 48.571 0 84.571-36 84.571-84.571 0-31.429-14.286-61.143-36-82.857l-332-332c-9.143-8.571-21.714-13.714-34.286-13.714-21.714 0-38.286 16-38.286 38.286 0 12.571 5.714 24.571 14.286 33.714l234.286 234.286c3.429 3.429 5.714 8 5.714 12.571 0 12-32.571 44.571-44.571 44.571-4.571 0-9.143-2.286-12.571-5.714l-234.286-234.286c-22.857-22.286-36-53.714-36-85.143 0-62.857 49.143-112 112-112 32 0 62.857 13.143 85.143 36l332 332c36 35.429 57.143 84 57.143 134.286z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "paperclip"
+ ],
+ "defaultCode": 61638,
+ "grid": 14
+ },
+ {
+ "id": 176,
+ "paths": [
+ "M219.429 877.714h438.857v-219.429h-438.857v219.429zM731.429 877.714h73.143v-512c0-10.857-9.714-34.286-17.143-41.714l-160.571-160.571c-8-8-30.286-17.143-41.714-17.143v237.714c0 30.286-24.571 54.857-54.857 54.857h-329.143c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-73.143v731.429h73.143v-237.714c0-30.286 24.571-54.857 54.857-54.857h475.429c30.286 0 54.857 24.571 54.857 54.857v237.714zM512 347.429v-182.857c0-9.714-8.571-18.286-18.286-18.286h-109.714c-9.714 0-18.286 8.571-18.286 18.286v182.857c0 9.714 8.571 18.286 18.286 18.286h109.714c9.714 0 18.286-8.571 18.286-18.286zM877.714 365.714v530.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-768c0-30.286 24.571-54.857 54.857-54.857h530.286c30.286 0 72 17.143 93.714 38.857l160 160c21.714 21.714 38.857 63.429 38.857 93.714z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "floppy-o",
+ "save"
+ ],
+ "defaultCode": 61639,
+ "grid": 14
+ },
+ {
+ "id": 177,
+ "paths": [
+ "M877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "square"
+ ],
+ "defaultCode": 61640,
+ "grid": 14
+ },
+ {
+ "id": 178,
+ "paths": [
+ "M877.714 768v73.143c0 20-16.571 36.571-36.571 36.571h-804.571c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h804.571c20 0 36.571 16.571 36.571 36.571zM877.714 475.429v73.143c0 20-16.571 36.571-36.571 36.571h-804.571c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h804.571c20 0 36.571 16.571 36.571 36.571zM877.714 182.857v73.143c0 20-16.571 36.571-36.571 36.571h-804.571c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h804.571c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bars",
+ "navicon",
+ "reorder"
+ ],
+ "defaultCode": 61641,
+ "grid": 14
+ },
+ {
+ "id": 179,
+ "paths": [
+ "M219.429 804.571c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714 109.714 49.143 109.714 109.714zM219.429 512c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714 109.714 49.143 109.714 109.714zM1024 749.714v109.714c0 9.714-8.571 18.286-18.286 18.286h-694.857c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h694.857c9.714 0 18.286 8.571 18.286 18.286zM219.429 219.429c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714 109.714 49.143 109.714 109.714zM1024 457.143v109.714c0 9.714-8.571 18.286-18.286 18.286h-694.857c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h694.857c9.714 0 18.286 8.571 18.286 18.286zM1024 164.571v109.714c0 9.714-8.571 18.286-18.286 18.286h-694.857c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h694.857c9.714 0 18.286 8.571 18.286 18.286z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "list-ul"
+ ],
+ "defaultCode": 61642,
+ "grid": 14
+ },
+ {
+ "id": 180,
+ "paths": [
+ "M217.714 925.714c0 62.857-49.143 98.286-108.571 98.286-36 0-72.571-12-98.286-37.714l32.571-50.286c15.429 14.286 38.857 25.714 60.571 25.714 20 0 41.143-9.714 41.143-32.571 0-32-36.571-33.714-60-32l-14.857-32c20.571-26.286 39.429-55.429 64-77.714v-0.571c-18.286 0-37.143 1.143-55.429 1.143v30.286h-60.571v-86.857h190.286v50.286l-54.286 65.714c38.286 9.143 63.429 38.857 63.429 78.286zM218.857 567.429v90.857h-206.857c-1.714-10.286-3.429-20.571-3.429-30.857 0-105.714 129.143-121.714 129.143-169.714 0-19.429-12-29.714-30.857-29.714-20 0-36.571 17.143-46.286 33.143l-48.571-33.714c18.857-39.429 57.714-61.714 101.143-61.714 53.143 0 98.857 31.429 98.857 88 0 84.571-124 103.429-125.714 148h72.571v-34.286h60zM1024 749.714v109.714c0 9.714-8.571 18.286-18.286 18.286h-694.857c-10.286 0-18.286-8.571-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h694.857c9.714 0 18.286 8 18.286 18.286zM219.429 236v56.571h-191.429v-56.571h61.143c0-46.286 0.571-92.571 0.571-138.857v-6.857h-1.143c-6.286 12.571-17.714 21.143-28.571 30.857l-40.571-43.429 77.714-72.571h60.571v230.857h61.714zM1024 457.143v109.714c0 9.714-8.571 18.286-18.286 18.286h-694.857c-10.286 0-18.286-8.571-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h694.857c9.714 0 18.286 8 18.286 18.286zM1024 164.571v109.714c0 9.714-8.571 18.286-18.286 18.286h-694.857c-10.286 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8-18.286 18.286-18.286h694.857c9.714 0 18.286 8.571 18.286 18.286z"
+ ],
+ "width": 1032.5577142857144,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "list-ol"
+ ],
+ "defaultCode": 61643,
+ "grid": 14
+ },
+ {
+ "id": 181,
+ "paths": [
+ "M1005.714 512c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-987.429c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h987.429zM276 475.429c-10.857-13.714-20.571-29.143-29.143-45.714-18.286-37.143-27.429-73.143-27.429-107.429 0-69.714 25.714-128 76.571-176.571s125.714-72.571 224.571-72.571c21.714 0 53.143 4 95.429 10.857 25.143 4.571 58.857 13.714 101.143 27.429 4 14.857 8 37.714 12 67.429 5.143 45.143 8 80 8 104.571 0 8-1.143 16.571-2.857 25.714l-6.857 1.714-48-3.429-8-1.143c-19.429-57.714-39.429-96.571-58.857-117.143-33.714-34.857-74.286-52-120-52-43.429 0-78.286 11.429-104 33.714s-38.286 50.286-38.286 83.429c0 28 12.571 54.286 37.714 80s78.286 50.286 159.429 73.714c27.429 8 60 20.571 98.857 37.714 20.571 9.714 38.857 19.429 54.286 29.714h-424.571zM565.714 621.714h234.857c2.857 16 4 33.714 4 52.571 0 41.143-7.429 81.714-23.429 121.143-8.571 21.143-21.714 40.571-40.571 59.429-13.714 13.143-34.286 28.571-62.286 46.286-28.571 17.143-57.143 30.286-87.429 37.714-30.286 8-68.571 12-116 12-31.429 0-69.143-1.143-111.429-13.143l-80-22.857c-22.286-6.286-35.429-11.429-41.143-16-2.286-2.286-4.571-6.286-4.571-12.571v-7.429c0-4.571 1.143-34.286-1.143-89.143-1.143-28.571 1.143-48.571 1.143-60v-25.143l58.286-1.143c21.143 48.571 30.857 77.714 37.143 88 13.714 22.286 29.143 40 45.714 53.714s36.571 24.571 60 32.571c22.857 8.571 48.571 12.571 75.429 12.571 24 0 50.857-5.143 79.429-15.429 29.143-9.714 52.571-26.286 69.714-49.143 17.714-22.857 26.857-47.429 26.857-73.714 0-32-15.429-61.714-46.286-89.714-12.571-10.857-38.857-24.571-78.286-40.571z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "strikethrough"
+ ],
+ "defaultCode": 61644,
+ "grid": 14
+ },
+ {
+ "id": 182,
+ "paths": [
+ "M27.429 127.429c-10.286-0.571-18.857-0.571-25.714-2.286l-1.714-50.286c7.429-0.571 14.857-0.571 22.857-0.571 20 0 41.714 0.571 64 2.286 53.714 2.857 85.714 4 94.857 4 32.571 0 64.571-0.571 96-1.714 30.857-1.143 58.857-2.286 83.429-2.857 24 0 40.571-0.571 49.143-1.143l-0.571 8 1.143 36.571v5.143c-22.857 3.429-46.286 5.143-70.857 5.143-22.857 0-37.714 4.571-45.143 14.286-5.143 5.714-7.429 30.857-7.429 75.429 0 13.714 0.571 24.571 0.571 33.143l0.571 130.857 8 160c2.286 46.286 11.429 84.571 29.143 115.429 13.143 22.286 31.429 40 54.857 52.571 34.286 18.286 68 26.857 101.143 26.857 38.857 0 75.429-5.143 109.143-16 20-6.286 38.857-15.429 56.571-29.143 17.714-13.143 30.286-25.143 37.143-36.571 14.857-22.857 24.571-45.143 30.286-65.143 8-28 12-71.429 12-130.857 0-102.286-7.429-105.143-16-234.286l-2.286-33.714c-1.714-24.571-5.714-41.714-13.714-50.286-12.571-13.143-27.429-20-44-19.429l-57.143 1.143-8-1.714 1.143-49.143h48l117.143 5.714c38.857 1.714 76-1.714 112-5.714l10.286 1.143c2.286 14.286 3.429 24 3.429 29.143s-1.143 10.857-2.286 17.714c-15.429 4-31.429 6.857-48 7.429-26.857 4-42.286 6.857-45.143 9.714-5.143 5.143-8.571 12.571-8.571 23.429 0 7.429 1.143 18.857 1.714 33.143 0 0 4.571 10.286 12.571 226.286 2.857 86.286-2.857 144.571-8.571 173.714s-13.714 52.571-23.429 69.714c-14.857 25.143-36.571 48.571-64 70.286-28 21.143-62.286 38.286-104 50.857s-90.286 18.857-145.714 18.857c-62.857 0-117.143-8.571-162.286-26.286s-79.429-41.143-102.286-69.714-38.857-65.714-47.429-111.429c-6.286-31.429-9.143-76.571-9.143-135.429v-190.286c0-72-3.429-112.571-9.714-121.714-9.143-13.143-37.143-21.143-84-22.286zM877.714 932.571v-36.571c0-10.286-8-18.286-18.286-18.286h-841.143c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h841.143c10.286 0 18.286-8 18.286-18.286z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "underline"
+ ],
+ "defaultCode": 61645,
+ "grid": 14
+ },
+ {
+ "id": 183,
+ "paths": [
+ "M292.571 786.286v-109.714c0-10.286-8-18.286-18.286-18.286h-182.857c-10.286 0-18.286 8-18.286 18.286v109.714c0 10.286 8 18.286 18.286 18.286h182.857c10.286 0 18.286-8 18.286-18.286zM292.571 566.857v-109.714c0-10.286-8-18.286-18.286-18.286h-182.857c-10.286 0-18.286 8-18.286 18.286v109.714c0 10.286 8 18.286 18.286 18.286h182.857c10.286 0 18.286-8 18.286-18.286zM585.143 786.286v-109.714c0-10.286-8-18.286-18.286-18.286h-182.857c-10.286 0-18.286 8-18.286 18.286v109.714c0 10.286 8 18.286 18.286 18.286h182.857c10.286 0 18.286-8 18.286-18.286zM292.571 347.429v-109.714c0-10.286-8-18.286-18.286-18.286h-182.857c-10.286 0-18.286 8-18.286 18.286v109.714c0 10.286 8 18.286 18.286 18.286h182.857c10.286 0 18.286-8 18.286-18.286zM585.143 566.857v-109.714c0-10.286-8-18.286-18.286-18.286h-182.857c-10.286 0-18.286 8-18.286 18.286v109.714c0 10.286 8 18.286 18.286 18.286h182.857c10.286 0 18.286-8 18.286-18.286zM877.714 786.286v-109.714c0-10.286-8-18.286-18.286-18.286h-182.857c-10.286 0-18.286 8-18.286 18.286v109.714c0 10.286 8 18.286 18.286 18.286h182.857c10.286 0 18.286-8 18.286-18.286zM585.143 347.429v-109.714c0-10.286-8-18.286-18.286-18.286h-182.857c-10.286 0-18.286 8-18.286 18.286v109.714c0 10.286 8 18.286 18.286 18.286h182.857c10.286 0 18.286-8 18.286-18.286zM877.714 566.857v-109.714c0-10.286-8-18.286-18.286-18.286h-182.857c-10.286 0-18.286 8-18.286 18.286v109.714c0 10.286 8 18.286 18.286 18.286h182.857c10.286 0 18.286-8 18.286-18.286zM877.714 347.429v-109.714c0-10.286-8-18.286-18.286-18.286h-182.857c-10.286 0-18.286 8-18.286 18.286v109.714c0 10.286 8 18.286 18.286 18.286h182.857c10.286 0 18.286-8 18.286-18.286zM950.857 164.571v621.714c0 50.286-41.143 91.429-91.429 91.429h-768c-50.286 0-91.429-41.143-91.429-91.429v-621.714c0-50.286 41.143-91.429 91.429-91.429h768c50.286 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "table"
+ ],
+ "defaultCode": 61646,
+ "grid": 14
+ },
+ {
+ "id": 184,
+ "paths": [
+ "M680 332l167.429-167.429-61.143-61.143-167.429 167.429zM935.429 164.571c0 9.714-3.429 18.857-10.286 25.714l-734.857 734.857c-6.857 6.857-16 10.286-25.714 10.286s-18.857-3.429-25.714-10.286l-113.143-113.143c-6.857-6.857-10.286-16-10.286-25.714s3.429-18.857 10.286-25.714l734.857-734.857c6.857-6.857 16-10.286 25.714-10.286s18.857 3.429 25.714 10.286l113.143 113.143c6.857 6.857 10.286 16 10.286 25.714zM163.429 56l56 17.143-56 17.143-17.143 56-17.143-56-56-17.143 56-17.143 17.143-56zM363.429 148.571l112 34.286-112 34.286-34.286 112-34.286-112-112-34.286 112-34.286 34.286-112zM894.857 421.714l56 17.143-56 17.143-17.143 56-17.143-56-56-17.143 56-17.143 17.143-56zM529.143 56l56 17.143-56 17.143-17.143 56-17.143-56-56-17.143 56-17.143 17.143-56z"
+ ],
+ "width": 966.2902857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "magic"
+ ],
+ "defaultCode": 61648,
+ "grid": 14
+ },
+ {
+ "id": 185,
+ "paths": [
+ "M365.714 804.571c0-40-33.143-73.143-73.143-73.143s-73.143 33.143-73.143 73.143 33.143 73.143 73.143 73.143 73.143-33.143 73.143-73.143zM146.286 512h219.429v-146.286h-90.286c-2.286 0-10.857 3.429-12.571 5.143l-111.429 111.429c-1.714 1.714-5.143 10.286-5.143 12.571v17.143zM877.714 804.571c0-40-33.143-73.143-73.143-73.143s-73.143 33.143-73.143 73.143 33.143 73.143 73.143 73.143 73.143-33.143 73.143-73.143zM1024 182.857v585.143c0 42.286-44.571 36.571-73.143 36.571 0 80.571-65.714 146.286-146.286 146.286s-146.286-65.714-146.286-146.286h-219.429c0 80.571-65.714 146.286-146.286 146.286s-146.286-65.714-146.286-146.286h-36.571c-28.571 0-73.143 5.714-73.143-36.571 0-20 16.571-36.571 36.571-36.571v-182.857c0-40.571-5.714-85.714 25.714-117.143l113.143-113.143c14.286-14.286 41.714-25.714 62.286-25.714h91.429v-109.714c0-20 16.571-36.571 36.571-36.571h585.143c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 1060.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "truck"
+ ],
+ "defaultCode": 61649,
+ "grid": 14
+ },
+ {
+ "id": 186,
+ "paths": [
+ "M877.714 512c0 242.286-196.571 438.857-438.857 438.857-43.429 0-84.571-6.286-124.571-18.286 16.571-26.286 35.429-60 44.571-93.714 0 0 5.143-19.429 30.857-120.571 14.857 29.143 59.429 54.857 106.857 54.857 141.143 0 237.143-128.571 237.143-301.143 0-129.714-110.286-251.429-278.286-251.429-208 0-313.143 149.714-313.143 274.286 0 75.429 28.571 142.857 89.714 168 9.714 4 18.857 0 21.714-11.429 2.286-7.429 6.857-26.857 9.143-34.857 2.857-11.429 1.714-14.857-6.286-24.571-17.714-21.143-29.143-48-29.143-86.286 0-110.857 82.857-210.286 216-210.286 117.714 0 182.857 72 182.857 168.571 0 126.286-56 233.143-139.429 233.143-45.714 0-80-37.714-69.143-84.571 13.143-55.429 38.857-115.429 38.857-155.429 0-36-19.429-66.286-59.429-66.286-46.857 0-84.571 48.571-84.571 113.714 0 0 0 41.714 14.286 69.714-48 203.429-56.571 238.857-56.571 238.857-8 33.143-8.571 70.286-7.429 101.143-154.857-68-262.857-222.286-262.857-402.286 0-242.286 196.571-438.857 438.857-438.857s438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pinterest"
+ ],
+ "defaultCode": 61650,
+ "grid": 14
+ },
+ {
+ "id": 187,
+ "paths": [
+ "M713.143 73.143c90.857 0 164.571 73.714 164.571 164.571v548.571c0 90.857-73.714 164.571-164.571 164.571h-414.286c18.857-26.857 49.714-73.143 61.714-120 0 0 5.143-19.429 30.286-119.429 15.429 29.143 59.429 54.286 106.286 54.286 139.429 0 234.286-127.429 234.286-297.714 0-128.571-109.143-248.571-274.857-248.571-206.286 0-310.286 148-310.286 271.429 0 74.286 28.571 140.571 89.143 165.714 9.714 4 18.857 0 21.714-10.857 1.714-7.429 6.286-26.857 8.571-34.857 2.857-10.857 1.714-14.857-6.286-24-17.143-21.143-28.571-47.429-28.571-85.714 0-109.714 82.286-207.429 213.714-207.429 116.571 0 180.571 70.857 180.571 166.286 0 125.143-55.429 230.857-137.714 230.857-45.143 0-79.429-37.714-68.571-84 13.143-54.857 38.286-114.286 38.286-153.714 0-35.429-18.857-65.143-58.286-65.143-46.286 0-83.429 48-83.429 112 0 0 0 41.143 13.714 69.143-47.429 201.143-56 236.571-56 236.571-12.571 52.571-7.429 113.714-4 145.143h-104.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pinterest-square"
+ ],
+ "defaultCode": 61651,
+ "grid": 14
+ },
+ {
+ "id": 188,
+ "paths": [
+ "M524 517.143c0-14.286-1.714-25.714-3.429-36.571h-206.857v75.429h124c-4.571 32-37.143 94.286-124 94.286-75.429 0-136.571-61.714-136.571-138.286s61.143-138.286 136.571-138.286c42.286 0 70.857 17.714 87.429 33.714l59.429-57.714c-38.286-35.429-88-57.143-146.857-57.143-121.714 0-219.429 98.286-219.429 219.429s97.714 219.429 219.429 219.429c126.286 0 210.286-89.143 210.286-214.286zM721.143 543.429h62.286v-62.857h-62.286v-62.857h-62.857v62.857h-62.857v62.857h62.857v62.857h62.857v-62.857zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "google-plus-square"
+ ],
+ "defaultCode": 61652,
+ "grid": 14
+ },
+ {
+ "id": 189,
+ "paths": [
+ "M821.143 521.714c0 239.429-160.571 409.143-402.286 409.143-231.429 0-418.857-187.429-418.857-418.857s187.429-418.857 418.857-418.857c113.143 0 207.429 41.143 280.571 109.714l-113.714 109.143c-30.857-29.714-85.143-64.571-166.857-64.571-142.857 0-259.429 118.286-259.429 264.571s116.571 264.571 259.429 264.571c165.714 0 228-119.429 237.714-180.571h-237.714v-144h395.429c4 21.143 6.857 42.286 6.857 69.714zM1316.571 452v120h-119.429v119.429h-120v-119.429h-119.429v-120h119.429v-119.429h120v119.429h119.429z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "google-plus"
+ ],
+ "defaultCode": 61653,
+ "grid": 14
+ },
+ {
+ "id": 190,
+ "paths": [
+ "M438.857 658.286h219.429v-54.857h-73.143v-256h-65.143l-84.571 78.286 44 45.714c13.714-12 22.286-18.286 31.429-32.571h1.143v164.571h-73.143v54.857zM731.429 512c0 104-62.857 237.714-182.857 237.714s-182.857-133.714-182.857-237.714 62.857-237.714 182.857-237.714 182.857 133.714 182.857 237.714zM1024 658.286v-292.571c-80.571 0-146.286-65.714-146.286-146.286h-658.286c0 80.571-65.714 146.286-146.286 146.286v292.571c80.571 0 146.286 65.714 146.286 146.286h658.286c0-80.571 65.714-146.286 146.286-146.286zM1097.143 182.857v658.286c0 20-16.571 36.571-36.571 36.571h-1024c-20 0-36.571-16.571-36.571-36.571v-658.286c0-20 16.571-36.571 36.571-36.571h1024c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "money"
+ ],
+ "defaultCode": 61654,
+ "grid": 14
+ },
+ {
+ "id": 191,
+ "paths": [
+ "M585.143 402.286c0 9.714-4 18.857-10.857 25.714l-256 256c-6.857 6.857-16 10.857-25.714 10.857s-18.857-4-25.714-10.857l-256-256c-6.857-6.857-10.857-16-10.857-25.714 0-20 16.571-36.571 36.571-36.571h512c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 585.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "caret-down"
+ ],
+ "defaultCode": 61655,
+ "grid": 14
+ },
+ {
+ "id": 192,
+ "paths": [
+ "M585.143 694.857c0 20-16.571 36.571-36.571 36.571h-512c-20 0-36.571-16.571-36.571-36.571 0-9.714 4-18.857 10.857-25.714l256-256c6.857-6.857 16-10.857 25.714-10.857s18.857 4 25.714 10.857l256 256c6.857 6.857 10.857 16 10.857 25.714z"
+ ],
+ "width": 585.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "caret-up"
+ ],
+ "defaultCode": 61656,
+ "grid": 14
+ },
+ {
+ "id": 193,
+ "paths": [
+ "M365.714 256v512c0 20-16.571 36.571-36.571 36.571-9.714 0-18.857-4-25.714-10.857l-256-256c-6.857-6.857-10.857-16-10.857-25.714s4-18.857 10.857-25.714l256-256c6.857-6.857 16-10.857 25.714-10.857 20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 402.2857142857143,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "caret-left"
+ ],
+ "defaultCode": 61657,
+ "grid": 14
+ },
+ {
+ "id": 194,
+ "paths": [
+ "M329.143 512c0 9.714-4 18.857-10.857 25.714l-256 256c-6.857 6.857-16 10.857-25.714 10.857-20 0-36.571-16.571-36.571-36.571v-512c0-20 16.571-36.571 36.571-36.571 9.714 0 18.857 4 25.714 10.857l256 256c6.857 6.857 10.857 16 10.857 25.714z"
+ ],
+ "width": 329.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "caret-right"
+ ],
+ "defaultCode": 61658,
+ "grid": 14
+ },
+ {
+ "id": 195,
+ "paths": [
+ "M91.429 877.714h347.429v-658.286h-365.714v640c0 9.714 8.571 18.286 18.286 18.286zM877.714 859.429v-640h-365.714v658.286h347.429c9.714 0 18.286-8.571 18.286-18.286zM950.857 164.571v694.857c0 50.286-41.143 91.429-91.429 91.429h-768c-50.286 0-91.429-41.143-91.429-91.429v-694.857c0-50.286 41.143-91.429 91.429-91.429h768c50.286 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "columns"
+ ],
+ "defaultCode": 61659,
+ "grid": 14
+ },
+ {
+ "id": 196,
+ "paths": [
+ "M585.143 621.714c0 9.714-4 18.857-10.857 25.714l-256 256c-6.857 6.857-16 10.857-25.714 10.857s-18.857-4-25.714-10.857l-256-256c-6.857-6.857-10.857-16-10.857-25.714 0-20 16.571-36.571 36.571-36.571h512c20 0 36.571 16.571 36.571 36.571zM585.143 402.286c0 20-16.571 36.571-36.571 36.571h-512c-20 0-36.571-16.571-36.571-36.571 0-9.714 4-18.857 10.857-25.714l256-256c6.857-6.857 16-10.857 25.714-10.857s18.857 4 25.714 10.857l256 256c6.857 6.857 10.857 16 10.857 25.714z"
+ ],
+ "width": 585.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sort",
+ "unsorted"
+ ],
+ "defaultCode": 61660,
+ "grid": 14
+ },
+ {
+ "id": 197,
+ "paths": [
+ "M585.143 621.714c0 9.714-4 18.857-10.857 25.714l-256 256c-6.857 6.857-16 10.857-25.714 10.857s-18.857-4-25.714-10.857l-256-256c-6.857-6.857-10.857-16-10.857-25.714 0-20 16.571-36.571 36.571-36.571h512c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 585.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sort-desc",
+ "sort-down"
+ ],
+ "defaultCode": 61661,
+ "grid": 14
+ },
+ {
+ "id": 198,
+ "paths": [
+ "M585.143 402.286c0 20-16.571 36.571-36.571 36.571h-512c-20 0-36.571-16.571-36.571-36.571 0-9.714 4-18.857 10.857-25.714l256-256c6.857-6.857 16-10.857 25.714-10.857s18.857 4 25.714 10.857l256 256c6.857 6.857 10.857 16 10.857 25.714z"
+ ],
+ "width": 585.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sort-asc",
+ "sort-up"
+ ],
+ "defaultCode": 61662,
+ "grid": 14
+ },
+ {
+ "id": 199,
+ "paths": [
+ "M1024 405.714v453.714c0 50.286-41.143 91.429-91.429 91.429h-841.143c-50.286 0-91.429-41.143-91.429-91.429v-453.714c17.143 18.857 36.571 35.429 57.714 49.714 94.857 64.571 190.857 129.143 284 197.143 48 35.429 107.429 78.857 169.714 78.857h1.143c62.286 0 121.714-43.429 169.714-78.857 93.143-67.429 189.143-132.571 284.571-197.143 20.571-14.286 40-30.857 57.143-49.714zM1024 237.714c0 64-47.429 121.714-97.714 156.571-89.143 61.714-178.857 123.429-267.429 185.714-37.143 25.714-100 78.286-146.286 78.286h-1.143c-46.286 0-109.143-52.571-146.286-78.286-88.571-62.286-178.286-124-266.857-185.714-40.571-27.429-98.286-92-98.286-144 0-56 30.286-104 91.429-104h841.143c49.714 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "envelope"
+ ],
+ "defaultCode": 61664,
+ "grid": 14
+ },
+ {
+ "id": 200,
+ "paths": [
+ "M199.429 357.143v566.286h-188.571v-566.286h188.571zM211.429 182.286c0.571 54.286-40.571 97.714-106.286 97.714v0h-1.143c-63.429 0-104-43.429-104-97.714 0-55.429 42.286-97.714 106.286-97.714 64.571 0 104.571 42.286 105.143 97.714zM877.714 598.857v324.571h-188v-302.857c0-76-27.429-128-95.429-128-52 0-82.857 34.857-96.571 68.571-4.571 12.571-6.286 29.143-6.286 46.286v316h-188c2.286-513.143 0-566.286 0-566.286h188v82.286h-1.143c24.571-38.857 69.143-95.429 170.857-95.429 124 0 216.571 81.143 216.571 254.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "linkedin"
+ ],
+ "defaultCode": 61665,
+ "grid": 14
+ },
+ {
+ "id": 201,
+ "paths": [
+ "M877.714 512c0 241.714-197.143 438.857-438.857 438.857-130.857 0-254.286-57.714-337.714-158.286-5.714-7.429-5.143-18.286 1.143-24.571l78.286-78.857c4-3.429 9.143-5.143 14.286-5.143 5.143 0.571 10.286 2.857 13.143 6.857 56 72.571 140 113.714 230.857 113.714 161.143 0 292.571-131.429 292.571-292.571s-131.429-292.571-292.571-292.571c-74.857 0-145.714 28.571-198.857 78.286l78.286 78.857c10.857 10.286 13.714 26.286 8 39.429-5.714 13.714-18.857 22.857-33.714 22.857h-256c-20 0-36.571-16.571-36.571-36.571v-256c0-14.857 9.143-28 22.857-33.714 13.143-5.714 29.143-2.857 39.429 8l74.286 73.714c80.571-76 189.714-121.143 302.286-121.143 241.714 0 438.857 197.143 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "rotate-left",
+ "undo"
+ ],
+ "defaultCode": 61666,
+ "grid": 14
+ },
+ {
+ "id": 202,
+ "paths": [
+ "M1012 877.714c0 19.429-8 38.286-21.143 51.429l-61.143 61.714c-13.714 13.143-32.571 21.143-52 21.143s-38.286-8-51.429-21.143l-207.429-208c-13.714-13.143-21.714-32-21.714-51.429 0-21.714 9.143-39.429 24.571-54.857l-146.286-146.286-72 72c-5.143 5.143-12 8-19.429 8s-14.286-2.857-19.429-8c17.143 17.143 33.143 29.714 33.143 56 0 14.857-5.714 28-16 38.857-19.429 20.571-40 48-70.857 48-14.286 0-28.571-5.714-38.857-16l-233.143-233.143c-10.286-10.286-16-24.571-16-38.857 0-30.857 27.429-51.429 48-70.857 10.857-10.286 24-16 38.857-16 26.286 0 38.857 16 56 33.143-5.143-5.143-8-12-8-19.429s2.857-14.286 8-19.429l198.857-198.857c5.143-5.143 12-8 19.429-8s14.286 2.857 19.429 8c-17.143-17.143-33.143-29.714-33.143-56 0-14.857 5.714-28 16-38.857 19.429-20.571 40-48 70.857-48 14.286 0 28.571 5.714 38.857 16l233.143 233.143c10.286 10.286 16 24.571 16 38.857 0 30.857-27.429 51.429-48 70.857-10.857 10.286-24 16-38.857 16-26.286 0-38.857-16-56-33.143 5.143 5.143 8 12 8 19.429s-2.857 14.286-8 19.429l-72 72 146.286 146.286c15.429-15.429 33.143-24.571 54.857-24.571 19.429 0 38.286 8 52 21.143l207.429 207.429c13.143 13.714 21.143 32.571 21.143 52z"
+ ],
+ "width": 1034.8251428571427,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "gavel",
+ "legal"
+ ],
+ "defaultCode": 61667,
+ "grid": 14
+ },
+ {
+ "id": 203,
+ "paths": [
+ "M219.429 658.286c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM329.143 402.286c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM573.714 677.143l57.714-218.286c4.571-19.429-6.857-39.429-26.286-44.571v0c-19.429-5.143-39.429 6.857-44.571 26.286l-57.714 218.286c-45.143 3.429-84.571 34.857-97.143 81.143-15.429 58.857 20 118.857 78.286 134.286 58.857 15.429 118.857-20 134.286-78.286 12-46.286-7.429-93.143-44.571-118.857zM950.857 658.286c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM585.143 292.571c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM841.143 402.286c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM1024 658.286c0 98.286-28 193.143-80.571 276-6.857 10.286-18.286 16.571-30.857 16.571h-801.143c-12.571 0-24-6.286-30.857-16.571-52.571-82.286-80.571-177.714-80.571-276 0-282.286 229.714-512 512-512s512 229.714 512 512z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "dashboard",
+ "tachometer"
+ ],
+ "defaultCode": 61668,
+ "grid": 14
+ },
+ {
+ "id": 204,
+ "paths": [
+ "M512 219.429c-237.714 0-438.857 133.714-438.857 292.571 0 85.143 57.143 166.286 156 222.286l49.714 28.571-15.429 54.857c-10.857 40.571-25.143 72-40 98.286 57.714-24 110.286-56.571 157.143-97.714l24.571-21.714 32.571 3.429c24.571 2.857 49.714 4.571 74.286 4.571 237.714 0 438.857-133.714 438.857-292.571s-201.143-292.571-438.857-292.571zM1024 512c0 202.286-229.143 365.714-512 365.714-28 0-56-1.714-82.857-4.571-74.857 66.286-164 113.143-262.857 138.286-20.571 5.714-42.857 9.714-65.143 12.571h-2.857c-11.429 0-21.714-9.143-24.571-21.714v-0.571c-2.857-14.286 6.857-22.857 15.429-33.143 36-40.571 77.143-74.857 104-170.286-117.714-66.857-193.143-170.286-193.143-286.286 0-202.286 229.143-365.714 512-365.714v0c282.857 0 512 163.429 512 365.714z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "comment-o"
+ ],
+ "defaultCode": 61669,
+ "grid": 14
+ },
+ {
+ "id": 205,
+ "paths": [
+ "M402.286 219.429c-178.286 0-329.143 100.571-329.143 219.429 0 62.857 42.286 123.429 115.429 165.714l55.429 32-20 48c12-6.857 24-14.286 35.429-22.286l25.143-17.714 30.286 5.714c28.571 5.143 57.714 8 87.429 8 178.286 0 329.143-100.571 329.143-219.429s-150.857-219.429-329.143-219.429zM402.286 146.286c222.286 0 402.286 130.857 402.286 292.571s-180 292.571-402.286 292.571c-34.857 0-68.571-3.429-100.571-9.143-47.429 33.714-101.143 58.286-158.857 73.143-15.429 4-32 6.857-49.143 9.143h-1.714c-8.571 0-16.571-6.857-18.286-16.571v0c-2.286-10.857 5.143-17.714 11.429-25.143 22.286-25.143 47.429-47.429 66.857-94.857-92.571-53.714-152-136.571-152-229.143 0-161.714 180-292.571 402.286-292.571zM872 814.286c19.429 47.429 44.571 69.714 66.857 94.857 6.286 7.429 13.714 14.286 11.429 25.143v0c-2.286 10.286-10.857 17.714-20 16.571-17.143-2.286-33.714-5.143-49.143-9.143-57.714-14.857-111.429-39.429-158.857-73.143-32 5.714-65.714 9.143-100.571 9.143-103.429 0-198.286-28.571-269.714-75.429 16.571 1.143 33.714 2.286 50.286 2.286 122.857 0 238.857-35.429 327.429-99.429 95.429-69.714 148-164 148-266.286 0-29.714-4.571-58.857-13.143-86.857 96.571 53.143 159.429 137.714 159.429 233.143 0 93.143-59.429 175.429-152 229.143z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "comments-o"
+ ],
+ "defaultCode": 61670,
+ "grid": 14
+ },
+ {
+ "id": 206,
+ "paths": [
+ "M505.714 323.429c6.286 6.857 8 16.571 4 25.143l-308.571 661.143c-4.571 8.571-13.714 14.286-24 14.286-2.286 0-5.143-0.571-8-1.143-12.571-4-20-16-17.143-28l112.571-461.714-232 57.714c-2.286 0.571-4.571 0.571-6.857 0.571-6.286 0-13.143-2.286-17.714-6.286-6.857-5.714-9.143-14.286-7.429-22.286l114.857-471.429c2.857-10.857 13.143-18.286 25.143-18.286h187.429c14.286 0 25.714 10.857 25.714 24 0 3.429-1.143 6.857-2.857 10.286l-97.714 264.571 226.286-56c2.286-0.571 4.571-1.143 6.857-1.143 7.429 0 14.286 3.429 19.429 8.571z"
+ ],
+ "width": 512.5851428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bolt",
+ "flash"
+ ],
+ "defaultCode": 61671,
+ "grid": 14
+ },
+ {
+ "id": 207,
+ "paths": [
+ "M1024 713.143v182.857c0 30.286-24.571 54.857-54.857 54.857h-182.857c-30.286 0-54.857-24.571-54.857-54.857v-182.857c0-30.286 24.571-54.857 54.857-54.857h54.857v-109.714h-292.571v109.714h54.857c30.286 0 54.857 24.571 54.857 54.857v182.857c0 30.286-24.571 54.857-54.857 54.857h-182.857c-30.286 0-54.857-24.571-54.857-54.857v-182.857c0-30.286 24.571-54.857 54.857-54.857h54.857v-109.714h-292.571v109.714h54.857c30.286 0 54.857 24.571 54.857 54.857v182.857c0 30.286-24.571 54.857-54.857 54.857h-182.857c-30.286 0-54.857-24.571-54.857-54.857v-182.857c0-30.286 24.571-54.857 54.857-54.857h54.857v-109.714c0-40 33.143-73.143 73.143-73.143h292.571v-109.714h-54.857c-30.286 0-54.857-24.571-54.857-54.857v-182.857c0-30.286 24.571-54.857 54.857-54.857h182.857c30.286 0 54.857 24.571 54.857 54.857v182.857c0 30.286-24.571 54.857-54.857 54.857h-54.857v109.714h292.571c40 0 73.143 33.143 73.143 73.143v109.714h54.857c30.286 0 54.857 24.571 54.857 54.857z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sitemap"
+ ],
+ "defaultCode": 61672,
+ "grid": 14
+ },
+ {
+ "id": 208,
+ "paths": [
+ "M512 473.143v331.429c0 79.429-66.857 146.286-146.286 146.286s-146.286-66.857-146.286-146.286c0-20 16.571-36.571 36.571-36.571s36.571 16.571 36.571 36.571c0 38.286 34.857 73.143 73.143 73.143s73.143-34.857 73.143-73.143v-331.429c12-4 24-6.286 36.571-6.286s24.571 2.286 36.571 6.286zM950.857 488.571c0 9.714-8.571 18.286-18.286 18.286-5.143 0-9.143-2.286-13.143-5.714-33.143-30.857-64-52.571-111.429-52.571-54.286 0-101.143 33.714-132 76.571-6.857 9.714-12 20-18.286 29.714-4 6.286-8.571 9.714-16 9.714-8 0-12.571-3.429-16.571-9.714-6.286-9.714-11.429-20-18.286-29.714-30.857-42.857-77.143-76.571-131.429-76.571s-100.571 33.714-131.429 76.571c-6.857 9.714-12 20-18.286 29.714-4 6.286-8.571 9.714-16.571 9.714-7.429 0-12-3.429-16-9.714-6.286-9.714-11.429-20-18.286-29.714-30.857-42.857-77.714-76.571-132-76.571-47.429 0-78.286 21.714-111.429 52.571-4 3.429-8 5.714-13.143 5.714-9.714 0-18.286-8.571-18.286-18.286 0-1.714 0-2.857 0.571-4 52.571-216 261.143-338.286 474.857-338.286 212.571 0 423.429 122.286 474.857 338.286 0.571 1.143 0.571 2.286 0.571 4zM512 73.143v56c-12-0.571-24.571-1.143-36.571-1.143s-24.571 0.571-36.571 1.143v-56c0-20 16.571-36.571 36.571-36.571s36.571 16.571 36.571 36.571z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "umbrella"
+ ],
+ "defaultCode": 61673,
+ "grid": 14
+ },
+ {
+ "id": 209,
+ "paths": [
+ "M438.857 950.857h512v-365.714h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-219.429v658.286zM585.143 128v-36.571c0-9.714-8.571-18.286-18.286-18.286h-402.286c-9.714 0-18.286 8.571-18.286 18.286v36.571c0 9.714 8.571 18.286 18.286 18.286h402.286c9.714 0 18.286-8.571 18.286-18.286zM731.429 512h170.857l-170.857-170.857v170.857zM1024 585.143v384c0 30.286-24.571 54.857-54.857 54.857h-548.571c-30.286 0-54.857-24.571-54.857-54.857v-91.429h-310.857c-30.286 0-54.857-24.571-54.857-54.857v-768c0-30.286 24.571-54.857 54.857-54.857h621.714c30.286 0 54.857 24.571 54.857 54.857v187.429c7.429 4.571 14.286 9.714 20.571 16l233.143 233.143c21.714 21.714 38.857 63.429 38.857 93.714z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "clipboard",
+ "paste"
+ ],
+ "defaultCode": 61674,
+ "grid": 14
+ },
+ {
+ "id": 210,
+ "paths": [
+ "M420.571 329.143c0 9.714-8.571 18.286-18.286 18.286s-18.286-8.571-18.286-18.286c0-39.429-61.143-54.857-91.429-54.857-9.714 0-18.286-8.571-18.286-18.286s8.571-18.286 18.286-18.286c53.143 0 128 28 128 91.429zM512 329.143c0-114.286-116-182.857-219.429-182.857s-219.429 68.571-219.429 182.857c0 36.571 14.857 74.857 38.857 102.857 10.857 12.571 23.429 24.571 34.857 37.714 40.571 48.571 74.857 105.714 80.571 170.286h130.286c5.714-64.571 40-121.714 80.571-170.286 11.429-13.143 24-25.143 34.857-37.714 24-28 38.857-66.286 38.857-102.857zM585.143 329.143c0 58.857-19.429 109.714-58.857 153.143s-91.429 104.571-96 165.714c16.571 9.714 26.857 28 26.857 46.857 0 13.714-5.143 26.857-14.286 36.571 9.143 9.714 14.286 22.857 14.286 36.571 0 18.857-9.714 36-25.714 46.286 4.571 8 7.429 17.714 7.429 26.857 0 37.143-29.143 54.857-62.286 54.857-14.857 33.143-48 54.857-84 54.857s-69.143-21.714-84-54.857c-33.143 0-62.286-17.714-62.286-54.857 0-9.143 2.857-18.857 7.429-26.857-16-10.286-25.714-27.429-25.714-46.286 0-13.714 5.143-26.857 14.286-36.571-9.143-9.714-14.286-22.857-14.286-36.571 0-18.857 10.286-37.143 26.857-46.857-4.571-61.143-56.571-122.286-96-165.714s-58.857-94.286-58.857-153.143c0-155.429 148-256 292.571-256s292.571 100.571 292.571 256z"
+ ],
+ "width": 585.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "lightbulb-o"
+ ],
+ "defaultCode": 61675,
+ "grid": 14
+ },
+ {
+ "id": 211,
+ "paths": [
+ "M1024 676.571v109.714c0 9.714-8.571 18.286-18.286 18.286h-786.286v109.714c0 9.714-8 18.286-18.286 18.286-5.143 0-9.714-2.286-13.714-5.714l-182.286-182.857c-3.429-3.429-5.143-8-5.143-12.571 0-5.143 1.714-9.714 5.143-13.143l182.857-182.857c3.429-3.429 8.571-5.143 13.143-5.143 9.714 0 18.286 8 18.286 18.286v109.714h786.286c9.714 0 18.286 8 18.286 18.286zM1024 365.714c0 4.571-1.714 9.714-5.143 13.143l-182.857 182.857c-3.429 3.429-8.571 5.143-13.143 5.143-9.714 0-18.286-8.571-18.286-18.286v-109.714h-786.286c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h786.286v-109.714c0-10.286 8-18.286 18.286-18.286 5.143 0 9.714 2.286 13.714 5.714l182.286 182.286c3.429 3.429 5.143 8.571 5.143 13.143z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "exchange"
+ ],
+ "defaultCode": 61676,
+ "grid": 14
+ },
+ {
+ "id": 212,
+ "paths": [
+ "M731.429 530.286c0-10.286-8-18.286-18.286-18.286h-128v-201.143c0-9.714-8.571-18.286-18.286-18.286h-109.714c-9.714 0-18.286 8.571-18.286 18.286v201.143h-128c-10.286 0-18.286 8.571-18.286 18.286 0 4.571 1.714 9.714 5.143 13.143l201.143 201.143c3.429 3.429 8 5.143 13.143 5.143 4.571 0 9.714-1.714 13.143-5.143l200.571-200.571c3.429-4 5.714-8.571 5.714-13.714zM1097.143 658.286c0 121.143-98.286 219.429-219.429 219.429h-621.714c-141.143 0-256-114.857-256-256 0-99.429 57.714-189.714 147.429-231.429-0.571-8.571-1.143-16.571-1.143-24.571 0-161.714 130.857-292.571 292.571-292.571 118.857 0 225.714 72 270.857 181.714 26.286-22.857 60-35.429 94.857-35.429 80.571 0 146.286 65.714 146.286 146.286 0 28-8 55.429-23.429 78.857 99.429 23.429 169.714 112 169.714 213.714z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cloud-download"
+ ],
+ "defaultCode": 61677,
+ "grid": 14
+ },
+ {
+ "id": 213,
+ "paths": [
+ "M731.429 493.714c0-4.571-1.714-9.714-5.143-13.143l-201.143-201.143c-3.429-3.429-8-5.143-13.143-5.143-4.571 0-9.714 1.714-13.143 5.143l-200.571 200.571c-3.429 4-5.714 8.571-5.714 13.714 0 10.286 8 18.286 18.286 18.286h128v201.143c0 9.714 8.571 18.286 18.286 18.286h109.714c9.714 0 18.286-8.571 18.286-18.286v-201.143h128c10.286 0 18.286-8.571 18.286-18.286zM1097.143 658.286c0 121.143-98.286 219.429-219.429 219.429h-621.714c-141.143 0-256-114.857-256-256 0-99.429 57.714-189.714 147.429-231.429-0.571-8.571-1.143-16.571-1.143-24.571 0-161.714 130.857-292.571 292.571-292.571 118.857 0 225.714 72 270.857 181.714 26.286-22.857 60-35.429 94.857-35.429 80.571 0 146.286 65.714 146.286 146.286 0 28-8 55.429-23.429 78.857 99.429 23.429 169.714 112 169.714 213.714z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cloud-upload"
+ ],
+ "defaultCode": 61678,
+ "grid": 14
+ },
+ {
+ "id": 214,
+ "paths": [
+ "M219.429 768c0 20-16.571 36.571-36.571 36.571s-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571 36.571 16.571 36.571 36.571zM804.571 802.857c0 93.143-61.143 148-152.571 148h-499.429c-91.429 0-152.571-54.857-152.571-148 0-113.714 22.857-293.143 158.857-322.857-9.143 21.714-12.571 45.143-12.571 68.571v116c-44 15.429-73.143 57.143-73.143 103.429 0 60.571 49.143 109.714 109.714 109.714s109.714-49.143 109.714-109.714c0-46.286-29.714-88-73.143-103.429v-116c0-18.857 1.714-37.714 14.286-53.143 48 37.714 107.429 59.429 168.571 59.429s120.571-21.714 168.571-59.429c12.571 15.429 14.286 34.286 14.286 53.143v36.571c-80.571 0-146.286 65.714-146.286 146.286v50.857c-11.429 10.286-18.286 25.143-18.286 40.571 0 30.286 24.571 54.857 54.857 54.857s54.857-24.571 54.857-54.857c0-15.429-6.857-30.286-18.286-40.571v-50.857c0-40 33.143-73.143 73.143-73.143s73.143 33.143 73.143 73.143v50.857c-11.429 10.286-18.286 25.143-18.286 40.571 0 30.286 24.571 54.857 54.857 54.857s54.857-24.571 54.857-54.857c0-15.429-6.857-30.286-18.286-40.571v-50.857c0-52-28-100.571-73.143-126.286 0-41.714 4-86.286-12.571-125.143 136 29.714 158.857 209.143 158.857 322.857zM621.714 292.571c0 121.143-98.286 219.429-219.429 219.429s-219.429-98.286-219.429-219.429 98.286-219.429 219.429-219.429 219.429 98.286 219.429 219.429z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "user-md"
+ ],
+ "defaultCode": 61680,
+ "grid": 14
+ },
+ {
+ "id": 215,
+ "paths": [
+ "M731.429 402.286c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM804.571 402.286c0 48-30.286 88-73.143 103.429v225.714c0 121.143-114.857 219.429-256 219.429s-256-98.286-256-219.429v-75.429c-124-15.429-219.429-106.857-219.429-217.143v-292.571c0-20 16.571-36.571 36.571-36.571 3.429 0 6.286 0.571 9.143 1.143 12.571-22.286 36.571-37.714 64-37.714 40.571 0 73.143 32.571 73.143 73.143s-32.571 73.143-73.143 73.143c-13.143 0-25.714-4-36.571-10.286v229.714c0 80.571 82.286 146.286 182.857 146.286s182.857-65.714 182.857-146.286v-229.714c-10.857 6.286-23.429 10.286-36.571 10.286-40.571 0-73.143-32.571-73.143-73.143s32.571-73.143 73.143-73.143c27.429 0 51.429 15.429 64 37.714 2.857-0.571 5.714-1.143 9.143-1.143 20 0 36.571 16.571 36.571 36.571v292.571c0 110.286-95.429 201.714-219.429 217.143v75.429c0 80.571 82.286 146.286 182.857 146.286s182.857-65.714 182.857-146.286v-225.714c-42.857-15.429-73.143-55.429-73.143-103.429 0-60.571 49.143-109.714 109.714-109.714s109.714 49.143 109.714 109.714z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "stethoscope"
+ ],
+ "defaultCode": 61681,
+ "grid": 14
+ },
+ {
+ "id": 216,
+ "paths": [
+ "M365.714 219.429h292.571v-73.143h-292.571v73.143zM164.571 219.429v731.429h-36.571c-70.286 0-128-57.714-128-128v-475.429c0-70.286 57.714-128 128-128h36.571zM804.571 219.429v731.429h-585.143v-731.429h73.143v-91.429c0-30.286 24.571-54.857 54.857-54.857h329.143c30.286 0 54.857 24.571 54.857 54.857v91.429h73.143zM1024 347.429v475.429c0 70.286-57.714 128-128 128h-36.571v-731.429h36.571c70.286 0 128 57.714 128 128z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "suitcase"
+ ],
+ "defaultCode": 61682,
+ "grid": 14
+ },
+ {
+ "id": 217,
+ "paths": [
+ "M521.143 969.143c0-5.143-4-9.143-9.143-9.143-45.143 0-82.286-37.143-82.286-82.286 0-5.143-4-9.143-9.143-9.143s-9.143 4-9.143 9.143c0 55.429 45.143 100.571 100.571 100.571 5.143 0 9.143-4 9.143-9.143zM987.429 804.571c0 40-33.143 73.143-73.143 73.143h-256c0 80.571-65.714 146.286-146.286 146.286s-146.286-65.714-146.286-146.286h-256c-40 0-73.143-33.143-73.143-73.143 84.571-71.429 182.857-199.429 182.857-475.429 0-109.714 90.857-229.714 242.286-252-2.857-6.857-4.571-14.286-4.571-22.286 0-30.286 24.571-54.857 54.857-54.857s54.857 24.571 54.857 54.857c0 8-1.714 15.429-4.571 22.286 151.429 22.286 242.286 142.286 242.286 252 0 276 98.286 404 182.857 475.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bell"
+ ],
+ "defaultCode": 61683,
+ "grid": 14
+ },
+ {
+ "id": 218,
+ "paths": [
+ "M950.857 365.714c0-60.571-49.143-109.714-109.714-109.714h-36.571v219.429h36.571c60.571 0 109.714-49.143 109.714-109.714zM0 804.571h1024c0 80.571-65.714 146.286-146.286 146.286h-731.429c-80.571 0-146.286-65.714-146.286-146.286zM1060.571 365.714c0 121.143-98.286 219.429-219.429 219.429h-36.571v18.286c0 70.286-57.714 128-128 128h-402.286c-70.286 0-128-57.714-128-128v-420.571c0-20 16.571-36.571 36.571-36.571h658.286c121.143 0 219.429 98.286 219.429 219.429z"
+ ],
+ "width": 1060.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "coffee"
+ ],
+ "defaultCode": 61684,
+ "grid": 14
+ },
+ {
+ "id": 219,
+ "paths": [
+ "M365.714 36.571v365.714c0 46.286-29.714 88-73.143 103.429v445.143c0 40-33.143 73.143-73.143 73.143h-73.143c-40 0-73.143-33.143-73.143-73.143v-445.143c-43.429-15.429-73.143-57.143-73.143-103.429v-365.714c0-20 16.571-36.571 36.571-36.571s36.571 16.571 36.571 36.571v237.714c0 20 16.571 36.571 36.571 36.571s36.571-16.571 36.571-36.571v-237.714c0-20 16.571-36.571 36.571-36.571s36.571 16.571 36.571 36.571v237.714c0 20 16.571 36.571 36.571 36.571s36.571-16.571 36.571-36.571v-237.714c0-20 16.571-36.571 36.571-36.571s36.571 16.571 36.571 36.571zM804.571 36.571v914.286c0 40-33.143 73.143-73.143 73.143h-73.143c-40 0-73.143-33.143-73.143-73.143v-292.571h-128c-9.714 0-18.286-8.571-18.286-18.286v-457.143c0-100.571 82.286-182.857 182.857-182.857h146.286c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cutlery"
+ ],
+ "defaultCode": 61685,
+ "grid": 14
+ },
+ {
+ "id": 220,
+ "paths": [
+ "M838.857 217.143c21.143 21.143 38.857 63.429 38.857 93.714v658.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h512c30.286 0 72.571 17.714 93.714 38.857zM585.143 77.714v214.857h214.857c-3.429-9.714-8.571-19.429-12.571-23.429l-178.857-178.857c-4-4-13.714-9.143-23.429-12.571zM804.571 950.857v-585.143h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-438.857v877.714h731.429zM219.429 457.143c0-10.286 8-18.286 18.286-18.286h402.286c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-402.286c-10.286 0-18.286-8-18.286-18.286v-36.571zM640 585.143c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-402.286c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h402.286zM640 731.429c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-402.286c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h402.286z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file-text-o"
+ ],
+ "defaultCode": 61686,
+ "grid": 14
+ },
+ {
+ "id": 221,
+ "paths": [
+ "M219.429 749.714v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM219.429 603.429v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM365.714 603.429v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM219.429 457.143v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM658.286 749.714v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM512 603.429v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM365.714 457.143v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM219.429 310.857v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM658.286 603.429v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM512 457.143v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM365.714 310.857v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM219.429 164.571v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM658.286 457.143v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM512 310.857v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM365.714 164.571v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM658.286 310.857v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM512 164.571v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM658.286 164.571v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM512 950.857h219.429v-877.714h-658.286v877.714h219.429v-128c0-9.714 8.571-18.286 18.286-18.286h182.857c9.714 0 18.286 8.571 18.286 18.286v128zM804.571 36.571v950.857c0 20-16.571 36.571-36.571 36.571h-731.429c-20 0-36.571-16.571-36.571-36.571v-950.857c0-20 16.571-36.571 36.571-36.571h731.429c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "building-o"
+ ],
+ "defaultCode": 61687,
+ "grid": 14
+ },
+ {
+ "id": 222,
+ "paths": [
+ "M219.429 749.714v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM219.429 603.429v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM365.714 603.429v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM219.429 457.143v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM658.286 749.714v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM512 603.429v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM365.714 457.143v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM658.286 603.429v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM512 457.143v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM658.286 457.143v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM512 950.857h219.429v-658.286h-146.286v18.286c0 30.286-24.571 54.857-54.857 54.857h-256c-30.286 0-54.857-24.571-54.857-54.857v-18.286h-146.286v658.286h219.429v-128c0-9.714 8.571-18.286 18.286-18.286h182.857c9.714 0 18.286 8.571 18.286 18.286v128zM512 274.286v-182.857c0-9.714-8.571-18.286-18.286-18.286h-36.571c-9.714 0-18.286 8.571-18.286 18.286v54.857h-73.143v-54.857c0-9.714-8.571-18.286-18.286-18.286h-36.571c-9.714 0-18.286 8.571-18.286 18.286v182.857c0 9.714 8.571 18.286 18.286 18.286h36.571c9.714 0 18.286-8.571 18.286-18.286v-54.857h73.143v54.857c0 9.714 8.571 18.286 18.286 18.286h36.571c9.714 0 18.286-8.571 18.286-18.286zM804.571 256v731.429c0 20-16.571 36.571-36.571 36.571h-731.429c-20 0-36.571-16.571-36.571-36.571v-731.429c0-20 16.571-36.571 36.571-36.571h182.857v-164.571c0-30.286 24.571-54.857 54.857-54.857h256c30.286 0 54.857 24.571 54.857 54.857v164.571h182.857c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hospital-o"
+ ],
+ "defaultCode": 61688,
+ "grid": 14
+ },
+ {
+ "id": 223,
+ "paths": [
+ "M365.714 804.571c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM146.286 512h219.429v-146.286h-90.286c-3.429 0.571-9.714 2.857-12.571 5.143l-111.429 111.429c-1.714 2.857-4.571 9.143-5.143 12.571v17.143zM877.714 804.571c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM950.857 420.571v-109.714c0-10.286-8-18.286-18.286-18.286h-128v-128c0-10.286-8-18.286-18.286-18.286h-109.714c-10.286 0-18.286 8-18.286 18.286v128h-128c-10.286 0-18.286 8-18.286 18.286v109.714c0 10.286 8 18.286 18.286 18.286h128v128c0 10.286 8 18.286 18.286 18.286h109.714c10.286 0 18.286-8 18.286-18.286v-128h128c10.286 0 18.286-8 18.286-18.286zM1097.143 109.714v658.286c0 20-16.571 36.571-36.571 36.571h-109.714c0 80.571-65.143 146.286-146.286 146.286-80.571 0-146.286-65.714-146.286-146.286h-219.429c0 80.571-65.143 146.286-146.286 146.286s-146.286-65.714-146.286-146.286h-73.143c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571v-237.714c0-20 11.429-48 25.714-62.286l113.143-113.143c14.286-14.286 42.286-25.714 62.286-25.714h91.429v-182.857c0-20 16.571-36.571 36.571-36.571h658.286c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 1133.7142857142856,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "ambulance"
+ ],
+ "defaultCode": 61689,
+ "grid": 14
+ },
+ {
+ "id": 224,
+ "paths": [
+ "M731.429 640v-109.714c0-10.286-8-18.286-18.286-18.286h-128v-128c0-10.286-8-18.286-18.286-18.286h-109.714c-10.286 0-18.286 8-18.286 18.286v128h-128c-10.286 0-18.286 8-18.286 18.286v109.714c0 10.286 8 18.286 18.286 18.286h128v128c0 10.286 8 18.286 18.286 18.286h109.714c10.286 0 18.286-8 18.286-18.286v-128h128c10.286 0 18.286-8 18.286-18.286zM365.714 219.429h292.571v-73.143h-292.571v73.143zM146.286 219.429v731.429h-18.286c-70.286 0-128-57.714-128-128v-475.429c0-70.286 57.714-128 128-128h18.286zM822.857 219.429v731.429h-621.714v-731.429h91.429v-91.429c0-30.286 24.571-54.857 54.857-54.857h329.143c30.286 0 54.857 24.571 54.857 54.857v91.429h91.429zM1024 347.429v475.429c0 70.286-57.714 128-128 128h-18.286v-731.429h18.286c70.286 0 128 57.714 128 128z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "medkit"
+ ],
+ "defaultCode": 61690,
+ "grid": 14
+ },
+ {
+ "id": 225,
+ "paths": [
+ "M1097.143 548.571c0 0 0 18.286-164.571 54.857l-201.143 18.286-128 36.571h-36.571l-167.429 201.143h39.429c20 0 36.571 4 36.571 9.143s-16.571 9.143-36.571 9.143h-182.857v-18.286h36.571v-237.714h-91.429l-109.714 128h-54.857l-18.286-18.286v-109.714h18.286v-18.286h73.143v-4.571l-109.714-13.714v-73.143l109.714-13.714v-4.571h-73.143v-18.286h-18.286v-109.714l18.286-18.286h54.857l109.714 128h91.429v-237.714h-36.571v-18.286h182.857c20 0 36.571 4 36.571 9.143s-16.571 9.143-36.571 9.143h-39.429l167.429 201.143h36.571l128 36.571 201.143 18.286c164.571 36.571 164.571 54.857 164.571 54.857z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fighter-jet"
+ ],
+ "defaultCode": 61691,
+ "grid": 14
+ },
+ {
+ "id": 226,
+ "paths": [
+ "M365.714 512v-219.429h-146.286v146.286c0 40.571 32.571 73.143 73.143 73.143h73.143zM950.857 768v109.714h-658.286v-109.714l73.143-109.714h-73.143c-121.143 0-219.429-98.286-219.429-219.429v-182.857l-36.571-36.571 18.286-73.143h274.286l18.286-73.143h548.571l18.286 109.714-36.571 18.286v457.143z"
+ ],
+ "width": 987.4285714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "beer"
+ ],
+ "defaultCode": 61692,
+ "grid": 14
+ },
+ {
+ "id": 227,
+ "paths": [
+ "M731.429 768v-512c0-20-16.571-36.571-36.571-36.571h-73.143c-20 0-36.571 16.571-36.571 36.571v182.857h-292.571v-182.857c0-20-16.571-36.571-36.571-36.571h-73.143c-20 0-36.571 16.571-36.571 36.571v512c0 20 16.571 36.571 36.571 36.571h73.143c20 0 36.571-16.571 36.571-36.571v-182.857h292.571v182.857c0 20 16.571 36.571 36.571 36.571h73.143c20 0 36.571-16.571 36.571-36.571zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "h-square"
+ ],
+ "defaultCode": 61693,
+ "grid": 14
+ },
+ {
+ "id": 228,
+ "paths": [
+ "M731.429 548.571v-73.143c0-20-16.571-36.571-36.571-36.571h-182.857v-182.857c0-20-16.571-36.571-36.571-36.571h-73.143c-20 0-36.571 16.571-36.571 36.571v182.857h-182.857c-20 0-36.571 16.571-36.571 36.571v73.143c0 20 16.571 36.571 36.571 36.571h182.857v182.857c0 20 16.571 36.571 36.571 36.571h73.143c20 0 36.571-16.571 36.571-36.571v-182.857h182.857c20 0 36.571-16.571 36.571-36.571zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "plus-square"
+ ],
+ "defaultCode": 61694,
+ "grid": 14
+ },
+ {
+ "id": 229,
+ "paths": [
+ "M358.286 786.286c0 4.571-2.286 9.714-5.714 13.143l-28.571 28.571c-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.143l266.286-266.286c3.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.143s-2.286 9.714-5.714 13.143l-224.571 224.571 224.571 224.571c3.429 3.429 5.714 8.571 5.714 13.143zM577.714 786.286c0 4.571-2.286 9.714-5.714 13.143l-28.571 28.571c-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.143l266.286-266.286c3.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.143s-2.286 9.714-5.714 13.143l-224.571 224.571 224.571 224.571c3.429 3.429 5.714 8.571 5.714 13.143z"
+ ],
+ "width": 603.4285714285714,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "angle-double-left"
+ ],
+ "defaultCode": 61696,
+ "grid": 14
+ },
+ {
+ "id": 230,
+ "paths": [
+ "M340 548.571c0 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-28.571-28.571c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l224.571-224.571-224.571-224.571c-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.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.143zM559.429 548.571c0 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-28.571-28.571c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l224.571-224.571-224.571-224.571c-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.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": 566.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "angle-double-right"
+ ],
+ "defaultCode": 61697,
+ "grid": 14
+ },
+ {
+ "id": 231,
+ "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
+ },
+ {
+ "id": 232,
+ "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
+ },
+ {
+ "id": 233,
+ "paths": [
+ "M358.286 310.857c0 4.571-2.286 9.714-5.714 13.143l-224.571 224.571 224.571 224.571c3.429 3.429 5.714 8.571 5.714 13.143s-2.286 9.714-5.714 13.143l-28.571 28.571c-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.143l266.286-266.286c3.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 5.714 13.143z"
+ ],
+ "width": 384,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "angle-left"
+ ],
+ "defaultCode": 61700,
+ "grid": 14
+ },
+ {
+ "id": 234,
+ "paths": [
+ "M340 548.571c0 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-28.571-28.571c-3.429-3.429-5.714-8-5.714-13.143 0-4.571 2.286-9.714 5.714-13.143l224.571-224.571-224.571-224.571c-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.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": 347.4285714285714,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "angle-right"
+ ],
+ "defaultCode": 61701,
+ "grid": 14
+ },
+ {
+ "id": 235,
+ "paths": [
+ "M614.286 676.571c0 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-up"
+ ],
+ "defaultCode": 61702,
+ "grid": 14
+ },
+ {
+ "id": 236,
+ "paths": [
+ "M614.286 420.571c0 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-down"
+ ],
+ "defaultCode": 61703,
+ "grid": 14
+ },
+ {
+ "id": 237,
+ "paths": [
+ "M1024 566.857v-475.429c0-9.714-8.571-18.286-18.286-18.286h-914.286c-9.714 0-18.286 8.571-18.286 18.286v475.429c0 9.714 8.571 18.286 18.286 18.286h914.286c9.714 0 18.286-8.571 18.286-18.286zM1097.143 91.429v621.714c0 50.286-41.143 91.429-91.429 91.429h-310.857c0 48.571 36.571 89.714 36.571 109.714s-16.571 36.571-36.571 36.571h-292.571c-20 0-36.571-16.571-36.571-36.571 0-21.143 36.571-60 36.571-109.714h-310.857c-50.286 0-91.429-41.143-91.429-91.429v-621.714c0-50.286 41.143-91.429 91.429-91.429h914.286c50.286 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "desktop"
+ ],
+ "defaultCode": 61704,
+ "grid": 14
+ },
+ {
+ "id": 238,
+ "paths": [
+ "M237.714 731.429c-50.286 0-91.429-41.143-91.429-91.429v-402.286c0-50.286 41.143-91.429 91.429-91.429h621.714c50.286 0 91.429 41.143 91.429 91.429v402.286c0 50.286-41.143 91.429-91.429 91.429h-621.714zM219.429 237.714v402.286c0 9.714 8.571 18.286 18.286 18.286h621.714c9.714 0 18.286-8.571 18.286-18.286v-402.286c0-9.714-8.571-18.286-18.286-18.286h-621.714c-9.714 0-18.286 8.571-18.286 18.286zM1005.714 768h91.429v54.857c0 30.286-41.143 54.857-91.429 54.857h-914.286c-50.286 0-91.429-24.571-91.429-54.857v-54.857h1005.714zM594.286 822.857c5.143 0 9.143-4 9.143-9.143s-4-9.143-9.143-9.143h-91.429c-5.143 0-9.143 4-9.143 9.143s4 9.143 9.143 9.143h91.429z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "laptop"
+ ],
+ "defaultCode": 61705,
+ "grid": 14
+ },
+ {
+ "id": 239,
+ "paths": [
+ "M365.714 804.571c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM585.143 713.143v-548.571c0-9.714-8.571-18.286-18.286-18.286h-475.429c-9.714 0-18.286 8.571-18.286 18.286v548.571c0 9.714 8.571 18.286 18.286 18.286h475.429c9.714 0 18.286-8.571 18.286-18.286zM658.286 164.571v621.714c0 50.286-41.143 91.429-91.429 91.429h-475.429c-50.286 0-91.429-41.143-91.429-91.429v-621.714c0-50.286 41.143-91.429 91.429-91.429h475.429c50.286 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 658.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tablet"
+ ],
+ "defaultCode": 61706,
+ "grid": 14
+ },
+ {
+ "id": 240,
+ "paths": [
+ "M265.143 804.571c0-25.143-20.571-45.714-45.714-45.714s-45.714 20.571-45.714 45.714 20.571 45.714 45.714 45.714 45.714-20.571 45.714-45.714zM384 713.143v-402.286c0-9.714-8.571-18.286-18.286-18.286h-292.571c-9.714 0-18.286 8.571-18.286 18.286v402.286c0 9.714 8.571 18.286 18.286 18.286h292.571c9.714 0 18.286-8.571 18.286-18.286zM274.286 228.571c0-5.143-4-9.143-9.143-9.143h-91.429c-5.143 0-9.143 4-9.143 9.143s4 9.143 9.143 9.143h91.429c5.143 0 9.143-4 9.143-9.143zM438.857 219.429v585.143c0 40-33.143 73.143-73.143 73.143h-292.571c-40 0-73.143-33.143-73.143-73.143v-585.143c0-40 33.143-73.143 73.143-73.143h292.571c40 0 73.143 33.143 73.143 73.143z"
+ ],
+ "width": 438.85714285714283,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mobile",
+ "mobile-phone"
+ ],
+ "defaultCode": 61707,
+ "grid": 14
+ },
+ {
+ "id": 241,
+ "paths": [
+ "M438.857 201.143c-171.429 0-310.857 139.429-310.857 310.857s139.429 310.857 310.857 310.857 310.857-139.429 310.857-310.857-139.429-310.857-310.857-310.857zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857v0c242.286 0 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "circle-o"
+ ],
+ "defaultCode": 61708,
+ "grid": 14
+ },
+ {
+ "id": 242,
+ "paths": [
+ "M438.857 548.571v219.429c0 60.571-49.143 109.714-109.714 109.714h-219.429c-60.571 0-109.714-49.143-109.714-109.714v-402.286c0-161.143 131.429-292.571 292.571-292.571h36.571c20 0 36.571 16.571 36.571 36.571v73.143c0 20-16.571 36.571-36.571 36.571h-36.571c-80.571 0-146.286 65.714-146.286 146.286v18.286c0 30.286 24.571 54.857 54.857 54.857h128c60.571 0 109.714 49.143 109.714 109.714zM950.857 548.571v219.429c0 60.571-49.143 109.714-109.714 109.714h-219.429c-60.571 0-109.714-49.143-109.714-109.714v-402.286c0-161.143 131.429-292.571 292.571-292.571h36.571c20 0 36.571 16.571 36.571 36.571v73.143c0 20-16.571 36.571-36.571 36.571h-36.571c-80.571 0-146.286 65.714-146.286 146.286v18.286c0 30.286 24.571 54.857 54.857 54.857h128c60.571 0 109.714 49.143 109.714 109.714z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "quote-left"
+ ],
+ "defaultCode": 61709,
+ "grid": 14
+ },
+ {
+ "id": 243,
+ "paths": [
+ "M438.857 182.857v402.286c0 161.143-131.429 292.571-292.571 292.571h-36.571c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h36.571c80.571 0 146.286-65.714 146.286-146.286v-18.286c0-30.286-24.571-54.857-54.857-54.857h-128c-60.571 0-109.714-49.143-109.714-109.714v-219.429c0-60.571 49.143-109.714 109.714-109.714h219.429c60.571 0 109.714 49.143 109.714 109.714zM950.857 182.857v402.286c0 161.143-131.429 292.571-292.571 292.571h-36.571c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h36.571c80.571 0 146.286-65.714 146.286-146.286v-18.286c0-30.286-24.571-54.857-54.857-54.857h-128c-60.571 0-109.714-49.143-109.714-109.714v-219.429c0-60.571 49.143-109.714 109.714-109.714h219.429c60.571 0 109.714 49.143 109.714 109.714z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "quote-right"
+ ],
+ "defaultCode": 61710,
+ "grid": 14
+ },
+ {
+ "id": 244,
+ "paths": [
+ "M300.571 796.571c0 40-32.571 73.143-73.143 73.143-40 0-73.143-33.143-73.143-73.143 0-40.571 33.143-73.143 73.143-73.143 40.571 0 73.143 32.571 73.143 73.143zM585.143 914.286c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM182.857 512c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM869.714 796.571c0 40-33.143 73.143-73.143 73.143-40.571 0-73.143-33.143-73.143-73.143 0-40.571 32.571-73.143 73.143-73.143 40 0 73.143 32.571 73.143 73.143zM318.857 227.429c0 50.286-41.143 91.429-91.429 91.429s-91.429-41.143-91.429-91.429 41.143-91.429 91.429-91.429 91.429 41.143 91.429 91.429zM987.429 512c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM621.714 109.714c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714 109.714 49.143 109.714 109.714zM924.571 227.429c0 70.857-57.714 128-128 128-70.857 0-128-57.143-128-128 0-70.286 57.143-128 128-128 70.286 0 128 57.714 128 128z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "spinner"
+ ],
+ "defaultCode": 61712,
+ "grid": 14
+ },
+ {
+ "id": 245,
+ "paths": [
+ "M877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "circle"
+ ],
+ "defaultCode": 61713,
+ "grid": 14
+ },
+ {
+ "id": 246,
+ "paths": [
+ "M1024 640c0 80-40 184.571-72.571 257.714-6.286 13.143-12.571 31.429-21.143 43.429-4 5.714-8 9.714-16 9.714-11.429 0-18.286-9.143-18.286-20 0-9.143 2.286-19.429 2.857-28.571 1.714-23.429 2.857-46.857 2.857-70.286 0-272.571-161.714-320-408-320h-128v146.286c0 20-16.571 36.571-36.571 36.571-9.714 0-18.857-4-25.714-10.857l-292.571-292.571c-6.857-6.857-10.857-16-10.857-25.714s4-18.857 10.857-25.714l292.571-292.571c6.857-6.857 16-10.857 25.714-10.857 20 0 36.571 16.571 36.571 36.571v146.286h128c187.429 0 420.571 33.143 500 230.286 24 60.571 30.286 126.286 30.286 190.286z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mail-reply",
+ "reply"
+ ],
+ "defaultCode": 61714,
+ "grid": 14
+ },
+ {
+ "id": 247,
+ "paths": [
+ "M365.714 694.857c0 41.714-21.714 109.714-73.143 109.714s-73.143-68-73.143-109.714 21.714-109.714 73.143-109.714 73.143 68 73.143 109.714zM731.429 694.857c0 41.714-21.714 109.714-73.143 109.714s-73.143-68-73.143-109.714 21.714-109.714 73.143-109.714 73.143 68 73.143 109.714zM822.857 694.857c0-87.429-53.143-164.571-146.286-164.571-37.714 0-73.714 6.857-111.429 12-29.714 4.571-59.429 6.286-89.714 6.286s-60-1.714-89.714-6.286c-37.143-5.143-73.714-12-111.429-12-93.143 0-146.286 77.143-146.286 164.571 0 174.857 160 201.714 299.429 201.714h96c139.429 0 299.429-26.857 299.429-201.714zM950.857 594.286c0 63.429-6.286 130.857-34.857 189.143-75.429 152.571-282.857 167.429-431.429 167.429-150.857 0-370.857-13.143-449.143-167.429-29.143-57.714-35.429-125.714-35.429-189.143 0-83.429 22.857-162.286 77.714-226.286-10.286-31.429-15.429-64.571-15.429-97.143 0-42.857 9.714-85.714 29.143-124.571 90.286 0 148 39.429 216.571 93.143 57.714-13.714 117.143-20 176.571-20 53.714 0 108 5.714 160 18.286 68-53.143 125.714-91.429 214.857-91.429 19.429 38.857 29.143 81.714 29.143 124.571 0 32.571-5.143 65.143-15.429 96 54.857 64.571 77.714 144 77.714 227.429z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "github-alt"
+ ],
+ "defaultCode": 61715,
+ "grid": 14
+ },
+ {
+ "id": 248,
+ "paths": [
+ "M877.714 749.714v-402.286c0-30.286-24.571-54.857-54.857-54.857h-402.286c-30.286 0-54.857-24.571-54.857-54.857v-36.571c0-30.286-24.571-54.857-54.857-54.857h-182.857c-30.286 0-54.857 24.571-54.857 54.857v548.571c0 30.286 24.571 54.857 54.857 54.857h694.857c30.286 0 54.857-24.571 54.857-54.857zM950.857 347.429v402.286c0 70.286-57.714 128-128 128h-694.857c-70.286 0-128-57.714-128-128v-548.571c0-70.286 57.714-128 128-128h182.857c70.286 0 128 57.714 128 128v18.286h384c70.286 0 128 57.714 128 128z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "folder-o"
+ ],
+ "defaultCode": 61716,
+ "grid": 14
+ },
+ {
+ "id": 249,
+ "paths": [
+ "M1017.714 532c0-16-17.714-20-30.286-20h-621.714c-30.286 0-70.286 18.857-89.714 42.286l-168 207.429c-5.143 6.857-10.286 14.286-10.286 22.857 0 16 17.714 20 30.286 20h621.714c30.286 0 70.286-18.857 89.714-42.857l168-207.429c5.143-6.286 10.286-13.714 10.286-22.286zM365.714 438.857h438.857v-91.429c0-30.286-24.571-54.857-54.857-54.857h-329.143c-30.286 0-54.857-24.571-54.857-54.857v-36.571c0-30.286-24.571-54.857-54.857-54.857h-182.857c-30.286 0-54.857 24.571-54.857 54.857v487.429l146.286-180c33.143-40.571 94.286-69.714 146.286-69.714zM1090.857 532c0 25.143-10.857 49.143-26.286 68.571l-168.571 207.429c-32.571 40-94.857 69.714-146.286 69.714h-621.714c-70.286 0-128-57.714-128-128v-548.571c0-70.286 57.714-128 128-128h182.857c70.286 0 128 57.714 128 128v18.286h310.857c70.286 0 128 57.714 128 128v91.429h109.714c38.857 0 77.714 17.714 94.857 54.286 5.714 12 8.571 25.143 8.571 38.857z"
+ ],
+ "width": 1090.8525714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "folder-open-o"
+ ],
+ "defaultCode": 61717,
+ "grid": 14
+ },
+ {
+ "id": 250,
+ "paths": [
+ "M648 614.286c-28.571 92-112.571 153.714-209.143 153.714s-180.571-61.714-209.143-153.714c-6.286-19.429 4.571-39.429 24-45.714 18.857-6.286 39.429 4.571 45.714 24 18.857 61.143 75.429 102.286 139.429 102.286s120.571-41.143 139.429-102.286c6.286-19.429 26.857-30.286 46.286-24 18.857 6.286 29.714 26.286 23.429 45.714zM365.714 365.714c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM658.286 365.714c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM804.571 512c0-201.714-164-365.714-365.714-365.714s-365.714 164-365.714 365.714 164 365.714 365.714 365.714 365.714-164 365.714-365.714zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "smile-o"
+ ],
+ "defaultCode": 61720,
+ "grid": 14
+ },
+ {
+ "id": 251,
+ "paths": [
+ "M648 702.286c6.286 19.429-4.571 39.429-23.429 45.714-19.429 6.286-40-4.571-46.286-24-18.857-61.143-75.429-102.286-139.429-102.286s-120.571 41.143-139.429 102.286c-6.286 19.429-26.857 30.286-45.714 24-19.429-6.286-30.286-26.286-24-45.714 28.571-92 112.571-153.714 209.143-153.714s180.571 61.714 209.143 153.714zM365.714 365.714c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM658.286 365.714c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM804.571 512c0-201.714-164-365.714-365.714-365.714s-365.714 164-365.714 365.714 164 365.714 365.714 365.714 365.714-164 365.714-365.714zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "frown-o"
+ ],
+ "defaultCode": 61721,
+ "grid": 14
+ },
+ {
+ "id": 252,
+ "paths": [
+ "M658.286 621.714c0 20-16.571 36.571-36.571 36.571h-365.714c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571h365.714c20 0 36.571 16.571 36.571 36.571zM365.714 365.714c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM658.286 365.714c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM804.571 512c0-201.714-164-365.714-365.714-365.714s-365.714 164-365.714 365.714 164 365.714 365.714 365.714 365.714-164 365.714-365.714zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "meh-o"
+ ],
+ "defaultCode": 61722,
+ "grid": 14
+ },
+ {
+ "id": 253,
+ "paths": [
+ "M475.429 621.714v-73.143c0-10.286-8-18.286-18.286-18.286h-109.714v-109.714c0-10.286-8-18.286-18.286-18.286h-73.143c-10.286 0-18.286 8-18.286 18.286v109.714h-109.714c-10.286 0-18.286 8-18.286 18.286v73.143c0 10.286 8 18.286 18.286 18.286h109.714v109.714c0 10.286 8 18.286 18.286 18.286h73.143c10.286 0 18.286-8 18.286-18.286v-109.714h109.714c10.286 0 18.286-8 18.286-18.286zM804.571 658.286c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM950.857 512c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM1097.143 585.143c0 161.714-130.857 292.571-292.571 292.571-74.286 0-141.714-28-193.143-73.143h-125.714c-51.429 45.143-118.857 73.143-193.143 73.143-161.714 0-292.571-130.857-292.571-292.571s130.857-292.571 292.571-292.571h512c161.714 0 292.571 130.857 292.571 292.571z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "gamepad"
+ ],
+ "defaultCode": 61723,
+ "grid": 14
+ },
+ {
+ "id": 254,
+ "paths": [
+ "M219.429 667.429v54.857c0 5.143-4 9.143-9.143 9.143h-54.857c-5.143 0-9.143-4-9.143-9.143v-54.857c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143zM292.571 521.143v54.857c0 5.143-4 9.143-9.143 9.143h-128c-5.143 0-9.143-4-9.143-9.143v-54.857c0-5.143 4-9.143 9.143-9.143h128c5.143 0 9.143 4 9.143 9.143zM219.429 374.857v54.857c0 5.143-4 9.143-9.143 9.143h-54.857c-5.143 0-9.143-4-9.143-9.143v-54.857c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143zM804.571 667.429v54.857c0 5.143-4 9.143-9.143 9.143h-493.714c-5.143 0-9.143-4-9.143-9.143v-54.857c0-5.143 4-9.143 9.143-9.143h493.714c5.143 0 9.143 4 9.143 9.143zM438.857 521.143v54.857c0 5.143-4 9.143-9.143 9.143h-54.857c-5.143 0-9.143-4-9.143-9.143v-54.857c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143zM365.714 374.857v54.857c0 5.143-4 9.143-9.143 9.143h-54.857c-5.143 0-9.143-4-9.143-9.143v-54.857c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143zM585.143 521.143v54.857c0 5.143-4 9.143-9.143 9.143h-54.857c-5.143 0-9.143-4-9.143-9.143v-54.857c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143zM512 374.857v54.857c0 5.143-4 9.143-9.143 9.143h-54.857c-5.143 0-9.143-4-9.143-9.143v-54.857c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143zM731.429 521.143v54.857c0 5.143-4 9.143-9.143 9.143h-54.857c-5.143 0-9.143-4-9.143-9.143v-54.857c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143zM950.857 667.429v54.857c0 5.143-4 9.143-9.143 9.143h-54.857c-5.143 0-9.143-4-9.143-9.143v-54.857c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143zM658.286 374.857v54.857c0 5.143-4 9.143-9.143 9.143h-54.857c-5.143 0-9.143-4-9.143-9.143v-54.857c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143zM804.571 374.857v54.857c0 5.143-4 9.143-9.143 9.143h-54.857c-5.143 0-9.143-4-9.143-9.143v-54.857c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143zM950.857 374.857v201.143c0 5.143-4 9.143-9.143 9.143h-128c-5.143 0-9.143-4-9.143-9.143v-54.857c0-5.143 4-9.143 9.143-9.143h64v-137.143c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143zM1024 804.571v-512h-950.857v512h950.857zM1097.143 292.571v512c0 40.571-32.571 73.143-73.143 73.143h-950.857c-40.571 0-73.143-32.571-73.143-73.143v-512c0-40.571 32.571-73.143 73.143-73.143h950.857c40.571 0 73.143 32.571 73.143 73.143z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "keyboard-o"
+ ],
+ "defaultCode": 61724,
+ "grid": 14
+ },
+ {
+ "id": 255,
+ "paths": [
+ "M950.857 597.143v-352c-45.714 24.571-109.714 52-174.857 52v0c-30.286 0-58.286-5.714-82.857-18.286-61.143-30.286-127.429-59.429-206.857-59.429-73.714 0-164 36-230.286 72.571v342.286c75.429-34.857 171.429-64.571 247.429-64.571 88 0 145.143 29.143 206.286 59.429l16 8c16 8 35.429 12.571 57.714 12.571 63.429 0 132-33.714 167.429-52.571zM182.857 146.286c0 26.857-14.857 50.286-36.571 62.857v723.429c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-723.429c-21.714-12.571-36.571-36-36.571-62.857 0-40.571 32.571-73.143 73.143-73.143s73.143 32.571 73.143 73.143zM1024 182.857v436c0 13.714-8 26.286-20 32.571-2.286 1.143-5.714 2.857-9.714 5.143-36.571 19.429-122.857 66.286-210.857 66.286-33.714 0-64-6.857-90.286-20l-16-8c-57.714-29.143-103.429-52-173.714-52-82.286 0-198.286 42.857-265.143 83.429-5.714 3.429-12.571 5.143-18.857 5.143s-12.571-1.714-18.286-4.571c-11.429-6.857-18.286-18.857-18.286-32v-424c0-12.571 6.857-24.571 17.714-31.429 36.571-21.714 165.714-93.143 285.714-93.143 95.429 0 173.143 34.857 238.857 66.857 14.857 7.429 32 10.857 50.857 10.857 67.429 0 141.714-42.857 177.143-64 7.429-4 13.714-7.429 17.714-9.714 11.429-5.714 24.571-5.143 35.429 1.143 10.857 6.857 17.714 18.857 17.714 31.429z"
+ ],
+ "width": 1060.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "flag-o"
+ ],
+ "defaultCode": 61725,
+ "grid": 14
+ },
+ {
+ "id": 256,
+ "paths": [
+ "M475.429 571.429v-109.714c-69.714 6.286-153.714 34.286-219.429 66.857v105.714c66.286-30.857 148.571-57.143 219.429-62.857zM475.429 332.571v-112.571c-72 3.429-156.571 37.143-219.429 72v108c67.429-34.857 148.571-64.571 219.429-67.429zM950.857 597.143v-105.143c-52 25.714-142.857 64-219.429 40.571v-128c-7.429-2.286-14.857-5.143-22.286-8.571-65.714-33.143-119.429-64-205.714-64-9.143 0-18.286 0.571-28 1.714v126.857h10.857c86.286 0 157.143 30.857 222.857 63.429 7.429 3.429 14.857 6.286 22.286 8.571v107.429c15.429 6.286 32.571 9.714 52 9.714 63.429 0 132-33.714 167.429-52.571zM950.857 353.143v-108c-45.714 24.571-109.714 52-174.857 52v0c-15.429 0-30.286-1.143-44.571-4.571v112c76.571 21.714 167.429-22.286 219.429-51.429zM182.857 146.286c0 26.857-14.857 50.286-36.571 62.857v723.429c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-723.429c-21.714-12.571-36.571-36-36.571-62.857 0-40.571 32.571-73.143 73.143-73.143s73.143 32.571 73.143 73.143zM1024 182.857v436c0 13.714-8 26.286-20 32.571-2.286 1.143-5.714 2.857-9.714 5.143-36.571 19.429-122.857 66.286-210.857 66.286-33.714 0-64-6.857-90.286-20l-16-8c-57.714-29.143-103.429-52-173.714-52-82.286 0-198.286 42.857-265.143 83.429-5.714 3.429-12.571 5.143-18.857 5.143s-12.571-1.714-18.286-4.571c-11.429-6.857-18.286-18.857-18.286-32v-424c0-12.571 6.857-24.571 17.714-31.429 36.571-21.714 165.714-93.143 285.714-93.143 95.429 0 173.143 34.857 238.857 66.857 14.857 7.429 32 10.857 50.857 10.857 67.429 0 141.714-42.857 177.143-64 7.429-4 13.714-7.429 17.714-9.714 11.429-5.714 24.571-5.143 35.429 1.143 10.857 6.857 17.714 18.857 17.714 31.429z"
+ ],
+ "width": 1060.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "flag-checkered"
+ ],
+ "defaultCode": 61726,
+ "grid": 14
+ },
+ {
+ "id": 257,
+ "paths": [
+ "M334.286 561.714l-266.286 266.286c-7.429 7.429-18.857 7.429-26.286 0l-28.571-28.571c-7.429-7.429-7.429-18.857 0-26.286l224.571-224.571-224.571-224.571c-7.429-7.429-7.429-18.857 0-26.286l28.571-28.571c7.429-7.429 18.857-7.429 26.286 0l266.286 266.286c7.429 7.429 7.429 18.857 0 26.286zM950.857 822.857v36.571c0 10.286-8 18.286-18.286 18.286h-548.571c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h548.571c10.286 0 18.286 8 18.286 18.286z"
+ ],
+ "width": 956.5622857142856,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "terminal"
+ ],
+ "defaultCode": 61728,
+ "grid": 14
+ },
+ {
+ "id": 258,
+ "paths": [
+ "M352.571 799.429l-28.571 28.571c-7.429 7.429-18.857 7.429-26.286 0l-266.286-266.286c-7.429-7.429-7.429-18.857 0-26.286l266.286-266.286c7.429-7.429 18.857-7.429 26.286 0l28.571 28.571c7.429 7.429 7.429 18.857 0 26.286l-224.571 224.571 224.571 224.571c7.429 7.429 7.429 18.857 0 26.286zM690.286 189.714l-213.143 737.714c-2.857 9.714-13.143 15.429-22.286 12.571l-35.429-9.714c-9.714-2.857-15.429-13.143-12.571-22.857l213.143-737.714c2.857-9.714 13.143-15.429 22.286-12.571l35.429 9.714c9.714 2.857 15.429 13.143 12.571 22.857zM1065.714 561.714l-266.286 266.286c-7.429 7.429-18.857 7.429-26.286 0l-28.571-28.571c-7.429-7.429-7.429-18.857 0-26.286l224.571-224.571-224.571-224.571c-7.429-7.429-7.429-18.857 0-26.286l28.571-28.571c7.429-7.429 18.857-7.429 26.286 0l266.286 266.286c7.429 7.429 7.429 18.857 0 26.286z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "code"
+ ],
+ "defaultCode": 61729,
+ "grid": 14
+ },
+ {
+ "id": 259,
+ "paths": [
+ "M365.714 618.286v40c0 14.857-9.143 28-22.286 33.714-4.571 1.714-9.714 2.857-14.286 2.857-9.714 0-18.857-3.429-25.714-10.857l-292.571-292.571c-14.286-14.286-14.286-37.143 0-51.429l292.571-292.571c10.286-10.857 26.286-13.714 40-8 13.143 5.714 22.286 18.857 22.286 33.714v39.429l-226.857 227.429c-14.286 14.286-14.286 37.143 0 51.429zM1024 640c0 118.857-89.714 293.714-93.714 301.143-2.857 6.286-9.143 9.714-16 9.714-1.714 0-3.429 0-5.143-0.571-8.571-2.857-13.714-10.857-13.143-19.429 16.571-156-2.857-258.857-60.571-322.857-48.571-54.286-127.429-83.429-250.286-93.143v143.429c0 14.857-9.143 28-22.286 33.714-4.571 1.714-9.714 2.857-14.286 2.857-9.714 0-18.857-3.429-25.714-10.857l-292.571-292.571c-14.286-14.286-14.286-37.143 0-51.429l292.571-292.571c10.286-10.857 26.286-13.714 40-8 13.143 5.714 22.286 18.857 22.286 33.714v149.714c157.714 10.857 270.286 52.571 342.286 126.286 86.286 88.571 96.571 208.571 96.571 290.857z"
+ ],
+ "width": 1020.5622857142856,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mail-reply-all",
+ "reply-all"
+ ],
+ "defaultCode": 61730,
+ "grid": 14
+ },
+ {
+ "id": 260,
+ "paths": [
+ "M677.714 546.857l146.857-142.857-241.143-35.429-17.143-34.286-90.857-184v550.286l33.714 17.714 181.714 96-34.286-202.857-6.857-37.714zM936 397.143l-207.429 202.286 49.143 285.714c4 25.143-5.143 40-22.857 40-6.286 0-14.286-2.286-22.857-6.857l-256.571-134.857-256.571 134.857c-8.571 4.571-16.571 6.857-22.857 6.857-17.714 0-26.857-14.857-22.857-40l49.143-285.714-208-202.286c-24.571-24.571-16.571-48.571 17.714-53.714l286.857-41.714 128.571-260c7.429-15.429 17.714-23.429 28-23.429v0c10.286 0 20 8 28 23.429l128.571 260 286.857 41.714c34.286 5.143 42.286 29.143 17.143 53.714z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "star-half-empty",
+ "star-half-full",
+ "star-half-o"
+ ],
+ "defaultCode": 61731,
+ "grid": 14
+ },
+ {
+ "id": 261,
+ "paths": [
+ "M800.571 199.429l-365.714 731.429c-6.286 12.571-18.857 20-32.571 20-2.857 0-5.714-0.571-8.571-1.143-16.571-4-28-18.286-28-35.429v-329.143h-329.143c-17.143 0-31.429-11.429-35.429-28s4-33.714 18.857-41.143l731.429-365.714c5.143-2.857 10.857-4 16.571-4 9.714 0 18.857 3.429 25.714 10.857 11.429 10.857 14.286 28 6.857 42.286z"
+ ],
+ "width": 805.1565714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "location-arrow"
+ ],
+ "defaultCode": 61732,
+ "grid": 14
+ },
+ {
+ "id": 262,
+ "paths": [
+ "M318.286 731.429h340v-340zM292.571 705.714l340-340h-340v340zM950.857 749.714v109.714c0 10.286-8 18.286-18.286 18.286h-128v128c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-128h-493.714c-10.286 0-18.286-8-18.286-18.286v-493.714h-128c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h128v-128c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286v128h486.286l140.571-141.143c7.429-6.857 18.857-6.857 26.286 0 6.857 7.429 6.857 18.857 0 26.286l-141.143 140.571v486.286h128c10.286 0 18.286 8 18.286 18.286z"
+ ],
+ "width": 952.5394285714285,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "crop"
+ ],
+ "defaultCode": 61733,
+ "grid": 14
+ },
+ {
+ "id": 263,
+ "paths": [
+ "M164.571 841.143c0-30.286-24.571-54.857-54.857-54.857s-54.857 24.571-54.857 54.857 24.571 54.857 54.857 54.857 54.857-24.571 54.857-54.857zM164.571 182.857c0-30.286-24.571-54.857-54.857-54.857s-54.857 24.571-54.857 54.857 24.571 54.857 54.857 54.857 54.857-24.571 54.857-54.857zM530.286 256c0-30.286-24.571-54.857-54.857-54.857s-54.857 24.571-54.857 54.857 24.571 54.857 54.857 54.857 54.857-24.571 54.857-54.857zM585.143 256c0 40.571-22.286 76-54.857 94.857-1.714 206.286-148 252-245.143 282.857-90.857 28.571-120.571 42.286-120.571 97.714v14.857c32.571 18.857 54.857 54.286 54.857 94.857 0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714c0-40.571 22.286-76 54.857-94.857v-468.571c-32.571-18.857-54.857-54.286-54.857-94.857 0-60.571 49.143-109.714 109.714-109.714s109.714 49.143 109.714 109.714c0 40.571-22.286 76-54.857 94.857v284c29.143-14.286 60-24 88-32.571 106.286-33.714 166.857-58.857 168-178.286-32.571-18.857-54.857-54.286-54.857-94.857 0-60.571 49.143-109.714 109.714-109.714s109.714 49.143 109.714 109.714z"
+ ],
+ "width": 585.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "code-fork"
+ ],
+ "defaultCode": 61734,
+ "grid": 14
+ },
+ {
+ "id": 264,
+ "paths": [
+ "M250.857 726.286l-146.286 146.286c-4 3.429-8.571 5.143-13.143 5.143s-9.143-1.714-13.143-5.143c-6.857-7.429-6.857-18.857 0-26.286l146.286-146.286c7.429-6.857 18.857-6.857 26.286 0 6.857 7.429 6.857 18.857 0 26.286zM347.429 749.714v182.857c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286v-182.857c0-10.286 8-18.286 18.286-18.286s18.286 8 18.286 18.286zM219.429 621.714c0 10.286-8 18.286-18.286 18.286h-182.857c-10.286 0-18.286-8-18.286-18.286s8-18.286 18.286-18.286h182.857c10.286 0 18.286 8 18.286 18.286zM941.714 694.857c0 44-17.143 85.143-48.571 116l-84 83.429c-30.857 30.857-72 47.429-116 47.429s-85.714-17.143-116.571-48.571l-190.857-191.429c-9.714-9.714-17.143-20.571-24-32l136.571-10.286 156 156.571c20.571 20.571 57.143 21.143 77.714 0.571l84-83.429c10.286-10.286 16-24 16-38.286 0-14.857-5.714-28.571-16-38.857l-156.571-157.143 10.286-136.571c11.429 6.857 22.286 14.286 32 24l192 192c30.857 31.429 48 72.571 48 116.571zM589.143 281.143l-136.571 10.286-156-156.571c-10.286-10.286-24-16-38.857-16s-28.571 5.714-38.857 15.429l-84 83.429c-10.286 10.286-16 24-16 38.286 0 14.857 5.714 28.571 16 38.857l156.571 156.571-10.286 137.143c-11.429-6.857-22.286-14.286-32-24l-192-192c-30.857-31.429-48-72.571-48-116.571s17.143-85.143 48.571-116l84-83.429c30.857-30.857 72-47.429 116-47.429s85.714 17.143 116.571 48.571l190.857 191.429c9.714 9.714 17.143 20.571 24 32zM950.857 329.143c0 10.286-8 18.286-18.286 18.286h-182.857c-10.286 0-18.286-8-18.286-18.286s8-18.286 18.286-18.286h182.857c10.286 0 18.286 8 18.286 18.286zM640 18.286v182.857c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286v-182.857c0-10.286 8-18.286 18.286-18.286s18.286 8 18.286 18.286zM872.571 104.571l-146.286 146.286c-4 3.429-8.571 5.143-13.143 5.143s-9.143-1.714-13.143-5.143c-6.857-7.429-6.857-18.857 0-26.286l146.286-146.286c7.429-6.857 18.857-6.857 26.286 0 6.857 7.429 6.857 18.857 0 26.286z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chain-broken",
+ "unlink"
+ ],
+ "defaultCode": 61735,
+ "grid": 14
+ },
+ {
+ "id": 265,
+ "paths": [
+ "M365.714 768v73.143c0 20-16.571 36.571-36.571 36.571h-292.571c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h36.571v-219.429h-36.571c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h219.429c20 0 36.571 16.571 36.571 36.571v329.143h36.571c20 0 36.571 16.571 36.571 36.571zM292.571 109.714v109.714c0 20-16.571 36.571-36.571 36.571h-146.286c-20 0-36.571-16.571-36.571-36.571v-109.714c0-20 16.571-36.571 36.571-36.571h146.286c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 365.71428571428567,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "info"
+ ],
+ "defaultCode": 61737,
+ "grid": 14
+ },
+ {
+ "id": 266,
+ "paths": [
+ "M292.571 713.143v128c0 20-16.571 36.571-36.571 36.571h-146.286c-20 0-36.571-16.571-36.571-36.571v-128c0-20 16.571-36.571 36.571-36.571h146.286c20 0 36.571 16.571 36.571 36.571zM309.714 109.714l-16 438.857c-0.571 20-17.714 36.571-37.714 36.571h-146.286c-20 0-37.143-16.571-37.714-36.571l-16-438.857c-0.571-20 15.429-36.571 35.429-36.571h182.857c20 0 36 16.571 35.429 36.571z"
+ ],
+ "width": 365.71428571428567,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "exclamation"
+ ],
+ "defaultCode": 61738,
+ "grid": 14
+ },
+ {
+ "id": 267,
+ "paths": [
+ "M512.571 782.286v95.429h-141.714l-90.857-144-13.714-24c-3.429-4-5.143-8-6.286-12h-1.714c-1.143 4-3.429 8-5.143 12-3.429 6.857-8.571 16-14.286 25.143l-88.571 142.857h-147.429v-95.429h73.143l112.571-166.286-105.714-155.429h-78.286v-96h157.714l79.429 130.286c5.143 8 9.143 16.571 13.143 24 3.429 4 5.143 8 6.286 12h1.714c1.143-4 3.429-8 6.286-12l14.286-24 80-130.286h146.857v96h-71.429l-105.143 152.571 116.571 169.143h62.286zM876.571 394.286v117.714h-293.714l-1.714-15.429c-1.143-8-2.286-18.857-2.286-26.286 0-156 200-169.143 200-252 0-29.714-26.857-49.714-57.143-49.714-21.714 0-41.143 10.286-55.429 22.286-7.429 6.286-14.286 14.286-20.571 21.714l-60-52.571c10.286-14.286 21.714-26.286 36-37.714 24-18.857 58.857-37.143 107.429-37.143 82.857 0 140.571 48.571 140.571 124.571 0 137.143-189.714 148.571-197.714 230.286h132.571v-45.714h72z"
+ ],
+ "width": 879.3965714285714,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "superscript"
+ ],
+ "defaultCode": 61739,
+ "grid": 14
+ },
+ {
+ "id": 268,
+ "paths": [
+ "M512.571 782.286v95.429h-141.714l-90.857-144-13.714-24c-3.429-4-5.143-8-6.286-12h-1.714c-1.143 4-3.429 8-5.143 12-3.429 6.857-8.571 16-14.286 25.143l-88.571 142.857h-147.429v-95.429h73.143l112.571-166.286-105.714-155.429h-78.286v-96h157.714l79.429 130.286c5.143 8 9.143 16.571 13.143 24 3.429 4 5.143 8 6.286 12h1.714c1.143-4 3.429-8 6.286-12l14.286-24 80-130.286h146.857v96h-71.429l-105.143 152.571 116.571 169.143h62.286zM877.714 906.286v117.714h-293.714l-2.286-15.429c-0.571-8.571-1.714-18.857-1.714-26.286 0-156 200-169.143 200-252 0-29.714-26.857-49.714-57.143-49.714-22.286 0-41.143 10.286-55.429 22.286-7.429 6.286-14.286 14.286-20.571 21.714l-60-52.571c10.286-14.286 21.714-26.286 36-37.714 24-19.429 58.857-37.143 107.429-37.143 82.857 0 140.571 48.571 140.571 124.571 0 136.571-189.714 148-197.714 230.286h132.571v-45.714h72z"
+ ],
+ "width": 880.5668571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "subscript"
+ ],
+ "defaultCode": 61740,
+ "grid": 14
+ },
+ {
+ "id": 269,
+ "paths": [
+ "M512 804.571l192-219.429h-438.857l-192 219.429h438.857zM1090.857 189.143c11.429 26.286 6.857 56.571-12 78.286l-512 585.143c-13.714 16-33.714 25.143-54.857 25.143h-438.857c-28.571 0-54.857-16.571-66.857-42.857-11.429-26.286-6.857-56.571 12-78.286l512-585.143c13.714-16 33.714-25.143 54.857-25.143h438.857c28.571 0 54.857 16.571 66.857 42.857z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "eraser"
+ ],
+ "defaultCode": 61741,
+ "grid": 14
+ },
+ {
+ "id": 270,
+ "paths": [
+ "M950.857 627.429c0 58.857-33.714 108-96 108-69.714 0-88-63.429-150.857-63.429-45.714 0-62.857 28.571-62.857 70.857 0 44.571 18.286 87.429 17.714 131.429v2.857c-6.286 0-12.571 0-18.857 0.571-58.857 5.714-118.286 17.143-177.714 17.143-40.571 0-82.857-16-82.857-62.857 0-62.857 63.429-81.143 63.429-150.857 0-62.286-49.143-96-108-96-60 0-115.429 33.143-115.429 98.857 0 72.571 55.429 104 55.429 143.429 0 20-12.571 37.714-26.286 50.857-17.714 16.571-42.857 20-66.857 20-46.857 0-93.714-6.286-140-13.714-10.286-1.714-21.143-2.857-31.429-4.571l-7.429-1.143c-1.143-0.571-2.857-0.571-2.857-1.143v-585.143c2.286 1.714 36 5.714 41.714 6.857 46.286 7.429 93.143 13.714 140 13.714 24 0 49.143-3.429 66.857-20 13.714-13.143 26.286-30.857 26.286-50.857 0-39.429-55.429-70.857-55.429-143.429 0-65.714 55.429-98.857 116-98.857 58.286 0 107.429 33.714 107.429 96 0 69.714-63.429 88-63.429 150.857 0 46.857 42.286 62.857 82.857 62.857 65.714 0 130.857-14.857 196-18.286v1.143c-1.714 2.286-5.714 36-6.857 41.714-7.429 46.286-13.714 93.143-13.714 140 0 24 3.429 49.143 20 66.857 13.143 13.714 30.857 26.286 50.857 26.286 39.429 0 70.857-55.429 143.429-55.429 65.714 0 98.857 55.429 98.857 115.429z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "puzzle-piece"
+ ],
+ "defaultCode": 61742,
+ "grid": 14
+ },
+ {
+ "id": 271,
+ "paths": [
+ "M658.286 402.286v73.143c0 169.143-128 308.571-292.571 326.857v75.429h146.286c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571h-365.714c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571h146.286v-75.429c-164.571-18.286-292.571-157.714-292.571-326.857v-73.143c0-20 16.571-36.571 36.571-36.571s36.571 16.571 36.571 36.571v73.143c0 141.143 114.857 256 256 256s256-114.857 256-256v-73.143c0-20 16.571-36.571 36.571-36.571s36.571 16.571 36.571 36.571zM512 182.857v292.571c0 100.571-82.286 182.857-182.857 182.857s-182.857-82.286-182.857-182.857v-292.571c0-100.571 82.286-182.857 182.857-182.857s182.857 82.286 182.857 182.857z"
+ ],
+ "width": 658.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "microphone"
+ ],
+ "defaultCode": 61744,
+ "grid": 14
+ },
+ {
+ "id": 272,
+ "paths": [
+ "M154.857 540l-57.714 57.714c-15.429-37.714-24-78.857-24-122.286v-73.143c0-20 16.571-36.571 36.571-36.571s36.571 16.571 36.571 36.571v73.143c0 22.286 3.429 44 8.571 64.571zM791.429 196l-206.286 206.286v73.143c0 100.571-82.286 182.857-182.857 182.857-21.714 0-42.857-4-62.286-10.857l-54.857 54.857c34.857 18.286 74.857 29.143 117.143 29.143 141.143 0 256-114.857 256-256v-73.143c0-20 16.571-36.571 36.571-36.571s36.571 16.571 36.571 36.571v73.143c0 169.143-128 308.571-292.571 326.857v75.429h146.286c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571h-365.714c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571h146.286v-75.429c-48.571-5.143-94.286-21.714-134.286-46.286l-145.143 145.143c-7.429 7.429-18.857 7.429-26.286 0l-46.857-46.857c-7.429-7.429-7.429-18.857 0-26.286l705.143-705.143c7.429-7.429 18.857-7.429 26.286 0l46.857 46.857c7.429 7.429 7.429 18.857 0 26.286zM574.286 120.571l-354.857 354.857v-292.571c0-100.571 82.286-182.857 182.857-182.857 78.857 0 146.286 50.857 172 120.571z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "microphone-slash"
+ ],
+ "defaultCode": 61745,
+ "grid": 14
+ },
+ {
+ "id": 273,
+ "paths": [
+ "M621.714 548.571v-365.714h-256v649.714c29.143-15.429 76-42.286 121.714-78.286 61.143-48 134.286-122.857 134.286-205.714zM731.429 109.714v438.857c0 240.571-336.571 392.571-350.857 398.857-4.571 2.286-9.714 3.429-14.857 3.429s-10.286-1.143-14.857-3.429c-14.286-6.286-350.857-158.286-350.857-398.857v-438.857c0-20 16.571-36.571 36.571-36.571h658.286c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 731.4285714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "shield"
+ ],
+ "defaultCode": 61746,
+ "grid": 14
+ },
+ {
+ "id": 274,
+ "paths": [
+ "M73.143 950.857h804.571v-585.143h-804.571v585.143zM292.571 256v-164.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v164.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM731.429 256v-164.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v164.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM950.857 219.429v731.429c0 40-33.143 73.143-73.143 73.143h-804.571c-40 0-73.143-33.143-73.143-73.143v-731.429c0-40 33.143-73.143 73.143-73.143h73.143v-54.857c0-50.286 41.143-91.429 91.429-91.429h36.571c50.286 0 91.429 41.143 91.429 91.429v54.857h219.429v-54.857c0-50.286 41.143-91.429 91.429-91.429h36.571c50.286 0 91.429 41.143 91.429 91.429v54.857h73.143c40 0 73.143 33.143 73.143 73.143z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "calendar-o"
+ ],
+ "defaultCode": 61747,
+ "grid": 14
+ },
+ {
+ "id": 275,
+ "paths": [
+ "M292.571 109.714c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM804.571 91.429v182.857c0 5.714-2.286 10.857-6.857 14.286-3.429 2.857-7.429 4-11.429 4-1.143 0-2.286 0-4-0.571l-256-54.857c-8-1.714-14.286-9.143-14.286-17.714h-146.286v58.286c83.429 17.143 146.286 90.857 146.286 179.429v457.143c0 20-16.571 36.571-36.571 36.571h-292.571c-20 0-36.571-16.571-36.571-36.571v-457.143c0-81.714 53.714-151.429 128-174.286v-63.429h-18.286c-121.143 0-186.286 125.143-186.857 126.286-6.286 12.571-19.429 20-32.571 20-5.714 0-11.429-1.143-16.571-4-17.714-9.143-25.143-30.857-16-49.143 2.857-5.714 60-116.571 174.857-153.714-8.571-14.286-14.286-30.857-14.286-49.143 0-50.286 41.143-91.429 91.429-91.429s91.429 41.143 91.429 91.429c0 13.143-2.857 25.143-8 36.571h172.571c0-8.571 6.286-16 14.286-17.714l256-54.857c1.714-0.571 2.857-0.571 4-0.571 4 0 8 1.143 11.429 4 4.571 3.429 6.857 8.571 6.857 14.286z"
+ ],
+ "width": 799.4514285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fire-extinguisher"
+ ],
+ "defaultCode": 61748,
+ "grid": 14
+ },
+ {
+ "id": 276,
+ "paths": [
+ "M822.857 256c0-30.286-24.571-54.857-54.857-54.857s-54.857 24.571-54.857 54.857 24.571 54.857 54.857 54.857 54.857-24.571 54.857-54.857zM950.857 91.429c0 189.714-52.571 316-188 452-33.143 32.571-70.857 66.286-111.429 100.571l-11.429 216.571c-0.571 5.714-4 11.429-9.143 14.857l-219.429 128c-2.857 1.714-5.714 2.286-9.143 2.286-4.571 0-9.143-1.714-13.143-5.143l-36.571-36.571c-4.571-5.143-6.286-12-4.571-18.286l48.571-157.714-160.571-160.571-157.714 48.571c-1.714 0.571-3.429 0.571-5.143 0.571-4.571 0-9.714-1.714-13.143-5.143l-36.571-36.571c-5.714-6.286-6.857-15.429-2.857-22.286l128-219.429c3.429-5.143 9.143-8.571 14.857-9.143l216.571-11.429c34.286-40.571 68-78.286 100.571-111.429 142.857-142.286 252-188 450.857-188 10.286 0 19.429 8 19.429 18.286z"
+ ],
+ "width": 967.4605714285714,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "rocket"
+ ],
+ "defaultCode": 61749,
+ "grid": 14
+ },
+ {
+ "id": 277,
+ "paths": [
+ "M997.143 441.714l-93.714 436h-190.857l101.714-475.429c4.571-20 1.714-38.286-8.571-50.286-9.714-12-26.857-18.857-47.429-18.857h-96.571l-116.571 544.571h-190.857l116.571-544.571h-163.429l-116.571 544.571h-190.857l116.571-544.571-87.429-186.857h729.143c77.143 0 147.429 32 192.571 88 45.714 56 62.286 132 46.286 207.429z"
+ ],
+ "width": 1013.1748571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "maxcdn"
+ ],
+ "defaultCode": 61750,
+ "grid": 14
+ },
+ {
+ "id": 278,
+ "paths": [
+ "M519.429 797.143l58.286-58.286c14.286-14.286 14.286-37.143 0-51.429l-175.429-175.429 175.429-175.429c14.286-14.286 14.286-37.143 0-51.429l-58.286-58.286c-14.286-14.286-37.143-14.286-51.429 0l-259.429 259.429c-14.286 14.286-14.286 37.143 0 51.429l259.429 259.429c14.286 14.286 37.143 14.286 51.429 0zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chevron-circle-left"
+ ],
+ "defaultCode": 61751,
+ "grid": 14
+ },
+ {
+ "id": 279,
+ "paths": [
+ "M409.714 797.143l259.429-259.429c14.286-14.286 14.286-37.143 0-51.429l-259.429-259.429c-14.286-14.286-37.143-14.286-51.429 0l-58.286 58.286c-14.286 14.286-14.286 37.143 0 51.429l175.429 175.429-175.429 175.429c-14.286 14.286-14.286 37.143 0 51.429l58.286 58.286c14.286 14.286 37.143 14.286 51.429 0zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chevron-circle-right"
+ ],
+ "defaultCode": 61752,
+ "grid": 14
+ },
+ {
+ "id": 280,
+ "paths": [
+ "M665.714 650.857l58.286-58.286c14.286-14.286 14.286-37.143 0-51.429l-259.429-259.429c-14.286-14.286-37.143-14.286-51.429 0l-259.429 259.429c-14.286 14.286-14.286 37.143 0 51.429l58.286 58.286c14.286 14.286 37.143 14.286 51.429 0l175.429-175.429 175.429 175.429c14.286 14.286 37.143 14.286 51.429 0zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chevron-circle-up"
+ ],
+ "defaultCode": 61753,
+ "grid": 14
+ },
+ {
+ "id": 281,
+ "paths": [
+ "M464.571 742.286l259.429-259.429c14.286-14.286 14.286-37.143 0-51.429l-58.286-58.286c-14.286-14.286-37.143-14.286-51.429 0l-175.429 175.429-175.429-175.429c-14.286-14.286-37.143-14.286-51.429 0l-58.286 58.286c-14.286 14.286-14.286 37.143 0 51.429l259.429 259.429c14.286 14.286 37.143 14.286 51.429 0zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chevron-circle-down"
+ ],
+ "defaultCode": 61754,
+ "grid": 14
+ },
+ {
+ "id": 282,
+ "paths": [
+ "M645.714 341.143l9.143-100h-505.143l26.857 305.143h349.714l-12.571 130.286-112.571 30.286-112-30.286-7.429-80h-100l12.571 158.857 206.857 57.143h2.286v-0.571l205.143-56.571 28.571-310.857h-368l-8.571-103.429h385.143zM0 73.143h804.571l-73.143 821.714-330.286 92.571-328-92.571z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "html5"
+ ],
+ "defaultCode": 61755,
+ "grid": 14
+ },
+ {
+ "id": 283,
+ "paths": [
+ "M157.143 73.143h860l-152 761.714-459.429 152.571-398.857-152.571 40.571-203.429h169.714l-16.571 84 241.143 92 277.714-92 38.857-193.714h-690.286l33.143-169.714h690.857l21.714-109.143h-690.286z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "css3"
+ ],
+ "defaultCode": 61756,
+ "grid": 14
+ },
+ {
+ "id": 284,
+ "paths": [
+ "M548.571 146.286c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM1024 676.571v201.143c0 7.429-4.571 14.286-11.429 17.143-2.286 0.571-4.571 1.143-6.857 1.143-4.571 0-9.143-1.714-13.143-5.143l-53.143-53.143c-89.714 108-250.857 177.143-427.429 177.143s-337.714-69.143-427.429-177.143l-53.143 53.143c-3.429 3.429-8.571 5.143-13.143 5.143-2.286 0-4.571-0.571-6.857-1.143-6.857-2.857-11.429-9.714-11.429-17.143v-201.143c0-10.286 8-18.286 18.286-18.286h201.143c7.429 0 14.286 4.571 17.143 11.429s1.143 14.286-4 20l-57.143 57.143c51.429 69.143 150.286 119.429 263.429 134.857v-369.714h-109.714c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h109.714v-93.143c-43.429-25.143-73.143-72-73.143-126.286 0-80.571 65.714-146.286 146.286-146.286s146.286 65.714 146.286 146.286c0 54.286-29.714 101.143-73.143 126.286v93.143h109.714c20 0 36.571 16.571 36.571 36.571v73.143c0 20-16.571 36.571-36.571 36.571h-109.714v369.714c113.143-15.429 212-65.714 263.429-134.857l-57.143-57.143c-5.143-5.714-6.857-13.143-4-20s9.714-11.429 17.143-11.429h201.143c10.286 0 18.286 8 18.286 18.286z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "anchor"
+ ],
+ "defaultCode": 61757,
+ "grid": 14
+ },
+ {
+ "id": 285,
+ "paths": [
+ "M603.429 438.857c30.286 0 54.857 24.571 54.857 54.857v329.143c0 30.286-24.571 54.857-54.857 54.857h-548.571c-30.286 0-54.857-24.571-54.857-54.857v-329.143c0-30.286 24.571-54.857 54.857-54.857h18.286v-182.857c0-141.143 114.857-256 256-256s256 114.857 256 256c0 20-16.571 36.571-36.571 36.571h-36.571c-20 0-36.571-16.571-36.571-36.571 0-80.571-65.714-146.286-146.286-146.286s-146.286 65.714-146.286 146.286v182.857h420.571z"
+ ],
+ "width": 658.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "unlock-alt"
+ ],
+ "defaultCode": 61758,
+ "grid": 14
+ },
+ {
+ "id": 286,
+ "paths": [
+ "M585.143 512c0 80.571-65.714 146.286-146.286 146.286s-146.286-65.714-146.286-146.286 65.714-146.286 146.286-146.286 146.286 65.714 146.286 146.286zM658.286 512c0-121.143-98.286-219.429-219.429-219.429s-219.429 98.286-219.429 219.429 98.286 219.429 219.429 219.429 219.429-98.286 219.429-219.429zM731.429 512c0 161.714-130.857 292.571-292.571 292.571s-292.571-130.857-292.571-292.571 130.857-292.571 292.571-292.571 292.571 130.857 292.571 292.571zM804.571 512c0-201.714-164-365.714-365.714-365.714s-365.714 164-365.714 365.714 164 365.714 365.714 365.714 365.714-164 365.714-365.714zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bullseye"
+ ],
+ "defaultCode": 61760,
+ "grid": 14
+ },
+ {
+ "id": 287,
+ "paths": [
+ "M219.429 420.571v109.714c0 30.286-24.571 54.857-54.857 54.857h-109.714c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h109.714c30.286 0 54.857 24.571 54.857 54.857zM512 420.571v109.714c0 30.286-24.571 54.857-54.857 54.857h-109.714c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h109.714c30.286 0 54.857 24.571 54.857 54.857zM804.571 420.571v109.714c0 30.286-24.571 54.857-54.857 54.857h-109.714c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h109.714c30.286 0 54.857 24.571 54.857 54.857z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "ellipsis-h"
+ ],
+ "defaultCode": 61761,
+ "grid": 14
+ },
+ {
+ "id": 288,
+ "paths": [
+ "M219.429 713.143v109.714c0 30.286-24.571 54.857-54.857 54.857h-109.714c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h109.714c30.286 0 54.857 24.571 54.857 54.857zM219.429 420.571v109.714c0 30.286-24.571 54.857-54.857 54.857h-109.714c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h109.714c30.286 0 54.857 24.571 54.857 54.857zM219.429 128v109.714c0 30.286-24.571 54.857-54.857 54.857h-109.714c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h109.714c30.286 0 54.857 24.571 54.857 54.857z"
+ ],
+ "width": 219.42857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "ellipsis-v"
+ ],
+ "defaultCode": 61762,
+ "grid": 14
+ },
+ {
+ "id": 289,
+ "paths": [
+ "M292.571 731.429c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM493.143 785.143c-9.714-177.143-150.286-317.714-327.429-327.429-5.143-0.571-10.286 1.714-13.714 5.143s-5.714 8-5.714 13.143v73.143c0 9.714 7.429 17.714 17.143 18.286 117.143 8.571 211.429 102.857 220 220 0.571 9.714 8.571 17.143 18.286 17.143h73.143c5.143 0 9.714-2.286 13.143-5.714s5.714-8.571 5.143-13.714zM712.571 785.714c-9.714-297.143-250.286-537.714-547.429-547.429-5.714-0.571-9.714 1.143-13.143 5.143-3.429 3.429-5.714 8-5.714 13.143v73.143c0 9.714 8 17.714 17.714 18.286 237.143 8.571 430.286 201.714 438.857 438.857 0.571 9.714 8.571 17.714 18.286 17.714h73.143c5.143 0 9.714-2.286 13.143-5.714 4-3.429 5.714-8 5.143-13.143zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "rss-square"
+ ],
+ "defaultCode": 61763,
+ "grid": 14
+ },
+ {
+ "id": 290,
+ "paths": [
+ "M438.857 73.143c242.286 0 438.857 196.571 438.857 438.857s-196.571 438.857-438.857 438.857-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857zM658.286 543.429c11.429-6.286 18.286-18.286 18.286-31.429s-6.857-25.143-18.286-31.429l-310.857-182.857c-10.857-6.857-25.143-6.857-36.571-0.571-11.429 6.857-18.286 18.857-18.286 32v365.714c0 13.143 6.857 25.143 18.286 32 5.714 2.857 12 4.571 18.286 4.571s12.571-1.714 18.286-5.143z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "play-circle"
+ ],
+ "defaultCode": 61764,
+ "grid": 14
+ },
+ {
+ "id": 291,
+ "paths": [
+ "M585.143 258.286l180.571 180.571-326.857 326.857-180.571-180.571zM464.571 817.714l353.143-353.143c14.286-14.286 14.286-37.143 0-51.429l-206.857-206.857c-13.714-13.714-37.714-13.714-51.429 0l-353.143 353.143c-14.286 14.286-14.286 37.143 0 51.429l206.857 206.857c6.857 6.857 16 10.286 25.714 10.286s18.857-3.429 25.714-10.286zM972.571 453.714l-518.286 518.857c-28.571 28-75.429 28-103.429 0l-72-72c42.857-42.857 42.857-112.571 0-155.429s-112.571-42.857-155.429 0l-71.429-72c-28.571-28-28.571-74.857 0-103.429l518.286-517.714c28-28.571 74.857-28.571 103.429 0l71.429 71.429c-42.857 42.857-42.857 112.571 0 155.429s112.571 42.857 155.429 0l72 71.429c28 28.571 28 75.429 0 103.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "ticket"
+ ],
+ "defaultCode": 61765,
+ "grid": 14
+ },
+ {
+ "id": 292,
+ "paths": [
+ "M731.429 548.571v-73.143c0-20-16.571-36.571-36.571-36.571h-512c-20 0-36.571 16.571-36.571 36.571v73.143c0 20 16.571 36.571 36.571 36.571h512c20 0 36.571-16.571 36.571-36.571zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "minus-square"
+ ],
+ "defaultCode": 61766,
+ "grid": 14
+ },
+ {
+ "id": 293,
+ "paths": [
+ "M658.286 457.143v36.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 713.143v-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 237.714v475.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
+ },
+ {
+ "id": 294,
+ "paths": [
+ "M581.714 344.571c-6.286 13.143-18.857 21.143-33.143 21.143h-109.714v493.714c0 10.286-8 18.286-18.286 18.286h-402.286c-6.857 0-13.714-4-16.571-10.286-2.857-6.857-2.286-14.286 2.286-20l91.429-109.714c3.429-4 9.143-6.286 14.286-6.286h182.857v-365.714h-109.714c-14.286 0-26.857-8-33.143-21.143-5.714-12.571-4-28 5.143-38.857l182.857-219.429c13.714-16.571 42.286-16.571 56 0l182.857 219.429c9.143 10.857 11.429 26.286 5.143 38.857z"
+ ],
+ "width": 586.8251428571429,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "level-up"
+ ],
+ "defaultCode": 61768,
+ "grid": 14
+ },
+ {
+ "id": 295,
+ "paths": [
+ "M18.286 146.286h402.286c10.286 0 18.286 8.571 18.286 18.857v493.143h109.714c14.286 0 26.857 8.571 33.143 21.143 6.286 13.143 4 28.571-5.143 39.429l-182.857 219.429c-13.714 16.571-42.286 16.571-56 0l-182.857-219.429c-9.143-10.857-10.857-26.286-5.143-39.429 6.286-12.571 18.857-21.143 33.143-21.143h109.714v-365.714h-182.857c-5.143 0-10.286-2.286-14.286-6.286l-91.429-109.714c-4.571-5.143-5.143-13.143-2.286-19.429s9.714-10.857 16.571-10.857z"
+ ],
+ "width": 586.8251428571429,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "level-down"
+ ],
+ "defaultCode": 61769,
+ "grid": 14
+ },
+ {
+ "id": 296,
+ "paths": [
+ "M391.429 742.286l350.857-350.857c14.286-14.286 14.286-37.143 0-51.429l-58.286-58.286c-14.286-14.286-37.143-14.286-51.429 0l-266.857 266.857-120.571-120.571c-14.286-14.286-37.143-14.286-51.429 0l-58.286 58.286c-14.286 14.286-14.286 37.143 0 51.429l204.571 204.571c14.286 14.286 37.143 14.286 51.429 0zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "check-square"
+ ],
+ "defaultCode": 61770,
+ "grid": 14
+ },
+ {
+ "id": 297,
+ "paths": [
+ "M230.857 633.143l86.857 86.857-29.714 29.714h-32v-54.857h-54.857v-32zM467.429 410.286c4.571 4 3.429 12-1.714 17.143l-166.286 166.286c-5.143 5.143-13.143 6.286-17.143 1.714-4.571-4-3.429-12 1.714-17.143l166.286-166.286c5.143-5.143 13.143-6.286 17.143-1.714zM310.857 804.571l310.857-310.857-164.571-164.571-310.857 310.857v164.571h164.571zM658.286 457.143l52.571-52.571c21.143-21.143 21.143-56.571 0-77.714l-86.857-86.857c-21.143-21.143-56.571-21.143-77.714 0l-52.571 52.571zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pencil-square"
+ ],
+ "defaultCode": 61771,
+ "grid": 14
+ },
+ {
+ "id": 298,
+ "paths": [
+ "M731.429 530.286v-274.286c0-20-16.571-36.571-36.571-36.571h-274.286c-14.857 0-28 9.143-33.714 22.286-5.714 13.714-2.857 29.714 8 40l82.286 82.286-305.143 305.143c-14.286 14.286-14.286 37.143 0 51.429l58.286 58.286c14.286 14.286 37.143 14.286 51.429 0l305.143-305.143 82.286 82.286c6.857 7.429 16 10.857 25.714 10.857 4.571 0 9.714-1.143 14.286-2.857 13.143-5.714 22.286-18.857 22.286-33.714zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "external-link-square"
+ ],
+ "defaultCode": 61772,
+ "grid": 14
+ },
+ {
+ "id": 299,
+ "paths": [
+ "M574.286 629.143l201.143-201.143c14.286-14.286 14.286-37.143 0-51.429l-201.143-201.143c-10.286-10.857-26.286-13.714-39.429-8-13.714 5.714-22.857 18.857-22.857 33.714v91.429c-328 0-365.714 188-365.714 329.143 0 114.857 92 226.286 95.429 230.857 4 4.571 9.143 6.857 14.286 6.857 2.286 0 5.143-0.571 7.429-1.714 7.429-2.857 12-10.857 10.857-18.857-17.143-137.714-6.286-223.429 35.429-270.286 34.857-39.429 95.429-56.571 202.286-56.571v91.429c0 14.857 9.143 28 22.857 33.714 4 1.714 9.143 2.857 13.714 2.857 9.714 0 18.857-4 25.714-10.857zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "share-square"
+ ],
+ "defaultCode": 61773,
+ "grid": 14
+ },
+ {
+ "id": 300,
+ "paths": [
+ "M365.714 621.714l146.286-73.143-146.286-73.143v146.286zM585.143 284v309.714l-292.571 146.286v-309.714zM749.714 512c0-171.429-139.429-310.857-310.857-310.857s-310.857 139.429-310.857 310.857 139.429 310.857 310.857 310.857 310.857-139.429 310.857-310.857zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "compass"
+ ],
+ "defaultCode": 61774,
+ "grid": 14
+ },
+ {
+ "id": 301,
+ "paths": [
+ "M654.286 385.714c6.286 12 5.143 26.857-2.857 37.714l-182.857 256c-6.857 9.714-17.714 15.429-29.714 15.429s-22.857-5.714-29.714-15.429l-182.857-256c-8-10.857-9.143-25.714-2.857-37.714 6.286-12.571 18.857-20 32.571-20h365.714c13.714 0 26.286 7.429 32.571 20zM731.429 786.286v-548.571c0-9.714-8.571-18.286-18.286-18.286h-548.571c-9.714 0-18.286 8.571-18.286 18.286v548.571c0 9.714 8.571 18.286 18.286 18.286h548.571c9.714 0 18.286-8.571 18.286-18.286zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "caret-square-o-down",
+ "toggle-down"
+ ],
+ "defaultCode": 61776,
+ "grid": 14
+ },
+ {
+ "id": 302,
+ "paths": [
+ "M654.286 638.286c-6.286 12.571-18.857 20-32.571 20h-365.714c-13.714 0-26.286-7.429-32.571-20-6.286-12-5.143-26.857 2.857-37.714l182.857-256c6.857-9.714 17.714-15.429 29.714-15.429s22.857 5.714 29.714 15.429l182.857 256c8 10.857 9.143 25.714 2.857 37.714zM731.429 786.286v-548.571c0-9.714-8.571-18.286-18.286-18.286h-548.571c-9.714 0-18.286 8.571-18.286 18.286v548.571c0 9.714 8.571 18.286 18.286 18.286h548.571c9.714 0 18.286-8.571 18.286-18.286zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "caret-square-o-up",
+ "toggle-up"
+ ],
+ "defaultCode": 61777,
+ "grid": 14
+ },
+ {
+ "id": 303,
+ "paths": [
+ "M621.714 512c0 12-5.714 22.857-15.429 29.714l-256 182.857c-10.857 8-25.714 9.143-37.714 2.857-12.571-6.286-20-18.857-20-32.571v-365.714c0-13.714 7.429-26.286 20-32.571 12-6.286 26.857-5.143 37.714 2.857l256 182.857c9.714 6.857 15.429 17.714 15.429 29.714zM731.429 786.286v-548.571c0-10.286-8-18.286-18.286-18.286h-548.571c-10.286 0-18.286 8-18.286 18.286v548.571c0 10.286 8 18.286 18.286 18.286h548.571c10.286 0 18.286-8 18.286-18.286zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "caret-square-o-right",
+ "toggle-right"
+ ],
+ "defaultCode": 61778,
+ "grid": 14
+ },
+ {
+ "id": 304,
+ "paths": [
+ "M557.714 746.857l20 90.857c2.286 9.143-2.857 18.286-11.429 21.143-2.286 0.571-55.429 18.857-124 18.857-178.286 0-321.714-107.429-369.714-275.429h-54.286c-10.286 0-18.286-8.571-18.286-18.286v-64.571c0-9.714 8-18.286 18.286-18.286h37.714c-0.571-18.286-0.571-40 0.571-60h-38.286c-10.286 0-18.286-8-18.286-18.286v-65.143c0-10.286 8-18.286 18.286-18.286h56c50.857-160 197.143-266.286 368-266.286 59.429 0 108.571 12.571 110.857 13.143 4.571 1.143 8.571 4.571 11.429 8.571 2.286 4 2.857 9.143 1.714 13.714l-24.571 90.857c-2.286 9.714-12 15.429-21.714 12.571-0.571 0-39.429-9.714-80-9.714-96 0-176.571 52-214.857 137.143h267.429c5.714 0 10.857 2.286 14.286 6.857 3.429 4 5.143 9.714 4 14.857l-13.714 65.143c-1.714 8.571-9.143 14.857-18.286 14.857h-278.857c-1.714 18.286-1.143 37.714 0 60h262.286c5.714 0 10.857 2.857 14.286 6.857 3.429 4.571 4.571 10.286 3.429 15.429l-13.714 64c-1.714 8.571-9.143 14.857-17.714 14.857h-221.143c36.571 89.143 118.857 145.143 216 145.143 49.714 0 90.286-13.714 90.857-13.714 4.571-1.714 10.286-1.143 14.857 1.143 4.571 2.857 7.429 7.429 8.571 12z"
+ ],
+ "width": 580.0228571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "eur",
+ "euro"
+ ],
+ "defaultCode": 61779,
+ "grid": 14
+ },
+ {
+ "id": 305,
+ "paths": [
+ "M582.857 649.714v209.714c0 10.286-8 18.286-18.286 18.286h-546.286c-10.286 0-18.286-8-18.286-18.286v-85.714c0-9.714 8-18.286 18.286-18.286h55.429v-218.857h-54.286c-10.286 0-18.286-8-18.286-18.286v-74.857c0-10.286 8-18.286 18.286-18.286h54.286v-127.429c0-130.286 105.143-224.571 250.286-224.571 114.286 0 188 68.571 191.429 71.429 6.857 6.286 7.429 17.143 1.714 24.571l-58.857 72.571c-3.429 4-7.429 6.286-12.571 6.857-4.571 0.571-9.714-1.143-13.143-4-0.571-0.571-49.714-39.429-107.429-39.429-64.571 0-108 38.857-108 97.143v122.857h174.286c10.286 0 18.286 8 18.286 18.286v74.857c0 10.286-8 18.286-18.286 18.286h-174.286v216.571h236.571v-103.429c0-10.286 8-18.286 18.286-18.286h92.571c10.286 0 18.286 8 18.286 18.286z"
+ ],
+ "width": 582.8754285714285,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "gbp"
+ ],
+ "defaultCode": 61780,
+ "grid": 14
+ },
+ {
+ "id": 306,
+ "paths": [
+ "M558.857 677.143c0 116.571-83.429 208.571-204.571 228.571v100c0 10.286-8 18.286-18.286 18.286h-77.143c-9.714 0-18.286-8-18.286-18.286v-100c-133.714-18.857-206.857-98.857-209.714-102.286-5.714-6.857-6.286-16.571-1.143-23.429l58.857-77.143c2.857-4 8-6.286 13.143-6.857s10.286 1.143 13.714 5.143c1.143 0.571 81.143 77.143 182.286 77.143 56 0 116.571-29.714 116.571-94.286 0-54.857-67.429-81.714-144.571-112.571-102.857-40.571-230.857-92-230.857-235.429 0-105.143 82.286-192 201.714-214.857v-102.857c0-10.286 8.571-18.286 18.286-18.286h77.143c10.286 0 18.286 8 18.286 18.286v100.571c116 13.143 177.714 76 180 78.286 5.714 6.286 6.857 14.857 2.857 21.714l-46.286 83.429c-2.857 5.143-7.429 8.571-13.143 9.143-5.714 1.143-10.857-0.571-15.429-4-0.571-0.571-69.714-61.714-155.429-61.714-72.571 0-122.857 36-122.857 88 0 60.571 69.714 87.429 150.857 118.857 105.143 40.571 224 86.857 224 224.571z"
+ ],
+ "width": 583.4605714285714,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "dollar",
+ "usd"
+ ],
+ "defaultCode": 61781,
+ "grid": 14
+ },
+ {
+ "id": 307,
+ "paths": [
+ "M513.143 268.571v58.286c0 10.286-8 18.286-18.286 18.286h-96c-17.714 109.714-101.714 181.143-231.429 196.571 85.143 90.857 176 200.571 262.286 306.286 4.571 5.143 5.714 13.143 2.286 19.429-2.857 6.286-9.143 10.286-16.571 10.286h-111.429c-5.714 0-10.857-2.286-14.286-6.857-92-110.286-176.571-211.429-284.571-326.286-3.429-3.429-5.143-8-5.143-12.571v-72.571c0-9.714 8-18.286 18.286-18.286h64c100.571 0 163.429-33.714 180-96h-244c-10.286 0-18.286-8-18.286-18.286v-58.286c0-10.286 8-18.286 18.286-18.286h236c-21.714-42.857-73.143-64.571-153.143-64.571h-82.857c-10.286 0-18.286-8.571-18.286-18.286v-76c0-10.286 8-18.286 18.286-18.286h475.429c10.286 0 18.286 8 18.286 18.286v58.286c0 10.286-8 18.286-18.286 18.286h-133.143c18.286 23.429 30.286 50.857 36.571 82.286h97.714c10.286 0 18.286 8 18.286 18.286z"
+ ],
+ "width": 513.1702857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "inr",
+ "rupee"
+ ],
+ "defaultCode": 61782,
+ "grid": 14
+ },
+ {
+ "id": 308,
+ "paths": [
+ "M344.571 877.714h-98.286c-10.286 0-18.286-8-18.286-18.286v-188.571h-164.571c-10.286 0-18.286-8-18.286-18.286v-58.857c0-10.286 8-18.286 18.286-18.286h164.571v-48.571h-164.571c-10.286 0-18.286-8-18.286-18.286v-59.429c0-9.714 8-18.286 18.286-18.286h122.286l-183.429-330.286c-2.857-5.714-2.857-12.571 0-18.286 3.429-5.714 9.714-9.143 16-9.143h110.857c6.857 0 13.143 4 16.571 10.286l122.857 242.857c13.714 26.857 22.857 49.714 32 71.429 9.714-24.571 22.286-48.571 33.143-73.714l109.143-240c2.857-6.857 9.714-10.857 16.571-10.857h109.143c6.286 0 12 3.429 15.429 9.143 3.429 5.143 3.429 12 0.571 17.714l-178.857 330.857h122.857c10.286 0 18.286 8.571 18.286 18.286v59.429c0 10.286-8 18.286-18.286 18.286h-165.714v48.571h165.714c10.286 0 18.286 8 18.286 18.286v58.857c0 10.286-8 18.286-18.286 18.286h-165.714v188.571c0 10.286-8.571 18.286-18.286 18.286z"
+ ],
+ "width": 586.8251428571429,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cny",
+ "jpy",
+ "rmb",
+ "yen"
+ ],
+ "defaultCode": 61783,
+ "grid": 14
+ },
+ {
+ "id": 309,
+ "paths": [
+ "M596 322.857c0-76.571-54.286-128-134.857-128h-182.857v256h182.857c80.571 0 134.857-51.429 134.857-128zM731.429 322.857c0 146.857-106.286 249.714-258.857 249.714h-194.286v67.429h288.571c10.286 0 18.286 8 18.286 18.286v73.143c0 10.286-8 18.286-18.286 18.286h-288.571v109.714c0 10.286-8 18.286-18.286 18.286h-95.429c-10.286 0-18.286-8-18.286-18.286v-109.714h-128c-10.286 0-18.286-8-18.286-18.286v-73.143c0-10.286 8-18.286 18.286-18.286h128v-67.429h-128c-10.286 0-18.286-8-18.286-18.286v-85.143c0-10.286 8-18.286 18.286-18.286h128v-359.429c0-10.286 8-18.286 18.286-18.286h308c152.571 0 258.857 102.857 258.857 249.714z"
+ ],
+ "width": 731.4285714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "rouble",
+ "rub",
+ "ruble"
+ ],
+ "defaultCode": 61784,
+ "grid": 14
+ },
+ {
+ "id": 310,
+ "paths": [
+ "M293.714 682.857l46.286-170.857h-90.857l42.857 171.429c0.571 1.143 0.571 2.286 1.143 3.429 0-1.143 0.571-2.857 0.571-4zM360 438.857l20-73.143h-166.857l18.286 73.143h128.571zM469.714 438.857h79.429l-20-73.143h-40zM726.286 683.429l44.571-171.429h-92.571l46.286 170.857c0.571 1.714 0.571 2.857 1.143 4 0-1.143 0.571-2.286 0.571-3.429zM789.714 438.857l18.857-73.143h-169.714l19.429 73.143h131.429zM1024 457.143v36.571c0 10.286-8 18.286-18.286 18.286h-121.714l-93.714 352c-2.286 8-9.714 13.714-17.714 13.714h-90.857c-8 0-15.429-5.714-17.714-13.714l-94.857-352h-119.429l-95.429 352c-2.286 8-9.143 13.714-17.714 13.714h-90.857c-8 0-15.429-5.714-17.143-13.714l-91.429-352h-118.857c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h100l-18.857-73.143h-81.143c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h62.286l-50.857-196.571c-1.714-5.714-0.571-11.429 2.857-16 3.429-4 9.143-6.857 14.857-6.857h78.286c8.571 0 16 5.714 17.714 13.714l51.429 205.714h205.143l55.429-205.714c2.286-8 9.714-13.714 17.714-13.714h72c8.571 0 15.429 5.714 17.714 13.714l56 205.714h208.571l53.143-205.714c1.714-8 9.143-13.714 17.714-13.714h78.286c5.714 0 11.429 2.857 14.857 6.857 3.429 4.571 4.571 10.857 2.857 16l-52 196.571h63.429c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-82.857l-19.429 73.143h102.286c10.286 0 18.286 8 18.286 18.286z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "krw",
+ "won"
+ ],
+ "defaultCode": 61785,
+ "grid": 14
+ },
+ {
+ "id": 311,
+ "paths": [
+ "M666.857 365.714c7.429 76-24.571 121.714-74.857 147.429 83.429 20 136 69.714 125.714 181.143-13.143 138.857-116 176-263.429 184v145.714h-88v-143.429c-22.286 0-45.714 0-69.714-0.571v144h-88v-145.714c-20.571 0-41.143-0.571-62.286-0.571h-114.286l17.714-104.571c64.571 1.143 63.429 0 63.429 0 24.571 0 31.429-17.714 33.143-29.143v-229.714h9.143c-3.429-0.571-6.857-0.571-9.143-0.571v-164c-3.429-18.286-14.857-38.857-50.857-38.857 0 0 1.143-1.143-63.429 0v-93.714l121.143 0.571c17.714 0 36.571 0 55.429-0.571v-144h88v141.143c23.429-0.571 46.857-1.143 69.714-1.143v-140h88v144c113.143 9.714 202.857 44.571 212.571 148.571zM544 677.143c0-113.143-186.286-96.571-245.714-96.571v193.143c59.429 0 245.714 12.571 245.714-96.571zM503.429 405.143c0-103.429-155.429-88-205.143-88v175.429c49.714 0 205.143 11.429 205.143-87.429z"
+ ],
+ "width": 760.0274285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bitcoin",
+ "btc"
+ ],
+ "defaultCode": 61786,
+ "grid": 14
+ },
+ {
+ "id": 312,
+ "paths": [
+ "M585.143 292.571v-269.714c8 5.143 14.857 10.286 20.571 16l233.143 233.143c5.714 5.714 10.857 12.571 16 20.571h-269.714zM512 310.857c0 30.286 24.571 54.857 54.857 54.857h310.857v603.429c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h457.143v310.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file"
+ ],
+ "defaultCode": 61787,
+ "grid": 14
+ },
+ {
+ "id": 313,
+ "paths": [
+ "M838.857 272c5.714 5.714 10.857 12.571 16 20.571h-269.714v-269.714c8 5.143 14.857 10.286 20.571 16zM566.857 365.714h310.857v603.429c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h457.143v310.857c0 30.286 24.571 54.857 54.857 54.857zM658.286 786.286v-36.571c0-10.286-8-18.286-18.286-18.286h-402.286c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h402.286c10.286 0 18.286-8 18.286-18.286zM658.286 640v-36.571c0-10.286-8-18.286-18.286-18.286h-402.286c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h402.286c10.286 0 18.286-8 18.286-18.286zM658.286 493.714v-36.571c0-10.286-8-18.286-18.286-18.286h-402.286c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h402.286c10.286 0 18.286-8 18.286-18.286z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file-text"
+ ],
+ "defaultCode": 61788,
+ "grid": 14
+ },
+ {
+ "id": 314,
+ "paths": [
+ "M680.571 233.143h101.143l-41.143-124.571-6.857-26.857c-0.571-4.571-1.143-8-1.143-11.429h-2.286l-1.714 11.429c-1.714 6.857-2.286 15.429-6.286 26.857zM420.571 822.857c0 5.143-2.286 9.714-5.714 13.714l-182.286 182.286c-4 3.429-8.571 5.143-13.143 5.143s-9.143-1.714-13.143-5.143l-182.857-182.857c-5.143-5.714-6.857-13.143-4-20s9.714-11.429 17.143-11.429h109.714v-786.286c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286v786.286h109.714c10.286 0 18.286 8 18.286 18.286zM898.286 890.857v133.143h-333.714v-51.429l210.857-302.286c4.571-6.857 9.143-12.571 12-15.429l6.286-5.143v-1.714c-2.286 0-4.571 0.571-8 0.571-4.571 1.143-10.286 1.714-17.143 1.714h-132.571v65.714h-68.571v-130.857h324v50.857l-210.857 302.857c-3.429 5.143-8 10.286-12 14.857l-6.286 6.286v1.143l8-1.143c5.143-1.143 10.286-1.143 17.143-1.143h141.714v-68h69.143zM949.143 378.286v60.571h-164.571v-60.571h42.857l-26.857-82.286h-138.857l-26.857 82.286h42.857v60.571h-164v-60.571h40l131.429-378.286h92.571l131.429 378.286h40z"
+ ],
+ "width": 965.7051428571427,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sort-alpha-asc"
+ ],
+ "defaultCode": 61789,
+ "grid": 14
+ },
+ {
+ "id": 315,
+ "paths": [
+ "M680.571 818.286h101.143l-41.143-124.571-6.857-26.857c-0.571-4.571-1.143-8-1.143-11.429h-2.286l-1.714 11.429c-1.714 6.857-2.286 15.429-6.286 26.857zM420.571 822.857c0 5.143-2.286 9.714-5.714 13.714l-182.286 182.286c-4 3.429-8.571 5.143-13.143 5.143s-9.143-1.714-13.143-5.143l-182.857-182.857c-5.143-5.714-6.857-13.143-4-20s9.714-11.429 17.143-11.429h109.714v-786.286c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286v786.286h109.714c10.286 0 18.286 8 18.286 18.286zM949.143 963.429v60.571h-164.571v-60.571h42.857l-26.857-82.286h-138.857l-26.857 82.286h42.857v60.571h-164v-60.571h40l131.429-378.286h92.571l131.429 378.286h40zM898.286 305.714v133.143h-333.714v-51.429l210.857-302.286c4.571-6.857 9.143-12.571 12-15.429l6.286-5.143v-1.714c-2.286 0-4.571 0.571-8 0.571-4.571 1.143-10.286 1.714-17.143 1.714h-132.571v65.714h-68.571v-130.857h324v50.857l-210.857 302.857c-3.429 5.143-8 10.286-12 14.857l-6.286 5.714v1.714l8-1.714c5.143-0.571 10.286-0.571 17.143-0.571h141.714v-68h69.143z"
+ ],
+ "width": 965.7051428571427,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sort-alpha-desc"
+ ],
+ "defaultCode": 61790,
+ "grid": 14
+ },
+ {
+ "id": 316,
+ "paths": [
+ "M420.571 822.857c0 5.143-2.286 9.714-5.714 13.714l-182.286 182.286c-4 3.429-8.571 5.143-13.143 5.143s-9.143-1.714-13.143-5.143l-182.857-182.857c-5.143-5.714-6.857-13.143-4-20s9.714-11.429 17.143-11.429h109.714v-786.286c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286v786.286h109.714c10.286 0 18.286 8 18.286 18.286zM1024 896v109.714c0 10.286-8 18.286-18.286 18.286h-475.429c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h475.429c10.286 0 18.286 8 18.286 18.286zM914.286 603.429v109.714c0 10.286-8 18.286-18.286 18.286h-365.714c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h365.714c10.286 0 18.286 8 18.286 18.286zM804.571 310.857v109.714c0 10.286-8 18.286-18.286 18.286h-256c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h256c10.286 0 18.286 8 18.286 18.286zM694.857 18.286v109.714c0 10.286-8 18.286-18.286 18.286h-146.286c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h146.286c10.286 0 18.286 8 18.286 18.286z"
+ ],
+ "width": 1040.6034285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sort-amount-asc"
+ ],
+ "defaultCode": 61792,
+ "grid": 14
+ },
+ {
+ "id": 317,
+ "paths": [
+ "M694.857 896v109.714c0 10.286-8 18.286-18.286 18.286h-146.286c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h146.286c10.286 0 18.286 8 18.286 18.286zM420.571 822.857c0 5.143-2.286 9.714-5.714 13.714l-182.286 182.286c-4 3.429-8.571 5.143-13.143 5.143s-9.143-1.714-13.143-5.143l-182.857-182.857c-5.143-5.714-6.857-13.143-4-20s9.714-11.429 17.143-11.429h109.714v-786.286c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286v786.286h109.714c10.286 0 18.286 8 18.286 18.286zM804.571 603.429v109.714c0 10.286-8 18.286-18.286 18.286h-256c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h256c10.286 0 18.286 8 18.286 18.286zM914.286 310.857v109.714c0 10.286-8 18.286-18.286 18.286h-365.714c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h365.714c10.286 0 18.286 8 18.286 18.286zM1024 18.286v109.714c0 10.286-8 18.286-18.286 18.286h-475.429c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h475.429c10.286 0 18.286 8 18.286 18.286z"
+ ],
+ "width": 1040.6034285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sort-amount-desc"
+ ],
+ "defaultCode": 61793,
+ "grid": 14
+ },
+ {
+ "id": 318,
+ "paths": [
+ "M769.143 750.286c0-46.857-38.286-96.571-84-96.571-40 0-65.143 32.571-65.143 74.857 0 41.143 26.286 76 80.571 76 37.143 0 68.571-22.286 68.571-54.286zM420.571 822.857c0 5.143-2.286 9.714-5.714 13.714l-182.286 182.286c-4 3.429-8.571 5.143-13.143 5.143s-9.143-1.714-13.143-5.143l-182.857-182.857c-5.143-5.714-6.857-13.143-4-20s9.714-11.429 17.143-11.429h109.714v-786.286c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286v786.286h109.714c10.286 0 18.286 8 18.286 18.286zM849.143 783.429c0 115.429-62.857 240.571-198.857 240.571-25.714 0-46.857-4-61.714-9.143-9.143-2.857-17.143-5.714-24-8.571l22.286-64.571c5.143 2.286 11.429 4.571 17.714 6.286 11.429 4 26.286 7.429 42.857 7.429 68.571 0 104-57.143 114.857-116.571h-1.143c-16 17.143-49.714 29.143-83.429 29.143-82.857 0-137.143-65.143-137.143-139.429 0-78.857 60.571-143.429 144.571-143.429 90.857 0 164 74.286 164 198.286zM832 373.714v65.143h-268v-65.143h95.429v-246.857c0-7.429 0.571-14.857 0.571-20.571v-9.143h-1.143l-4 6.857c-2.857 4.571-7.429 10.286-14.857 17.714l-35.429 33.143-46.857-49.143 109.714-105.714h70.286v373.714h94.286z"
+ ],
+ "width": 865.7188571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sort-numeric-asc"
+ ],
+ "defaultCode": 61794,
+ "grid": 14
+ },
+ {
+ "id": 319,
+ "paths": [
+ "M769.143 165.143c0-46.857-38.286-96.571-84-96.571-40 0-65.143 32.571-65.143 74.857 0 41.143 26.286 76 80.571 76 37.143 0 68.571-22.286 68.571-54.286zM420.571 822.857c0 5.143-2.286 9.714-5.714 13.714l-182.286 182.286c-4 3.429-8.571 5.143-13.143 5.143s-9.143-1.714-13.143-5.143l-182.857-182.857c-5.143-5.714-6.857-13.143-4-20s9.714-11.429 17.143-11.429h109.714v-786.286c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286v786.286h109.714c10.286 0 18.286 8 18.286 18.286zM832 958.857v65.143h-268v-65.143h95.429v-246.857c0-7.429 0.571-14.857 0.571-20.571v-9.143h-1.143l-4 6.857c-2.857 4.571-7.429 10.286-14.857 17.714l-35.429 33.143-46.857-49.143 109.714-105.714h70.286v373.714h94.286zM849.143 198.286c0 115.429-62.857 240.571-198.857 240.571-25.714 0-46.857-4-61.714-9.143-9.143-2.857-17.143-5.714-24-8.571l22.286-64.571c5.143 2.286 11.429 4.571 17.714 6.286 11.429 4 26.286 7.429 42.857 7.429 68.571 0 104-57.143 114.857-116.571h-1.143c-16 17.143-49.714 29.143-83.429 29.143-82.857 0-137.143-65.143-137.143-139.429 0-78.857 60.571-143.429 144.571-143.429 90.857 0 164 74.286 164 198.286z"
+ ],
+ "width": 865.7188571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sort-numeric-desc"
+ ],
+ "defaultCode": 61795,
+ "grid": 14
+ },
+ {
+ "id": 320,
+ "paths": [
+ "M146.286 768c0-20-16.571-36.571-36.571-36.571-20.571 0-36.571 16.571-36.571 36.571 0 20.571 16 36.571 36.571 36.571 20 0 36.571-16 36.571-36.571zM237.714 475.429v365.714c0 20-16.571 36.571-36.571 36.571h-164.571c-20 0-36.571-16.571-36.571-36.571v-365.714c0-20 16.571-36.571 36.571-36.571h164.571c20 0 36.571 16.571 36.571 36.571zM914.286 475.429c0 30.286-12 62.857-31.429 85.143 6.286 18.286 8.571 35.429 8.571 43.429 1.143 28.571-7.429 55.429-24.571 78.286 6.286 21.143 6.286 44 0 66.857-5.714 21.143-16.571 40-30.857 53.714 3.429 42.857-6.286 77.714-28 103.429-24.571 29.143-62.286 44-112.571 44.571h-73.714c-81.714 0-158.857-26.857-220.571-48-36-12.571-70.286-24.571-90.286-25.143-19.429-0.571-36.571-16.571-36.571-36.571v-366.286c0-18.857 16-34.857 34.857-36.571 21.143-1.714 76-69.714 101.143-102.857 20.571-26.286 40-50.857 57.714-68.571 22.286-22.286 28.571-56.571 35.429-89.714 6.286-33.714 13.143-69.143 37.714-93.143 6.857-6.857 16-10.857 25.714-10.857 128 0 128 102.286 128 146.286 0 46.857-16.571 80-32 109.714-6.286 12.571-12 18.286-16.571 36.571h158.286c59.429 0 109.714 50.286 109.714 109.714z"
+ ],
+ "width": 914.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "thumbs-up"
+ ],
+ "defaultCode": 61796,
+ "grid": 14
+ },
+ {
+ "id": 321,
+ "paths": [
+ "M146.286 329.143c0 20-16.571 36.571-36.571 36.571-20.571 0-36.571-16.571-36.571-36.571 0-20.571 16-36.571 36.571-36.571 20 0 36.571 16 36.571 36.571zM237.714 621.714v-365.714c0-20-16.571-36.571-36.571-36.571h-164.571c-20 0-36.571 16.571-36.571 36.571v365.714c0 20 16.571 36.571 36.571 36.571h164.571c20 0 36.571-16.571 36.571-36.571zM882.857 536.571c19.429 21.714 31.429 54.857 31.429 85.143-0.571 59.429-50.286 109.714-109.714 109.714h-158.286c4.571 18.286 10.286 24 16.571 36.571 14.857 29.714 32 62.857 32 109.714 0 44 0 146.286-128 146.286-9.714 0-18.857-4-25.714-10.857-24.571-24-31.429-59.429-37.714-93.143-6.857-33.143-13.143-67.429-35.429-89.714-17.714-17.714-37.143-42.286-57.714-68.571-25.143-33.143-80-101.143-101.143-102.857-18.857-1.714-34.857-17.714-34.857-36.571v-366.286c0-20 17.143-36 36.571-36.571 20-0.571 54.286-12.571 90.286-25.143 61.714-21.143 138.857-48 220.571-48h73.714c50.286 0.571 88 15.429 112.571 44.571 21.714 25.714 31.429 60.571 28 103.429 14.286 13.714 25.143 32.571 30.857 53.714 6.286 22.857 6.286 45.714 0 66.857 17.143 22.857 25.714 49.714 24.571 78.286 0 8-2.286 25.143-8.571 43.429z"
+ ],
+ "width": 914.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "thumbs-down"
+ ],
+ "defaultCode": 61797,
+ "grid": 14
+ },
+ {
+ "id": 322,
+ "paths": [
+ "M525.143 744.571v-89.714c0-18.857-5.714-28.571-16.571-28.571-6.286 0-12.571 2.857-18.857 9.143v128c6.286 6.286 12.571 9.143 18.857 9.143 10.857 0 16.571-9.143 16.571-28zM630.286 674.857h37.714v-19.429c0-19.429-6.286-29.143-18.857-29.143s-18.857 9.714-18.857 29.143v19.429zM304 522.857v40h-45.714v241.714h-42.286v-241.714h-44.571v-40h132.571zM418.857 594.857v209.714h-38.286v-22.857c-14.857 17.143-29.143 25.714-43.429 25.714-12 0-20.571-5.143-24-16-2.286-6.286-3.429-16-3.429-30.857v-165.714h37.714v154.286c0 8.571 0 13.714 0.571 14.857 0.571 5.714 3.429 8.571 8.571 8.571 8 0 15.429-5.714 24-17.714v-160h38.286zM562.857 658.286v83.429c0 18.857-1.143 33.143-4 41.714-4.571 16-14.857 24-30.286 24-13.143 0-26.286-8-38.857-23.429v20.571h-38.286v-281.714h38.286v92c12-14.857 25.143-22.857 38.857-22.857 15.429 0 25.714 8 30.286 24 2.857 8.571 4 22.286 4 42.286zM706.286 732v5.143c0 12.571-0.571 20.571-1.143 24.571-1.143 8.571-4 16-8.571 22.857-10.286 15.429-26.286 22.857-45.714 22.857-20 0-35.429-7.429-46.286-21.714-8-10.286-12-26.857-12-49.143v-73.714c0-22.286 3.429-38.286 11.429-49.143 10.857-14.286 26.286-21.714 45.714-21.714 18.857 0 34.286 7.429 44.571 21.714 8 10.857 12 26.857 12 49.143v43.429h-76v37.143c0 19.429 6.286 29.143 19.429 29.143 9.143 0 14.857-5.143 17.143-14.857 0-2.286 0.571-10.857 0.571-25.714h38.857zM448.571 261.143v89.143c0 19.429-6.286 29.143-18.286 29.143-12.571 0-18.286-9.714-18.286-29.143v-89.143c0-19.429 5.714-29.714 18.286-29.714 12 0 18.286 10.286 18.286 29.714zM753.143 668.571v0c0-49.143 0-101.143-10.857-148.571-8-33.714-35.429-58.286-68-61.714-77.714-8.571-156.571-8.571-235.429-8.571-78.286 0-157.143 0-234.857 8.571-33.143 3.429-60.571 28-68 61.714-10.857 47.429-11.429 99.429-11.429 148.571v0c0 48.571 0 100.571 11.429 148.571 7.429 33.143 34.857 57.714 67.429 61.714 78.286 8.571 157.143 8.571 235.429 8.571s157.143 0 235.429-8.571c32.571-4 60-28.571 67.429-61.714 11.429-48 11.429-100 11.429-148.571zM321.714 296.571l51.429-169.143h-42.857l-29.143 111.429-30.286-111.429h-44.571c8.571 26.286 18.286 52.571 26.857 78.857 13.714 40 22.286 69.714 26.286 90.286v114.857h42.286v-114.857zM486.857 342.857v-74.286c0-22.286-4-38.857-12-49.714-10.857-14.286-25.714-21.714-44.571-21.714-19.429 0-34.286 7.429-44.571 21.714-8 10.857-12 27.429-12 49.714v74.286c0 22.286 4 38.857 12 49.714 10.286 14.286 25.143 21.714 44.571 21.714 18.857 0 33.714-7.429 44.571-21.714 8-10.286 12-27.429 12-49.714zM590.286 411.429h38.286v-211.429h-38.286v161.714c-8.571 12-16.571 17.714-24 17.714-5.143 0-8.571-2.857-9.143-9.143-0.571-1.143-0.571-5.714-0.571-14.857v-155.429h-38.286v167.429c0 14.857 1.143 24.571 3.429 31.429 4 10.286 12.571 15.429 24.571 15.429 14.286 0 28.571-8.571 44-25.714v22.857zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "youtube-square"
+ ],
+ "defaultCode": 61798,
+ "grid": 14
+ },
+ {
+ "id": 323,
+ "paths": [
+ "M554.857 710.857v120.571c0 25.714-7.429 38.286-22.286 38.286-8.571 0-17.143-4-25.714-12.571v-172c8.571-8.571 17.143-12.571 25.714-12.571 14.857 0 22.286 13.143 22.286 38.286zM748 711.429v26.286h-51.429v-26.286c0-25.714 8.571-38.857 25.714-38.857s25.714 13.143 25.714 38.857zM196 586.857h61.143v-53.714h-178.286v53.714h60v325.143h57.143v-325.143zM360.571 912h50.857v-282.286h-50.857v216c-11.429 16-22.286 24-32.571 24-6.857 0-10.857-4-12-12-0.571-1.714-0.571-8-0.571-20v-208h-50.857v223.429c0 20 1.714 33.143 4.571 41.714 4.571 14.286 16.571 21.143 33.143 21.143 18.286 0 37.714-11.429 58.286-34.857v30.857zM605.714 827.429v-112.571c0-26.286-1.143-45.143-5.143-56.571-6.286-21.143-20.571-32-40.571-32-18.857 0-36.571 10.286-53.143 30.857v-124h-50.857v378.857h50.857v-27.429c17.143 21.143 34.857 31.429 53.143 31.429 20 0 34.286-10.857 40.571-31.429 4-12 5.143-30.857 5.143-57.143zM798.857 821.714v-7.429h-52c0 20.571-0.571 32-1.143 34.857-2.857 13.714-10.286 20.571-22.857 20.571-17.714 0-26.286-13.143-26.286-39.429v-49.714h102.286v-58.857c0-30.286-5.143-52-15.429-66.286-14.857-19.429-34.857-29.143-60.571-29.143-26.286 0-46.286 9.714-61.143 29.143-10.857 14.286-16 36-16 66.286v98.857c0 30.286 5.714 52.571 16.571 66.286 14.857 19.429 34.857 29.143 61.714 29.143s48-10.286 61.714-30.286c6.286-9.143 10.857-19.429 12-30.857 1.143-5.143 1.143-16.571 1.143-33.143zM451.429 300v-120c0-26.286-7.429-39.429-24.571-39.429-16.571 0-24.571 13.143-24.571 39.429v120c0 26.286 8 40 24.571 40 17.143 0 24.571-13.714 24.571-40zM862.286 729.143c0 65.714-0.571 136-14.857 200-10.857 45.143-47.429 78.286-91.429 82.857-105.143 12-211.429 12-317.143 12s-212 0-317.143-12c-44-4.571-81.143-37.714-91.429-82.857-14.857-64-14.857-134.286-14.857-200v0c0-66.286 0.571-136 14.857-200 10.857-45.143 47.429-78.286 92-83.429 104.571-11.429 210.857-11.429 316.571-11.429s212 0 317.143 11.429c44 5.143 81.143 38.286 91.429 83.429 14.857 64 14.857 133.714 14.857 200zM292 0h58.286l-69.143 228v154.857h-57.143v-154.857c-5.143-28-16.571-68-34.857-121.143-12.571-35.429-25.143-71.429-37.143-106.857h60.571l40.571 150.286zM503.429 190.286v100c0 30.286-5.143 53.143-16 67.429-14.286 19.429-34.286 29.143-60.571 29.143-25.714 0-45.714-9.714-60-29.143-10.857-14.857-16-37.143-16-67.429v-100c0-30.286 5.143-52.571 16-66.857 14.286-19.429 34.286-29.143 60-29.143 26.286 0 46.286 9.714 60.571 29.143 10.857 14.286 16 36.571 16 66.857zM694.857 97.714v285.143h-52v-31.429c-20.571 24-40 35.429-58.857 35.429-16.571 0-28.571-6.857-33.714-21.143-2.857-8.571-4.571-22.286-4.571-42.857v-225.143h52v209.714c0 12 0 18.857 0.571 20 1.143 8 5.143 12.571 12 12.571 10.286 0 21.143-8 32.571-24.571v-217.714h52z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "youtube"
+ ],
+ "defaultCode": 61799,
+ "grid": 14
+ },
+ {
+ "id": 324,
+ "paths": [
+ "M341.143 381.143c0 0-5.714 9.714-146.857 260.571-7.429 12.571-17.143 26.286-37.143 26.286h-136.571c-8 0-14.286-4-17.714-9.714s-4-13.143 0-20.571l144.571-256c0.571 0 0.571 0 0-0.571l-92-159.429c-4-7.429-4.571-15.429-0.571-21.143 3.429-5.714 10.286-8.571 18.286-8.571h136.571c20.571 0 30.857 13.714 37.714 25.714 93.143 162.857 93.714 163.429 93.714 163.429zM801.714 14.286c4 5.714 4 13.714 0 21.143l-301.714 533.714c-0.571 0-0.571 0.571 0 0.571l192 351.429c4 7.429 4 15.429 0.571 21.143-4 5.714-10.286 8.571-18.286 8.571h-136.571c-20.571 0-31.429-13.714-37.714-25.714-193.714-354.857-193.714-355.429-193.714-355.429s9.714-17.143 303.429-538.286c7.429-13.143 16-25.714 36.571-25.714h137.714c8 0 14.286 2.857 17.714 8.571z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "xing"
+ ],
+ "defaultCode": 61800,
+ "grid": 14
+ },
+ {
+ "id": 325,
+ "paths": [
+ "M391.429 437.143c0 0 0-0.571-72-126.857-5.714-9.143-13.714-19.429-29.714-19.429h-105.143c-6.857 0-12 2.286-14.857 6.286-2.857 4.571-2.286 10.857 0.571 16.571l71.429 123.429v0.571l-112 197.714c-3.429 5.714-2.857 11.429 0 16s7.429 7.429 13.714 7.429h105.714c15.429 0 23.429-10.857 28.571-20.571 109.714-193.714 113.714-201.143 113.714-201.143zM748 153.143c-2.857-4.571-7.429-6.857-13.714-6.857h-106.857c-15.429 0-22.286 9.714-28 20-227.429 403.429-234.857 416.571-234.857 416.571s0 0.571 149.714 274.857c5.143 9.143 13.143 20 29.714 20h105.143c6.286 0 11.429-2.286 14.286-6.857s2.857-10.286-0.571-16l-148.571-272v-0.571l233.714-413.143c2.857-5.714 2.857-11.429 0-16zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "xing-square"
+ ],
+ "defaultCode": 61801,
+ "grid": 14
+ },
+ {
+ "id": 326,
+ "paths": [
+ "M406.286 644.571l276.571-142.857-276.571-144.571v287.429zM512 152c215.429 0 358.286 10.286 358.286 10.286 20 2.286 64 2.286 102.857 43.429 0 0 31.429 30.857 40.571 101.714 10.857 82.857 10.286 165.714 10.286 165.714v77.714s0.571 82.857-10.286 165.714c-9.143 70.286-40.571 101.714-40.571 101.714-38.857 40.571-82.857 40.571-102.857 42.857 0 0-142.857 10.857-358.286 10.857v0c-266.286-2.286-348-10.286-348-10.286-22.857-4-74.286-2.857-113.143-43.429 0 0-31.429-31.429-40.571-101.714-10.857-82.857-10.286-165.714-10.286-165.714v-77.714s-0.571-82.857 10.286-165.714c9.143-70.857 40.571-101.714 40.571-101.714 38.857-41.143 82.857-41.143 102.857-43.429 0 0 142.857-10.286 358.286-10.286v0z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "youtube-play"
+ ],
+ "defaultCode": 61802,
+ "grid": 14
+ },
+ {
+ "id": 327,
+ "paths": [
+ "M229.714 404l282.286 174.286-195.429 162.857-280-182.286zM793.143 721.143v61.714l-280 167.429v0.571l-0.571-0.571-0.571 0.571v-0.571l-279.429-167.429v-61.714l84 54.857 195.429-162.286v-1.143l0.571 0.571 0.571-0.571v1.143l196 162.286zM316.571 67.429l195.429 162.857-282.286 173.714-193.143-154.286zM794.286 404l193.143 154.857-279.429 182.286-196-162.857zM708 67.429l279.429 182.286-193.143 154.286-282.286-173.714z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "dropbox"
+ ],
+ "defaultCode": 61803,
+ "grid": 14
+ },
+ {
+ "id": 328,
+ "paths": [
+ "M736.571 932.571h-638.857v-274.286h-91.429v365.714h821.714v-365.714h-91.429v274.286zM198.286 633.143l18.857-89.714 447.429 94.286-18.857 89.143zM257.143 419.429l38.286-83.429 414.286 193.714-38.286 82.857zM372 216l58.286-70.286 350.857 293.143-58.286 70.286zM598.857 0l272.571 366.286-73.143 54.857-272.571-366.286zM188.571 840.571v-90.857h457.143v90.857h-457.143z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "stack-overflow"
+ ],
+ "defaultCode": 61804,
+ "grid": 14
+ },
+ {
+ "id": 329,
+ "paths": [
+ "M585.143 512c0-80.571-65.714-146.286-146.286-146.286s-146.286 65.714-146.286 146.286 65.714 146.286 146.286 146.286 146.286-65.714 146.286-146.286zM664 512c0 124.571-100.571 225.143-225.143 225.143s-225.143-100.571-225.143-225.143 100.571-225.143 225.143-225.143 225.143 100.571 225.143 225.143zM725.714 277.714c0 29.143-23.429 52.571-52.571 52.571s-52.571-23.429-52.571-52.571 23.429-52.571 52.571-52.571 52.571 23.429 52.571 52.571zM438.857 152c-64 0-201.143-5.143-258.857 17.714-20 8-34.857 17.714-50.286 33.143s-25.143 30.286-33.143 50.286c-22.857 57.714-17.714 194.857-17.714 258.857s-5.143 201.143 17.714 258.857c8 20 17.714 34.857 33.143 50.286s30.286 25.143 50.286 33.143c57.714 22.857 194.857 17.714 258.857 17.714s201.143 5.143 258.857-17.714c20-8 34.857-17.714 50.286-33.143s25.143-30.286 33.143-50.286c22.857-57.714 17.714-194.857 17.714-258.857s5.143-201.143-17.714-258.857c-8-20-17.714-34.857-33.143-50.286s-30.286-25.143-50.286-33.143c-57.714-22.857-194.857-17.714-258.857-17.714zM877.714 512c0 60.571 0.571 120.571-2.857 181.143-3.429 70.286-19.429 132.571-70.857 184s-113.714 67.429-184 70.857c-60.571 3.429-120.571 2.857-181.143 2.857s-120.571 0.571-181.143-2.857c-70.286-3.429-132.571-19.429-184-70.857s-67.429-113.714-70.857-184c-3.429-60.571-2.857-120.571-2.857-181.143s-0.571-120.571 2.857-181.143c3.429-70.286 19.429-132.571 70.857-184s113.714-67.429 184-70.857c60.571-3.429 120.571-2.857 181.143-2.857s120.571-0.571 181.143 2.857c70.286 3.429 132.571 19.429 184 70.857s67.429 113.714 70.857 184c3.429 60.571 2.857 120.571 2.857 181.143z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "instagram"
+ ],
+ "defaultCode": 61805,
+ "grid": 14
+ },
+ {
+ "id": 330,
+ "paths": [
+ "M713.143 73.143c90.857 0 164.571 73.714 164.571 164.571v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571zM398.857 512c0-66.857-54.286-121.143-121.143-121.143s-121.143 54.286-121.143 121.143 54.286 121.143 121.143 121.143 121.143-54.286 121.143-121.143zM721.143 512c0-66.857-54.286-121.143-121.143-121.143s-121.143 54.286-121.143 121.143 54.286 121.143 121.143 121.143 121.143-54.286 121.143-121.143z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "flickr"
+ ],
+ "defaultCode": 61806,
+ "grid": 14
+ },
+ {
+ "id": 331,
+ "paths": [
+ "M438.857 355.429l114.857 174.857h-229.714zM647.429 658.286h53.714l-262.286-394.857-262.286 394.857h53.714l59.429-91.429h298.286zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "adn"
+ ],
+ "defaultCode": 61808,
+ "grid": 14
+ },
+ {
+ "id": 332,
+ "paths": [
+ "M465.714 490.857c6.286 48-52 85.714-92.571 61.143-45.714-20-45.714-92.571-1.143-113.143 38.286-23.429 93.714 7.429 93.714 52zM529.143 478.857c-10.286-81.143-102.286-134.857-177.143-101.143-47.429 21.143-79.429 71.429-77.143 124.571 2.857 69.714 69.143 126.857 138.857 120.571s124-74.286 115.429-144zM665.714 169.143c-25.143-33.143-68-38.857-105.714-45.143-106.857-17.143-216.571-17.714-323.429 1.143-35.429 5.714-75.429 12-97.714 44 36.571 34.286 88.571 39.429 135.429 45.143 84.571 10.857 171.429 11.429 256 0.571 47.429-5.714 100-10.286 135.429-45.714zM698.286 760.571c-16 56-6.857 131.429-66.286 164-102.286 56.571-226.286 62.857-338.857 42.857-59.429-10.857-129.143-29.714-161.714-85.714-14.286-54.857-23.429-110.857-32.571-166.857l3.429-9.143 10.286-5.143c170.286 112.571 408.571 112.571 579.429 0 26.857 8 6.857 40.571 6.286 60zM801.714 211.429c-19.429 125.143-41.714 249.714-63.429 374.286-6.286 36.571-41.714 57.143-71.429 72.571-106.857 53.714-231.429 62.857-348.571 50.286-79.429-8.571-160.571-29.714-225.143-79.429-30.286-23.429-30.286-63.429-36-97.143-20-117.143-42.857-234.286-57.143-352.571 6.857-51.429 64.571-73.714 107.429-89.714 57.143-21.143 118.286-30.857 178.857-36.571 129.143-12.571 261.143-8 386.286 28.571 44.571 13.143 92.571 31.429 122.857 69.714 13.714 17.714 9.143 40 6.286 60z"
+ ],
+ "width": 809.1062857142856,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bitbucket"
+ ],
+ "defaultCode": 61809,
+ "grid": 14
+ },
+ {
+ "id": 333,
+ "paths": [
+ "M484.571 497.143c0-32.571-40-54.857-67.429-38.286-32.571 15.429-32.571 68 0.571 81.714 29.714 17.714 71.429-9.143 66.857-43.429zM530.286 488c6.286 50.286-33.143 99.429-83.429 104s-97.714-36.571-100-87.429c-1.714-37.714 21.714-74.286 56-89.714 53.714-24 120 14.857 127.429 73.143zM628.571 264.571c-25.143 25.714-63.429 29.143-97.143 33.143-61.143 8-123.429 7.429-185.143 0-33.714-4.571-70.857-8.571-97.143-33.143 16-22.857 44.571-27.429 70.286-31.429 77.143-13.714 156-13.143 233.143-0.571 27.429 4 58.286 8.571 76 32zM652.571 690.857c0-13.714 14.286-37.143-5.143-42.857-122.857 81.143-294.286 81.143-417.714 0l-6.857 3.429-2.857 6.857c6.857 40 13.143 80.571 23.429 120 23.429 40.571 73.714 54.286 116.571 61.714 81.143 14.857 170.857 10.286 244.571-30.286 42.857-24 36-78.286 48-118.857zM726.857 294.857c2.286-13.714 5.143-30.286-4.571-42.857-21.714-27.429-56-40.571-88.571-50.286-90.286-26.286-185.714-29.714-278.286-20.571-44 4-88 11.429-129.143 26.286-30.857 12-72.571 28-77.714 64.571 10.286 85.714 26.857 169.714 41.143 254.857 4.571 24 4.571 52.571 26.286 69.714 46.286 35.429 105.143 50.857 162.286 57.143 84.571 9.143 174.286 2.857 251.429-36 21.714-11.429 46.857-26.286 51.429-52.571 16-89.714 31.429-179.429 45.714-270.286zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bitbucket-square"
+ ],
+ "defaultCode": 61810,
+ "grid": 14
+ },
+ {
+ "id": 334,
+ "paths": [
+ "M539.429 759.429l45.714 135.429c-17.143 25.714-94.857 54.857-164.571 56-207.429 3.429-285.714-147.429-285.714-253.714v-310.857h-96v-122.857c144-52 178.857-182.286 186.857-256.571 0.571-4.571 4.571-6.857 6.857-6.857h139.429v242.286h190.286v144h-190.857v296c0 40 14.857 95.429 91.429 93.714 25.143-0.571 58.857-8 76.571-16.571z"
+ ],
+ "width": 623.9817142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tumblr"
+ ],
+ "defaultCode": 61811,
+ "grid": 14
+ },
+ {
+ "id": 335,
+ "paths": [
+ "M649.143 834.857l-35.429-104.571c-13.714 6.857-39.429 12.571-58.857 12.571-58.286 1.714-70.286-40.571-70.286-72v-227.429h146.857v-110.857h-146.286v-186.286h-107.429c-1.714 0-4.571 1.714-5.143 5.714-6.286 56.571-33.143 157.143-144 197.143v94.286h74.286v238.857c0 81.714 60 198.286 219.429 195.429 53.714-1.143 113.714-23.429 126.857-42.857zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tumblr-square"
+ ],
+ "defaultCode": 61812,
+ "grid": 14
+ },
+ {
+ "id": 336,
+ "paths": [
+ "M437.143 742.286c2.857 6.857 1.714 14.286-2.857 20l-200 219.429c-3.429 3.429-8 5.714-13.143 5.714v0c-5.143 0-10.286-2.286-13.714-5.714l-202.857-219.429c-4.571-5.714-5.714-13.143-2.857-20 2.857-6.286 9.143-10.857 16.571-10.857h128v-713.143c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286v713.143h128c7.429 0 13.714 4 16.571 10.857z"
+ ],
+ "width": 438.85714285714283,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "long-arrow-down"
+ ],
+ "defaultCode": 61813,
+ "grid": 14
+ },
+ {
+ "id": 337,
+ "paths": [
+ "M437.143 281.714c-2.857 6.286-9.143 10.857-16.571 10.857h-128v713.143c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-713.143h-128c-7.429 0-13.714-4-16.571-10.857s-1.714-14.286 2.857-20l200-219.429c3.429-3.429 8-5.714 13.143-5.714v0c5.143 0 10.286 2.286 13.714 5.714l202.857 219.429c4.571 5.714 5.714 13.143 2.857 20z"
+ ],
+ "width": 438.85714285714283,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "long-arrow-up"
+ ],
+ "defaultCode": 61814,
+ "grid": 14
+ },
+ {
+ "id": 338,
+ "paths": [
+ "M1024 457.143v109.714c0 10.286-8 18.286-18.286 18.286h-713.143v128c0 7.429-4 13.714-10.857 16.571s-14.286 1.714-20-2.857l-219.429-200c-3.429-3.429-5.714-8-5.714-13.143v0c0-5.143 2.286-10.286 5.714-13.714l219.429-202.286c5.714-5.143 13.143-6.286 20-3.429 6.286 2.857 10.857 9.143 10.857 16.571v128h713.143c10.286 0 18.286 8 18.286 18.286z"
+ ],
+ "width": 1060.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "long-arrow-left"
+ ],
+ "defaultCode": 61815,
+ "grid": 14
+ },
+ {
+ "id": 339,
+ "paths": [
+ "M987.429 510.286c0 5.143-2.286 10.286-5.714 13.714l-219.429 202.286c-5.714 5.143-13.143 6.286-20 3.429-6.286-2.857-10.857-9.143-10.857-16.571v-128h-713.143c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h713.143v-128c0-7.429 4-13.714 10.857-16.571s14.286-1.714 20 2.857l219.429 200c3.429 3.429 5.714 8 5.714 13.143v0z"
+ ],
+ "width": 987.4285714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "long-arrow-right"
+ ],
+ "defaultCode": 61816,
+ "grid": 14
+ },
+ {
+ "id": 340,
+ "paths": [
+ "M796 694.286c-14.286 45.143-37.143 93.143-70.286 142.857-49.143 74.857-98.286 112-146.857 112-19.429 0-45.714-6.286-80-18.286-33.714-12.571-62.857-18.286-86.286-18.286-22.857 0-50.286 6.286-81.143 18.857-31.429 13.143-56.571 19.429-75.429 19.429-58.857 0-115.429-49.714-172-148-55.429-98.286-84-193.714-84-287.429 0-87.429 21.714-158.286 64.571-213.714 42.857-54.857 96.571-82.286 162.286-82.286 28 0 61.143 5.714 101.143 17.143 39.429 11.429 65.714 17.143 78.857 17.143 16.571 0 44-6.286 81.714-19.429 37.714-12.571 70.857-19.429 98.857-19.429 45.714 0 86.286 12.571 121.714 37.143 20 13.714 40 33.143 59.429 57.143-29.714 25.143-51.429 47.429-65.143 67.429-24.571 35.429-37.143 74.857-37.143 118.286 0 46.857 13.143 89.714 39.429 127.429s56.571 61.714 90.286 72zM581.143 24c0 23.429-5.714 49.714-16.571 77.714-11.429 28.571-29.143 54.857-53.143 78.857-20.571 20.571-41.143 34.286-61.714 41.143-13.143 4-32.571 7.429-59.429 9.714 1.143-56.571 16-105.714 44.571-146.857s76.571-69.143 142.857-84.571c1.143 5.143 2.286 9.143 2.857 12.571 0 4 0.571 7.429 0.571 11.429z"
+ ],
+ "width": 796.0137142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "apple"
+ ],
+ "defaultCode": 61817,
+ "grid": 14
+ },
+ {
+ "id": 341,
+ "paths": [
+ "M389.714 574.857v372l-389.714-53.714v-318.286h389.714zM389.714 150.286v376.571h-389.714v-322.857zM950.857 574.857v449.143l-518.286-71.429v-377.714h518.286zM950.857 73.143v453.714h-518.286v-382.286z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "windows"
+ ],
+ "defaultCode": 61818,
+ "grid": 14
+ },
+ {
+ "id": 342,
+ "paths": [
+ "M281.714 276c12.571 0 22.286-10.286 22.286-22.286s-9.714-22.286-22.286-22.286c-12 0-21.714 10.286-21.714 22.286s9.714 22.286 21.714 22.286zM522.857 276c12 0 21.714-10.286 21.714-22.286s-9.714-22.286-21.714-22.286c-12.571 0-22.286 10.286-22.286 22.286s9.714 22.286 22.286 22.286zM58.857 381.143c32 0 58.286 26.286 58.286 58.286v245.714c0 32.571-25.714 58.857-58.286 58.857s-58.857-26.286-58.857-58.857v-245.714c0-32 26.286-58.286 58.857-58.286zM664.571 392v380.571c0 34.857-28 62.857-62.286 62.857h-42.857v129.714c0 32.571-26.286 58.857-58.857 58.857s-58.857-26.286-58.857-58.857v-129.714h-78.857v129.714c0 32.571-26.286 58.857-58.857 58.857-32 0-58.286-26.286-58.286-58.857l-0.571-129.714h-42.286c-34.857 0-62.857-28-62.857-62.857v-380.571h524.571zM532 160.571c80 41.143 134.286 120 134.286 210.857h-528.571c0-90.857 54.286-169.714 134.857-210.857l-40.571-74.857c-2.286-4-1.143-9.143 2.857-11.429 4-1.714 9.143-0.571 11.429 3.429l41.143 75.429c34.857-15.429 73.714-24 114.857-24s80 8.571 114.857 24l41.143-75.429c2.286-4 7.429-5.143 11.429-3.429 4 2.286 5.143 7.429 2.857 11.429zM804.571 439.429v245.714c0 32.571-26.286 58.857-58.857 58.857-32 0-58.286-26.286-58.286-58.857v-245.714c0-32.571 26.286-58.286 58.286-58.286 32.571 0 58.857 25.714 58.857 58.286z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "android"
+ ],
+ "defaultCode": 61819,
+ "grid": 14
+ },
+ {
+ "id": 343,
+ "paths": [
+ "M378.857 234.857v0c-11.429 1.143-7.429 11.429-13.714 11.429-5.714 0.571-4.571-12.571 13.714-11.429zM428.571 242.857c-5.714 1.714-6.286-9.143-16.571-6.286v0c16.571-7.429 22.286 4 16.571 6.286zM228 486.857c-5.143-1.714-4 8.571-9.143 16.571-4 7.429-14.286 13.143-6.286 14.286v0c2.857 0.571 10.857-6.286 14.286-14.286 2.857-9.714 5.714-14.857 1.143-16.571zM716.571 692c0-10.286-22.286-20-31.429-24 15.429-51.429 8.571-72-1.714-120.571-8-36.571-41.714-86.286-68-101.714 6.857 5.714 19.429 22.286 32.571 47.429 22.857 42.857 45.714 106.286 30.857 158.857-5.714 20.571-19.429 23.429-28.571 24-40 4.571-16.571-48-33.143-119.429-18.857-80-38.286-85.714-42.857-92-23.429-104-49.143-93.714-56.571-132.571-6.286-34.857 30.286-63.429-19.429-73.143-15.429-2.857-37.143-18.286-45.714-19.429s-13.143-57.714 18.857-59.429c31.429-2.286 37.143 35.429 31.429 50.286-9.143 14.857 0.571 20.571 16 15.429 12.571-4 4.571-37.143 7.429-41.714-8-48-28-54.857-48.571-58.857-78.857 6.286-43.429 93.143-51.429 85.143-11.429-12-44.571-1.143-44.571-8.571 0.571-44.571-14.286-70.286-34.857-70.857-22.857-0.571-32 31.429-33.143 49.714-1.714 17.143 9.714 53.143 18.286 50.286 5.714-1.714 15.429-13.143 5.143-12.571-5.143 0-13.143-12.571-14.286-27.429-0.571-14.857 5.143-29.714 24.571-29.143 22.286 0.571 22.286 45.143 20 46.857-7.429 5.143-16.571 14.857-17.714 16.571-7.429 12-21.714 15.429-27.429 20.571-9.714 10.286-12 21.714-4.571 25.714 26.286 14.857 17.714 32 54.286 33.143 24 1.143 41.714-3.429 58.286-8.571 12.571-4 53.143-12.571 61.714-27.429 4-6.286 8.571-6.286 11.429-4.571 5.714 2.857 6.857 13.714-7.429 17.143-20 5.714-40 16.571-58.286 23.429-17.714 7.429-23.429 10.286-40 13.143-37.714 6.857-65.714-13.714-40.571 10.857 8.571 8 16.571 13.143 38.286 12.571 48-1.714 101.143-59.429 106.286-33.714 1.143 5.714-14.857 12.571-27.429 18.857-44.571 21.714-76 65.143-104.571 50.286-25.714-13.714-51.429-77.143-50.857-48.571 0.571 44-57.714 82.857-30.857 133.143-17.714 4.571-57.143 88.571-62.857 132-3.429 25.143 2.286 56-4 73.143-8.571 25.143-47.429-24-34.857-84 2.286-10.286 0-12.571-2.857-7.429-15.429 28-6.857 67.429 5.714 94.857 5.143 12 18.286 17.143 28 27.429 20 22.857 98.857 81.143 112.571 95.429 17.714 16.571 12.571 55.429-24 59.429v0c18.857 35.429 37.143 38.857 36.571 96.571 21.714-11.429 13.143-36.571 4-52.571-6.286-11.429-14.286-16.571-12.571-19.429 1.143-1.714 12.571-11.429 18.857-4 19.429 21.714 56 25.714 94.857 20.571 39.429-4.571 81.714-18.286 101.143-49.714 9.143-14.857 15.429-20 19.429-17.143 4.571 2.286 6.286 12.571 5.714 29.714-0.571 18.286-8 37.143-13.143 52.571-5.143 17.714-6.857 29.714 10.286 30.286 4.571-32 13.714-63.429 16-95.429 2.857-36.571-23.429-104 5.143-137.714 7.429-9.143 16.571-10.286 29.143-10.286 1.714-45.714 72-42.286 95.429-23.429zM357.714 219.429c2.286-14.286-4.571-24.571-8-25.714-6.857-1.714-5.714 8.571-2.286 7.429v0c2.286 0 5.143 3.429 4 8.571-1.143 6.857-0.571 11.429 4.571 11.429 0.571 0 1.714 0 1.714-1.714zM597.143 332c-2.286-10.857-10.286-6.857-19.429-12.571-10.857-6.857-13.143-18.286-17.143-14.286v0c-12 13.143 14.857 40.571 26.286 42.857 6.857 1.143 12-8 10.286-16zM495.429 210.286c0.571-13.714-11.429-20.571-14.286-20-7.429 0.571-5.143 4-1.714 5.143v0c4.571 1.143 9.143 9.143 10.286 17.714 0 1.143 5.714-1.143 5.714-2.857zM526.286 77.143c0.571-2.857-6.857-6.286-12-10.286-4.571-4.571-9.143-8.571-13.714-8.571-11.429 1.143-5.714 13.143-7.429 18.857v0c-2.286 6.286-10.857 11.429-5.143 16 5.143 4 8.571-6.286 19.429-10.286 2.857-1.143 16 0.571 18.857-5.714zM849.143 843.429c70.286 43.429-26.286 79.429-68 100.571-32.571 16.571-76 53.143-92 68.571-12 11.429-61.714 17.143-89.714 2.857-32.571-16.571-15.429-42.857-65.714-44.571-25.143-0.571-49.714-0.571-74.286-0.571-21.714 0.571-43.429 1.714-65.714 2.286-75.429 1.714-82.857 50.286-131.429 48.571-33.143-1.143-74.857-27.429-146.857-42.286-50.286-10.286-98.857-13.143-109.143-35.429s12.571-47.429 14.286-69.143c1.714-29.143-21.714-68.571-4.571-83.429 14.857-13.143 46.286-3.429 66.857-14.857 21.714-12.571 30.857-22.286 30.857-49.143 8 27.429-0.571 49.714-18.286 60.571-10.857 6.857-30.857 10.286-47.429 8.571-13.143-1.143-21.143 0.571-24.571 5.714-5.143 6.286-3.429 17.714 2.857 32.571s13.714 24.571 12.571 42.857c-0.571 18.286-21.143 40-17.714 55.429 1.143 5.714 6.857 10.857 21.143 14.857 22.857 6.286 64.571 12.571 105.143 22.286 45.143 11.429 92 32 121.143 28 86.857-12 37.143-105.143 23.429-127.429v0c-73.714-115.429-122.286-190.857-161.143-161.143-9.714 8-10.286-19.429-9.714-30.286 1.714-37.714 20.571-51.429 32-80.571 21.714-55.429 38.286-118.857 71.429-151.429 24.571-32 63.429-84 70.857-111.429-6.286-59.429-8-122.286-9.143-177.143-1.143-58.857 8-110.286 74.286-146.286 16-8.571 37.143-12 59.429-12 39.429-0.571 83.429 10.857 111.429 31.429 44.571 33.143 72.571 103.429 69.143 153.714-2.286 39.429 4.571 80 17.143 122.286 14.857 49.714 38.286 84.571 76 124.571 45.143 48 80.571 142.286 90.857 202.286 9.143 56-3.429 90.857-15.429 92.571-18.286 2.857-29.714 60.571-86.857 58.286-36.571-1.714-40-23.429-50.286-42.286-16.571-29.143-33.143-20-39.429 10.857-3.429 15.429-1.143 38.286 4 55.429 10.286 36 6.857 69.714 0.571 111.429-12 78.857 55.429 93.714 100.571 56 44.571-37.143 54.286-42.857 110.286-62.286 85.143-29.143 56.571-54.857 10.857-70.286-41.143-13.714-42.857-82.857-28-96 3.429 74.286 42.286 85.143 58.286 95.429z"
+ ],
+ "width": 915.4559999999999,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "linux"
+ ],
+ "defaultCode": 61820,
+ "grid": 14
+ },
+ {
+ "id": 344,
+ "paths": [
+ "M585.143 857.143c-5.714-33.143-27.429-147.429-80-284.571-0.571 0-1.714 0.571-2.286 0.571 0 0-222.286 77.714-294.286 234.286-3.429-2.857-8.571-6.286-8.571-6.286 65.143 53.143 148 85.714 238.857 85.714 52 0 101.143-10.857 146.286-29.714zM479.429 510.286c-9.143-21.143-19.429-42.286-30.286-63.429-193.143 57.714-378.286 53.143-384.571 53.143-0.571 4-0.571 8-0.571 12 0 96 36.571 184 96 250.286v0c102.286-182.286 304.571-247.429 304.571-247.429 5.143-1.714 10.286-2.857 14.857-4.571zM418.286 389.143c-65.143-115.429-134.286-209.143-139.429-216-104.571 49.143-182.286 145.714-206.857 261.714 9.714 0 166.286 1.714 346.286-45.714zM809.143 571.429c-8-2.286-112.571-35.429-233.714-16.571 49.143 135.429 69.143 245.714 73.143 268 84-56.571 143.429-146.857 160.571-251.429zM349.143 148c-0.571 0-0.571 0-1.143 0.571 0 0 0.571-0.571 1.143-0.571zM686.286 230.857c-65.714-58.286-152.571-93.714-247.429-93.714-30.286 0-60 4-88.571 10.857 5.714 7.429 76.571 100.571 140.571 218.286 141.143-52.571 194.286-133.714 195.429-135.429zM813.714 508c-1.143-88.571-32.571-170.286-85.143-234.286-1.143 1.143-61.143 88-209.143 148.571 8.571 17.714 17.143 36 25.143 54.286 2.857 6.286 5.143 13.143 8 19.429 129.143-16.571 256.571 11.429 261.143 12zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "dribbble"
+ ],
+ "defaultCode": 61821,
+ "grid": 14
+ },
+ {
+ "id": 345,
+ "paths": [
+ "M670.286 607.429c0-99.429-96.571-133.714-177.714-152l-59.429-13.714c-43.429-10.286-76-17.714-76-50.857 0-30.286 32-44 82.286-44 89.714 0 91.429 65.714 146.857 65.714 37.143 0 59.429-29.143 59.429-62.286 0-65.714-109.143-108.571-217.143-108.571-98.857 0-213.714 42.857-213.714 158.857 0 96 64 130.286 147.429 150.286l83.429 20.571c50.857 12.571 82.286 18.286 82.286 54.857 0 29.143-32.571 51.429-82.857 51.429-105.714 0-111.429-88-172.571-88-40 0-57.714 28.571-57.714 60 0 70.286 107.429 127.429 236 127.429 107.429 0 219.429-53.714 219.429-169.714zM877.714 731.429c0 121.143-98.286 219.429-219.429 219.429-50.286 0-96.571-17.143-133.714-45.714-27.429 5.714-56.571 9.143-85.714 9.143-222.286 0-402.286-180-402.286-402.286 0-29.143 3.429-58.286 9.143-85.714-28.571-37.143-45.714-83.429-45.714-133.714 0-121.143 98.286-219.429 219.429-219.429 50.286 0 96.571 17.143 133.714 45.714 27.429-5.714 56.571-9.143 85.714-9.143 222.286 0 402.286 180 402.286 402.286 0 29.143-3.429 58.286-9.143 85.714 28.571 37.143 45.714 83.429 45.714 133.714z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "skype"
+ ],
+ "defaultCode": 61822,
+ "grid": 14
+ },
+ {
+ "id": 346,
+ "paths": [
+ "M571.429 248l21.143-110.857c4-18.286-9.714-32.571-25.143-32.571h-406.857c-18.286 0-30.857 16.571-30.857 30.857v629.143c0 1.714 1.714 2.286 3.429 0.571 149.714-180 166.286-201.143 166.286-201.143 17.143-20 24-23.429 49.143-23.429h136.571c18.857 0 29.714-16 31.429-25.143s17.714-92.571 21.143-109.143-12-33.714-27.429-33.714h-168c-22.286 0-38.286-16-38.286-38.286v-24c0-22.286 16-37.714 38.286-37.714h197.714c13.714 0 29.143-12.571 31.429-24.571zM701.143 121.143c-21.143 102.857-84.571 428-90.286 451.429-6.857 26.857-17.143 73.714-82.286 73.714h-154.857c-6.286 0-6.857-0.571-12.571 5.714 0 0-4 4.571-243.429 282.286-18.857 21.714-49.714 17.714-61.143 13.143s-31.429-18.286-31.429-56v-805.714c0-33.143 20.571-85.714 90.286-85.714h507.429c74.286 0 94.286 42.286 78.286 121.143zM701.143 121.143l-90.286 451.429c5.714-23.429 69.143-348.571 90.286-451.429z"
+ ],
+ "width": 742.2537142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "foursquare"
+ ],
+ "defaultCode": 61824,
+ "grid": 14
+ },
+ {
+ "id": 347,
+ "paths": [
+ "M402.286 768v-585.143c0-10.286-8-18.286-18.286-18.286h-274.286c-10.286 0-18.286 8-18.286 18.286v585.143c0 10.286 8 18.286 18.286 18.286h274.286c10.286 0 18.286-8 18.286-18.286zM786.286 548.571v-365.714c0-10.286-8-18.286-18.286-18.286h-274.286c-10.286 0-18.286 8-18.286 18.286v365.714c0 10.286 8 18.286 18.286 18.286h274.286c10.286 0 18.286-8 18.286-18.286zM877.714 109.714v804.571c0 20-16.571 36.571-36.571 36.571h-804.571c-20 0-36.571-16.571-36.571-36.571v-804.571c0-20 16.571-36.571 36.571-36.571h804.571c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "trello"
+ ],
+ "defaultCode": 61825,
+ "grid": 14
+ },
+ {
+ "id": 348,
+ "paths": [
+ "M731.429 603.429c0 30.286-24.571 54.857-54.857 54.857-18.286 0-35.429-9.143-45.714-24.571l-129.714-194.857h-25.714v75.429l141.143 234.857c3.429 5.714 5.143 12 5.143 18.857 0 20-16.571 36.571-36.571 36.571h-109.714v155.429c0 35.429-28.571 64-64 64h-91.429c-34.857 0-64-28.571-64-64v-155.429h-109.714c-20 0-36.571-16.571-36.571-36.571 0-6.857 1.714-13.143 5.143-18.857l141.143-234.857v-75.429h-25.714l-129.714 194.857c-10.286 15.429-27.429 24.571-45.714 24.571-30.286 0-54.857-24.571-54.857-54.857 0-10.857 3.429-21.714 9.143-30.286l146.286-219.429c22.857-33.714 58.286-61.143 100.571-61.143h219.429c42.286 0 77.714 27.429 100.571 61.143l146.286 219.429c5.714 8.571 9.143 19.429 9.143 30.286zM493.714 146.286c0 70.857-57.143 128-128 128s-128-57.143-128-128 57.143-128 128-128 128 57.143 128 128z"
+ ],
+ "width": 731.4285714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "female"
+ ],
+ "defaultCode": 61826,
+ "grid": 14
+ },
+ {
+ "id": 349,
+ "paths": [
+ "M585.143 402.286v237.714c0 30.286-24.571 54.857-54.857 54.857s-54.857-24.571-54.857-54.857v-201.143h-36.571v521.143c0 35.429-28.571 64-64 64s-64-28.571-64-64v-265.143h-36.571v265.143c0 35.429-28.571 64-64 64s-64-28.571-64-64v-521.143h-36.571v201.143c0 30.286-24.571 54.857-54.857 54.857s-54.857-24.571-54.857-54.857v-237.714c0-60.571 49.143-109.714 109.714-109.714h365.714c60.571 0 109.714 49.143 109.714 109.714zM420.571 146.286c0 70.857-57.143 128-128 128s-128-57.143-128-128 57.143-128 128-128 128 57.143 128 128z"
+ ],
+ "width": 585.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "male"
+ ],
+ "defaultCode": 61827,
+ "grid": 14
+ },
+ {
+ "id": 350,
+ "paths": [
+ "M441.714 744l200-270.286c15.429-21.143 33.714-89.143-24.571-127.429-49.143-32-96-7.429-120.571 21.143-9.143 10.286-25.143 22.857-54.857 22.857s-45.143-12.571-54.286-22.857c-24.571-28.571-71.429-53.143-121.143-21.143-57.714 38.286-39.429 106.286-24 127.429zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "gittip",
+ "gratipay"
+ ],
+ "defaultCode": 61828,
+ "grid": 14
+ },
+ {
+ "id": 351,
+ "paths": [
+ "M841.143 512c0-181.714-147.429-329.143-329.143-329.143s-329.143 147.429-329.143 329.143 147.429 329.143 329.143 329.143 329.143-147.429 329.143-329.143zM998.857 670.286c-1.714 5.714-6.286 9.714-11.429 11.429l-166.857 54.857v174.857c0 5.714-2.857 11.429-7.429 14.857-5.143 3.429-10.857 4.571-16.571 2.286l-166.857-53.714-102.857 141.714c-3.429 4.571-9.143 7.429-14.857 7.429s-11.429-2.857-14.857-7.429l-102.857-141.714-166.857 53.714c-5.714 2.286-11.429 1.143-16.571-2.286-4.571-3.429-7.429-9.143-7.429-14.857v-174.857l-166.857-54.857c-5.143-1.714-9.714-5.714-11.429-11.429s-1.143-12 2.286-16.571l102.857-141.714-102.857-141.714c-3.429-5.143-4-10.857-2.286-16.571s6.286-9.714 11.429-11.429l166.857-54.857v-174.857c0-5.714 2.857-11.429 7.429-14.857 5.143-3.429 10.857-4.571 16.571-2.286l166.857 53.714 102.857-141.714c6.857-9.143 22.857-9.143 29.714 0l102.857 141.714 166.857-53.714c5.714-2.286 11.429-1.143 16.571 2.286 4.571 3.429 7.429 9.143 7.429 14.857v174.857l166.857 54.857c5.143 1.714 9.714 5.714 11.429 11.429s1.143 11.429-2.286 16.571l-102.857 141.714 102.857 141.714c3.429 4.571 4 10.857 2.286 16.571z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sun-o"
+ ],
+ "defaultCode": 61829,
+ "grid": 14
+ },
+ {
+ "id": 352,
+ "paths": [
+ "M721.143 744.571c-20.571 3.429-41.714 5.143-62.857 5.143-212 0-384-172-384-384 0-72.571 21.143-143.429 59.429-204-152 45.143-260.571 184.571-260.571 350.286 0 201.714 164 365.714 365.714 365.714 110.286 0 213.714-50.286 282.286-133.143zM837.143 696c-71.429 154.857-228 254.857-398.286 254.857-241.714 0-438.857-197.143-438.857-438.857 0-237.143 185.714-429.714 422.286-438.286 16-0.571 29.143 8.571 34.857 22.286 6.286 14.286 2.286 30.857-8.571 41.143-65.143 59.429-101.143 140.571-101.143 228.571 0 171.429 139.429 310.857 310.857 310.857 45.143 0 88.571-9.714 130.286-29.143 14.286-6.286 30.286-3.429 41.143 7.429s13.714 27.429 7.429 41.143z"
+ ],
+ "width": 843.4102857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "moon-o"
+ ],
+ "defaultCode": 61830,
+ "grid": 14
+ },
+ {
+ "id": 353,
+ "paths": [
+ "M621.714 475.429c0-20-16.571-36.571-36.571-36.571h-146.286c-20 0-36.571 16.571-36.571 36.571s16.571 36.571 36.571 36.571h146.286c20 0 36.571-16.571 36.571-36.571zM950.857 365.714v548.571c0 20-16.571 36.571-36.571 36.571h-804.571c-20 0-36.571-16.571-36.571-36.571v-548.571c0-20 16.571-36.571 36.571-36.571h804.571c20 0 36.571 16.571 36.571 36.571zM987.429 109.714v146.286c0 20-16.571 36.571-36.571 36.571h-877.714c-20 0-36.571-16.571-36.571-36.571v-146.286c0-20 16.571-36.571 36.571-36.571h877.714c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "archive"
+ ],
+ "defaultCode": 61831,
+ "grid": 14
+ },
+ {
+ "id": 354,
+ "paths": [
+ "M932.571 548.571c0 20-16.571 36.571-36.571 36.571h-128c0 71.429-15.429 125.143-38.286 165.714l118.857 119.429c14.286 14.286 14.286 37.143 0 51.429-6.857 7.429-16.571 10.857-25.714 10.857s-18.857-3.429-25.714-10.857l-113.143-112.571s-74.857 68.571-172 68.571v-512h-73.143v512c-103.429 0-178.857-75.429-178.857-75.429l-104.571 118.286c-7.429 8-17.143 12-27.429 12-8.571 0-17.143-2.857-24.571-9.143-14.857-13.714-16-36.571-2.857-52l115.429-129.714c-20-39.429-33.143-90.286-33.143-156.571h-128c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571h128v-168l-98.857-98.857c-14.286-14.286-14.286-37.143 0-51.429s37.143-14.286 51.429 0l98.857 98.857h482.286l98.857-98.857c14.286-14.286 37.143-14.286 51.429 0s14.286 37.143 0 51.429l-98.857 98.857v168h128c20 0 36.571 16.571 36.571 36.571zM658.286 219.429h-365.714c0-101.143 81.714-182.857 182.857-182.857s182.857 81.714 182.857 182.857z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bug"
+ ],
+ "defaultCode": 61832,
+ "grid": 14
+ },
+ {
+ "id": 355,
+ "paths": [
+ "M1095.429 297.143c8.571 23.429-18.286 78.286-85.714 168-110.857 147.429-122.857 133.714-31.429 218.857 88 81.714 106.286 121.143 109.143 126.286 0 0 36.571 64-40.571 64.571l-146.286 2.286c-31.429 6.286-73.143-22.286-73.143-22.286-54.857-37.714-106.286-135.429-146.286-122.857 0 0-41.143 13.143-40 101.143 0.571 18.857-8.571 29.143-8.571 29.143s-10.286 10.857-30.286 12.571h-65.714c-144.571 9.143-272-124-272-124s-139.429-144-261.714-431.429c-8-18.857 0.571-28 0.571-28s8.571-10.857 32.571-10.857l156.571-1.143c14.857 2.286 25.143 10.286 25.143 10.286s9.143 6.286 13.714 18.286c25.714 64 58.857 122.286 58.857 122.286 57.143 117.714 96 137.714 118.286 125.714 0 0 29.143-17.714 22.857-160-2.286-51.429-16.571-74.857-16.571-74.857-13.143-17.714-37.714-22.857-48.571-24.571-8.571-1.143 5.714-21.714 24.571-30.857 28-13.714 77.714-14.286 136.571-13.714 46.286 0.571 59.429 3.429 77.143 7.429 54.286 13.143 36 63.429 36 184.571 0 38.857-7.429 93.143 20.571 110.857 12 8 41.714 1.143 114.857-123.429 0 0 34.286-59.429 61.143-128.571 4.571-12.571 14.286-17.714 14.286-17.714s9.143-5.143 21.714-3.429l164.571-1.143c49.714-6.286 57.714 16.571 57.714 16.571z"
+ ],
+ "width": 1118.8662857142856,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "vk"
+ ],
+ "defaultCode": 61833,
+ "grid": 14
+ },
+ {
+ "id": 356,
+ "paths": [
+ "M385.714 733.714c16-26.286 7.429-56.571-19.429-68-25.714-10.857-60 0.571-76 25.714-16.571 25.714-8.571 56 17.143 68 26.286 12 61.714 0.571 78.286-25.714zM439.429 664.571c5.714-10.286 2.286-21.714-8-25.714-10.286-3.429-22.857 1.143-28.571 10.857-5.714 10.286-2.857 21.143 7.429 25.714 10.286 4 23.429-0.571 29.143-10.857zM538.857 725.714c-34.286 77.714-133.714 120-218.286 92.571-81.714-26.286-116-106.857-80.571-179.429 35.429-70.857 126.286-110.857 206.857-90.286 84 21.714 126.286 100.571 92 177.143zM717.143 634.286c-10.857-111.429-157.143-188-326.857-171.429-169.714 17.143-297.714 120.571-286.857 232s157.143 188 326.857 171.429c169.714-17.143 297.714-120.571 286.857-232zM893.143 636.571c0 128.571-185.143 290.286-463.429 290.286-212.571 0-429.714-102.857-429.714-272.571 0-88.571 56-190.857 152.571-287.429 129.143-129.143 279.429-187.429 336-130.857 25.143 24.571 27.429 68 11.429 119.429-8 26.286 24.571 11.429 24.571 12 104-44 194.857-46.286 228 1.143 17.714 25.143 16 60.571 0 101.714-7.429 18.857 2.286 21.714 16.571 26.286 58.857 18.286 124 62.286 124 140zM850.857 280c32.571 36 41.714 85.714 27.429 129.143-5.714 17.714-24.571 27.429-42.286 21.714s-27.429-24.571-21.714-42.286v0c6.857-21.714 2.286-45.714-13.714-63.429s-39.429-24.571-61.143-20v0c-18.286 4-36.571-7.429-40-25.714-4-18.286 7.429-36 25.714-40 44.571-9.714 93.143 4 125.714 40.571zM954.286 186.857c67.429 74.286 85.143 176 56.571 265.143v0c-6.857 20.571-28.571 32-49.143 25.143s-32-28.571-25.714-49.143v0c20.571-63.429 8-136-40-188.571-48-53.143-118.286-73.143-183.429-59.429-21.143 4.571-42.286-9.143-46.857-30.286s9.143-41.714 30.286-46.286v0c92-19.429 190.857 8.571 258.286 83.429z"
+ ],
+ "width": 1039.433142857143,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "weibo"
+ ],
+ "defaultCode": 61834,
+ "grid": 14
+ },
+ {
+ "id": 357,
+ "paths": [
+ "M647.429 897.143c-62.286 34.286-133.714 53.714-210.286 53.714-76 0-147.429-19.429-209.714-53.714 101.143-64 182.857-160.571 209.714-273.714 27.429 113.143 109.143 209.714 210.286 273.714zM364.571 81.143v277.143c0 195.429-108 363.429-261.143 437.714-64.571-76.571-103.429-174.857-103.429-282.857 0-217.143 157.714-397.143 364.571-432zM877.714 513.143c0 108-38.857 206.286-103.429 282.857-153.143-74.286-261.143-242.286-261.143-437.714v-277.143c206.857 34.857 364.571 214.857 364.571 432z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "renren"
+ ],
+ "defaultCode": 61835,
+ "grid": 14
+ },
+ {
+ "id": 358,
+ "paths": [
+ "M801.143 630.286c-114.857 285.143-390.286 112.571-390.286 112.571-84.571 170.857-224 280.571-385.143 281.143-14.286 0-25.714-11.429-25.714-25.714s11.429-25.143 25.714-25.143c134.286-0.571 251.429-89.143 328-229.714-85.714 33.143-247.429 58.286-337.143-171.429 227.429-93.714 332 23.429 372 94.857 20.571-50.857 35.429-106.286 45.143-166.286 0 0-291.429 45.714-312-204.571 248.571-100 318.286 160 318.286 160 3.429-34.857 6.857-109.714 6.857-111.429 0 0-221.714-153.714-79.429-344.571 260 89.714 128 338.857 128 338.857 1.143 3.429 1.143 49.714 0 69.714 0 0 94.286-185.714 284.571-120-8.571 279.429-296 221.714-296 221.714-9.143 57.143-23.429 111.429-41.714 161.714 0 0 173.143-191.429 358.857-41.714z"
+ ],
+ "width": 801.1337142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pagelines"
+ ],
+ "defaultCode": 61836,
+ "grid": 14
+ },
+ {
+ "id": 359,
+ "paths": [
+ "M719.429 716v37.714c0 64.571-50.286 116.571-112 116.571h-32.571l-148.571 153.714v-153.714h-302.286c-61.714 0-112-52-112-116.571v-37.714h707.429zM719.429 529.714v145.714h-707.429v-145.714h707.429zM719.429 342.286v145.714h-707.429v-145.714h707.429zM719.429 262.286v38.286h-707.429v-38.286c0-64 50.286-116 112-116h483.429c61.714 0 112 52 112 116z"
+ ],
+ "width": 731.4285714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "stack-exchange"
+ ],
+ "defaultCode": 61837,
+ "grid": 14
+ },
+ {
+ "id": 360,
+ "paths": [
+ "M658.286 512c0 4.571-1.714 9.714-5.143 13.143l-182.857 182.857c-3.429 3.429-8.571 5.143-13.143 5.143-9.714 0-18.286-8.571-18.286-18.286v-109.714h-201.143c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h201.143v-109.714c0-10.286 8-18.286 18.286-18.286 5.143 0 9.714 2.286 13.714 5.714l182.286 182.286c3.429 3.429 5.143 8.571 5.143 13.143zM749.714 512c0-171.429-139.429-310.857-310.857-310.857s-310.857 139.429-310.857 310.857 139.429 310.857 310.857 310.857 310.857-139.429 310.857-310.857zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow-circle-o-right"
+ ],
+ "defaultCode": 61838,
+ "grid": 14
+ },
+ {
+ "id": 361,
+ "paths": [
+ "M658.286 457.143v109.714c0 9.714-8.571 18.286-18.286 18.286h-201.143v109.714c0 10.286-8 18.286-18.286 18.286-5.143 0-9.714-2.286-13.714-5.714l-182.286-182.286c-3.429-3.429-5.143-8.571-5.143-13.143s1.714-9.714 5.143-13.143l182.857-182.857c3.429-3.429 8.571-5.143 13.143-5.143 9.714 0 18.286 8.571 18.286 18.286v109.714h201.143c9.714 0 18.286 8.571 18.286 18.286zM749.714 512c0-171.429-139.429-310.857-310.857-310.857s-310.857 139.429-310.857 310.857 139.429 310.857 310.857 310.857 310.857-139.429 310.857-310.857zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow-circle-o-left"
+ ],
+ "defaultCode": 61840,
+ "grid": 14
+ },
+ {
+ "id": 362,
+ "paths": [
+ "M585.143 329.143v365.714c0 20-16.571 36.571-36.571 36.571-7.429 0-14.857-2.286-21.143-6.857l-256-182.857c-9.714-6.857-15.429-17.714-15.429-29.714 0-11.429 5.714-22.857 15.429-29.714l256-182.857c6.286-4.571 13.714-6.857 21.143-6.857 20 0 36.571 16.571 36.571 36.571zM731.429 786.286v-548.571c0-9.714-8.571-18.286-18.286-18.286h-548.571c-9.714 0-18.286 8.571-18.286 18.286v548.571c0 9.714 8.571 18.286 18.286 18.286h548.571c9.714 0 18.286-8.571 18.286-18.286zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "caret-square-o-left",
+ "toggle-left"
+ ],
+ "defaultCode": 61841,
+ "grid": 14
+ },
+ {
+ "id": 363,
+ "paths": [
+ "M585.143 512c0 80.571-65.714 146.286-146.286 146.286s-146.286-65.714-146.286-146.286 65.714-146.286 146.286-146.286 146.286 65.714 146.286 146.286zM438.857 201.143c-171.429 0-310.857 139.429-310.857 310.857s139.429 310.857 310.857 310.857 310.857-139.429 310.857-310.857-139.429-310.857-310.857-310.857zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857v0c242.286 0 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "dot-circle-o"
+ ],
+ "defaultCode": 61842,
+ "grid": 14
+ },
+ {
+ "id": 364,
+ "paths": [
+ "M584.571 678.286l58.286 116.571c-44 136-170.857 229.143-313.714 229.143-181.143 0-329.143-148-329.143-329.143 0-138.286 86.857-261.714 216.571-309.143l9.714 74.857c-93.143 41.143-153.143 132.571-153.143 234.286 0 141.143 114.857 256 256 256 146.857 0 265.714-125.714 255.429-272.571zM897.714 735.429l33.143 65.143-146.286 73.143c-5.143 2.857-10.857 4-16.571 4-13.714 0-26.857-8-32.571-20l-136.571-272.571h-269.714c-18.286 0-34.286-14.286-36.571-32.571l-54.857-445.143c-0.571-5.714 1.714-18.286 3.429-24 10.857-39.429 47.429-65.143 88-65.143 50.286 0 91.429 41.143 91.429 91.429 0 52-45.714 96.571-98.286 90.857l21.143 165.143h241.714v73.143h-232.571l9.143 73.143h260c13.714 0 26.857 8 32.571 20l130.286 260z"
+ ],
+ "width": 930.8891428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wheelchair"
+ ],
+ "defaultCode": 61843,
+ "grid": 14
+ },
+ {
+ "id": 365,
+ "paths": [
+ "M738.286 364.571c4-82.857-26.857-124.571-92-126.857-88-2.857-147.429 46.857-178.286 149.143 16-6.857 31.429-10.857 46.857-10.857 32 0 46.286 18.286 42.286 54.857-1.714 21.714-16 53.714-42.286 95.429-26.857 42.286-46.857 62.857-60 62.857-17.143 0-32-32-46.857-96.571-4.571-19.429-13.143-67.429-25.714-145.714-11.429-72-41.714-105.714-91.429-101.143-20.571 2.286-52.571 20.571-93.714 57.143-30.857 26.857-61.143 54.857-92.571 82.286l29.714 38.286c28.571-19.429 45.143-29.714 49.714-29.714 21.714 0 42.286 34.286 61.143 102.286 17.143 62.857 34.286 125.143 51.429 188 25.714 68 56.571 102.286 93.714 102.286 59.429 0 132.571-56 218.857-168 83.429-107.429 126.857-192 129.143-253.714zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "vimeo-square"
+ ],
+ "defaultCode": 61844,
+ "grid": 14
+ },
+ {
+ "id": 366,
+ "paths": [
+ "M658.286 475.429c0 221.714-180.571 402.286-402.286 402.286h-91.429c-10.286 0-18.286-8-18.286-18.286v-349.143l-122.857 37.714c-1.714 0.571-3.429 0.571-5.143 0.571-4 0-7.429-1.143-10.857-3.429-4.571-3.429-7.429-9.143-7.429-14.857v-73.143c0-8 5.143-14.857 13.143-17.714l133.143-40.571v-53.143l-122.857 37.714c-1.714 0.571-3.429 0.571-5.143 0.571-4 0-7.429-1.143-10.857-3.429-4.571-3.429-7.429-9.143-7.429-14.857v-73.143c0-8 5.143-14.857 13.143-17.714l133.143-40.571v-142.857c0-10.286 8-18.286 18.286-18.286h91.429c10.286 0 18.286 8 18.286 18.286v103.429l214.286-66.286c5.143-1.714 11.429-0.571 16 2.857s7.429 9.143 7.429 14.857v73.143c0 8-5.143 14.857-13.143 17.714l-224.571 69.143v53.143l214.286-66.286c5.143-1.714 11.429-0.571 16 2.857s7.429 9.143 7.429 14.857v73.143c0 8-5.143 14.857-13.143 17.714l-224.571 69.143v278.286c142.857-9.714 256-128.571 256-273.714 0-10.286 8-18.286 18.286-18.286h91.429c10.286 0 18.286 8 18.286 18.286z"
+ ],
+ "width": 658.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "try",
+ "turkish-lira"
+ ],
+ "defaultCode": 61845,
+ "grid": 14
+ },
+ {
+ "id": 367,
+ "paths": [
+ "M658.286 457.143v36.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 713.143v-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 237.714v475.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
+ },
+ {
+ "id": 368,
+ "paths": [
+ "M354.286 640c-39.429 22.857-93.143 36.571-153.143 36.571h-73.143v-36.571h-36.571c-10.286 0-18.286-20.571-18.286-45.714 0-10.286 1.714-20 4-28-44-1.143-77.143-8.571-77.143-17.714s33.143-16.571 77.143-17.714c-2.286-8-4-17.714-4-28 0-25.143 8-45.714 18.286-45.714h36.571v-36.571h73.143c60 0 113.714 13.714 153.143 36.571h636c42.286 7.429 80.571 13.714 106.857 18.286 109.714 18.286 146.286 54.857 146.286 73.143s-36.571 54.857-146.286 73.143c-26.286 4.571-64.571 10.857-106.857 18.286h-636zM993.714 496c18.286 12.571 30.286 31.429 30.286 52.571s-12 40-30.286 52.571l46.286 17.143c23.429-16.571 38.857-41.714 38.857-69.714s-15.429-53.143-38.857-69.714zM357.143 649.143h580s-124 21.714-260.571 45.714c-73.143 0-128 54.857-128 54.857l-164.571 164.571s-55.429 36.571-91.429 36.571h-54.857l-53.143-265.143h16.571c58.286 0 113.714-13.143 156-36.571zM201.143 411.429h-16.571l53.143-265.143h54.857c37.143 0 73.143 18.286 91.429 36.571l164.571 164.571c0 0 54.857 54.857 128 54.857 136.571 24 260.571 45.714 260.571 45.714h-580c-42.286-23.429-97.714-36.571-156-36.571z"
+ ],
+ "width": 1243.4285714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "space-shuttle"
+ ],
+ "defaultCode": 61847,
+ "grid": 14
+ },
+ {
+ "id": 369,
+ "paths": [
+ "M868 443.429c46.857 0 82.857 34.286 82.857 81.143 0 36.571-18.857 62.286-53.143 74.286l-98.286 33.714 32 95.429c2.857 8.571 4 17.714 4 26.857 0 45.143-36.571 82.857-81.714 82.857-36 0-68-22.286-79.429-56.571l-31.429-94.286-177.143 60.571 31.429 93.714c2.857 8.571 4.571 17.714 4.571 26.857 0 44.571-36.571 82.857-82.286 82.857-36 0-67.429-22.286-78.857-56.571l-31.429-93.143-87.429 30.286c-9.143 2.857-18.857 5.143-28.571 5.143-46.286 0-81.143-34.286-81.143-80.571 0-35.429 22.857-67.429 56.571-78.857l89.143-30.286-60-178.857-89.143 30.857c-9.143 2.857-18.286 4.571-27.429 4.571-45.714 0-81.143-34.857-81.143-80.571 0-35.429 22.857-67.429 56.571-78.857l89.714-30.286-30.286-90.857c-2.857-8.571-4.571-17.714-4.571-26.857 0-45.143 36.571-82.857 82.286-82.857 36 0 67.429 22.286 78.857 56.571l30.857 91.429 177.143-60-30.857-91.429c-2.857-8.571-4.571-17.714-4.571-26.857 0-45.143 37.143-82.857 82.286-82.857 36 0 68 22.857 79.429 56.571l30.286 92 92.571-31.429c8-2.286 16-3.429 24.571-3.429 44.571 0 82.857 33.143 82.857 78.857 0 35.429-27.429 65.143-59.429 76l-89.714 30.857 60 180.571 93.714-32c8.571-2.857 17.714-4.571 26.286-4.571zM414.286 593.143l177.143-60-60-180-177.143 61.143z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "slack"
+ ],
+ "defaultCode": 61848,
+ "grid": 14
+ },
+ {
+ "id": 370,
+ "paths": [
+ "M713.143 73.143c90.857 0 164.571 73.714 164.571 164.571v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571zM731.429 676.571v-249.143c-10.857 12-22.857 22.857-36.571 31.429-53.714 35.429-109.143 68.571-162.286 105.143-26.857 18.857-60 39.429-93.714 39.429v0 0 0 0c-33.714 0-66.857-20.571-93.714-39.429-53.143-36.571-109.143-69.143-162.286-105.714-13.143-8.571-23.429-21.143-36.571-30.857v249.143c0 30.286 24.571 54.857 54.857 54.857h475.429c30.286 0 54.857-24.571 54.857-54.857zM731.429 349.143c0-30.857-22.857-56.571-54.857-56.571h-475.429c-30.286 0-54.857 24.571-54.857 54.857 0 30.857 32 64.571 56 80.571 50.286 33.714 102.286 65.143 152.571 98.286 21.714 14.286 57.714 40.571 84 40.571s62.286-26.286 84-40.571c50.857-33.143 101.714-65.714 152.571-99.429 22.286-14.857 56-49.143 56-77.714z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "envelope-square"
+ ],
+ "defaultCode": 61849,
+ "grid": 14
+ },
+ {
+ "id": 371,
+ "paths": [
+ "M72.571 512c0-63.429 13.714-124 38.286-178.857l209.714 574.286c-146.857-71.429-248-221.714-248-395.429zM808.571 489.714c0 37.714-15.429 81.143-33.714 142.286l-43.429 146.286-158.857-472s26.286-1.714 50.286-4.571c23.429-2.857 20.571-37.714-2.857-36-71.429 5.143-117.143 5.714-117.143 5.714s-42.857-0.571-115.429-5.714c-24-1.714-26.857 34.286-2.857 36 22.286 2.286 45.714 4.571 45.714 4.571l68.571 187.429-96 288-160-475.429s26.286-1.714 50.286-4.571c23.429-2.857 20.571-37.714-2.857-36-70.857 5.143-117.143 5.714-117.143 5.714-8 0-17.714-0.571-28-0.571 78.286-119.429 213.143-198.286 366.857-198.286 114.286 0 218.286 44 296.571 115.429h-5.714c-42.857 0-73.714 37.143-73.714 77.714 0 36 21.143 66.286 43.429 102.857 17.143 29.143 36 66.857 36 121.143zM519.429 550.286l135.429 369.714c0.571 2.286 1.714 4.571 2.857 6.286-45.714 16-94.286 25.143-145.714 25.143-42.857 0-84.571-6.286-124-18.286zM897.143 301.143c34.286 62.857 54.286 134.286 54.286 210.857 0 162.286-88 303.429-218.857 379.429l134.286-387.429c22.286-64 33.714-113.143 33.714-157.714 0-16-1.143-30.857-3.429-45.143zM512 0c282.286 0 512 229.714 512 512s-229.714 512-512 512-512-229.714-512-512 229.714-512 512-512zM512 1000.571c269.143 0 488.571-219.429 488.571-488.571s-219.429-488.571-488.571-488.571-488.571 219.429-488.571 488.571 219.429 488.571 488.571 488.571z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wordpress"
+ ],
+ "defaultCode": 61850,
+ "grid": 14
+ },
+ {
+ "id": 372,
+ "paths": [
+ "M620.571 0v877.714l-155.429 73.143c-262.857-23.429-465.143-163.429-465.143-333.143 0-163.429 188.571-299.429 438.286-329.714v98.286c-163.429 28.571-283.429 121.143-283.429 231.429 0 116.571 133.714 213.143 310.286 235.429v0-777.143zM1002.857 332.571l21.143 222.857-300-65.143 84-47.429c-44.571-26.286-99.429-45.714-160-56.571v-98.286c105.714 12.571 200.571 44.571 274.857 89.714z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "openid"
+ ],
+ "defaultCode": 61851,
+ "grid": 14
+ },
+ {
+ "id": 373,
+ "paths": [
+ "M548.571 0l548.571 219.429v73.143h-73.143c0 20-17.714 36.571-39.429 36.571h-872c-21.714 0-39.429-16.571-39.429-36.571h-73.143v-73.143zM146.286 365.714h146.286v438.857h73.143v-438.857h146.286v438.857h73.143v-438.857h146.286v438.857h73.143v-438.857h146.286v438.857h33.714c21.714 0 39.429 16.571 39.429 36.571v36.571h-950.857v-36.571c0-20 17.714-36.571 39.429-36.571h33.714v-438.857zM1057.714 914.286c21.714 0 39.429 16.571 39.429 36.571v73.143h-1097.143v-73.143c0-20 17.714-36.571 39.429-36.571h1018.286z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bank",
+ "institution",
+ "university"
+ ],
+ "defaultCode": 61852,
+ "grid": 14
+ },
+ {
+ "id": 374,
+ "paths": [
+ "M1013.714 477.714l10.286 180.571c4.571 80.571-164 146.286-365.714 146.286s-370.286-65.714-365.714-146.286l10.286-180.571 328 103.429c9.143 2.857 18.286 4 27.429 4s18.286-1.143 27.429-4zM1316.571 292.571c0 8-5.143 14.857-12.571 17.714l-640 201.143c-2.286 0.571-4 0.571-5.714 0.571s-3.429 0-5.714-0.571l-372.571-117.714c-32.571 25.714-55.429 88.571-60 165.714 21.714 12.571 36 35.429 36 62.286 0 25.714-13.143 48-33.143 61.143l33.143 247.429c0.571 5.143-1.143 10.286-4.571 14.286s-8.571 6.286-13.714 6.286h-109.714c-5.143 0-10.286-2.286-13.714-6.286s-5.143-9.143-4.571-14.286l33.143-247.429c-20-13.143-33.143-35.429-33.143-61.143 0-27.429 15.429-50.857 37.143-63.429 3.429-66.857 20.571-138.857 56-188.571l-190.286-59.429c-7.429-2.857-12.571-9.714-12.571-17.714s5.143-14.857 12.571-17.714l640-201.143c2.286-0.571 4-0.571 5.714-0.571s3.429 0 5.714 0.571l640 201.143c7.429 2.857 12.571 9.714 12.571 17.714z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "graduation-cap",
+ "mortar-board"
+ ],
+ "defaultCode": 61853,
+ "grid": 14
+ },
+ {
+ "id": 375,
+ "paths": [
+ "M490.857 546.857l7.429 404c-19.429-3.429-39.429-6.286-60-6.286-20 0-40 2.857-60 6.286l7.429-404c-106.286-183.429-206.286-370.286-323.429-546.857 20 5.143 40.571 8.571 61.714 8.571s42.857-4 63.429-8.571c80 141.714 166.857 279.429 250.857 418.857 84.571-138.286 174.286-276 250.857-418.857 20 5.143 40.571 8 61.143 8 21.714 0 44-2.857 65.143-8v0 0c-45.714 62.857-83.429 131.429-122.857 198.286-68 116-134.857 232-201.714 348.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "yahoo"
+ ],
+ "defaultCode": 61854,
+ "grid": 14
+ },
+ {
+ "id": 376,
+ "paths": [
+ "M438.857 449.143h414.286c4 22.286 6.857 44 6.857 73.143 0 250.286-168 428.571-421.143 428.571-242.857 0-438.857-196-438.857-438.857s196-438.857 438.857-438.857c118.286 0 217.714 43.429 294.286 114.857l-119.429 114.857c-32.571-31.429-89.714-68-174.857-68-149.714 0-272 124-272 277.143s122.286 277.143 272 277.143c173.714 0 238.857-124.571 249.143-189.143h-249.143v-150.857z"
+ ],
+ "width": 860.0137142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "google"
+ ],
+ "defaultCode": 61856,
+ "grid": 14
+ },
+ {
+ "id": 377,
+ "paths": [
+ "M625.714 666.857c5.143 5.143 5.143 13.143 0 17.714-32.571 32.571-95.429 35.429-113.714 35.429s-81.143-2.857-113.714-35.429c-5.143-4.571-5.143-12.571 0-17.714 4.571-4.571 12.571-4.571 17.143 0 20.571 21.143 65.143 28 96.571 28s75.429-6.857 96.571-28c4.571-4.571 12.571-4.571 17.143 0zM450.286 563.429c0 28-22.857 50.857-50.857 50.857-28.571 0-51.429-22.857-51.429-50.857 0-28.571 22.857-51.429 51.429-51.429 28 0 50.857 22.857 50.857 51.429zM676 563.429c0 28-22.857 50.857-51.429 50.857-28 0-50.857-22.857-50.857-50.857 0-28.571 22.857-51.429 50.857-51.429 28.571 0 51.429 22.857 51.429 51.429zM819.429 494.857c0-37.714-30.857-68-68.571-68-19.429 0-36.571 8-49.143 20.571-46.286-32-108.571-52.571-177.714-54.857l36-161.714 114.286 25.714c0 28 22.857 50.857 50.857 50.857 28.571 0 51.429-23.429 51.429-51.429s-22.857-51.429-51.429-51.429c-20 0-37.143 12-45.714 28.571l-126.286-28c-6.286-1.714-12.571 2.857-14.286 9.143l-39.429 178.286c-68.571 2.857-130.286 23.429-176.571 55.429-12.571-13.143-30.286-21.143-49.714-21.143-37.714 0-68.571 30.286-68.571 68 0 27.429 16 50.286 38.857 61.714-2.286 10.286-3.429 21.143-3.429 32 0 108.571 122.286 196.571 272.571 196.571 150.857 0 273.143-88 273.143-196.571 0-10.857-1.143-22.286-4-32.571 22.286-11.429 37.714-34.286 37.714-61.143zM1024 512c0 282.857-229.143 512-512 512s-512-229.143-512-512 229.143-512 512-512 512 229.143 512 512z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "reddit"
+ ],
+ "defaultCode": 61857,
+ "grid": 14
+ },
+ {
+ "id": 378,
+ "paths": [
+ "M536.571 645.143c4 4 4 10.857 0 14.857-28 28-81.714 30.286-97.714 30.286s-69.714-2.286-97.714-30.286c-4-4-4-10.857 0-14.857 4-4.571 10.857-4.571 14.857 0 17.714 17.714 56 24 82.857 24s65.143-6.286 82.857-24c4-4.571 10.857-4.571 14.857 0zM386.286 556c0 24-20 44-44 44s-44-20-44-44c0-24.571 20-44 44-44s44 19.429 44 44zM579.429 556c0 24-20 44-44 44s-44-20-44-44c0-24.571 20-44 44-44s44 19.429 44 44zM702.286 497.143c0-32-26.286-58.286-58.857-58.286-16 0-30.857 6.857-41.714 17.714-40-27.429-93.714-45.143-152.571-46.857l30.857-138.857 97.714 22.286c0.571 24 20 43.429 44 43.429s44-20 44-44-20-44-44-44c-17.143 0-32 9.714-39.429 24.571l-108-24c-5.714-1.714-10.857 2.286-12 7.429l-34.286 153.143c-58.857 2.286-112 20-151.429 47.429-10.857-11.429-25.714-18.286-42.286-18.286-32.571 0-58.857 26.286-58.857 58.286 0 23.429 13.714 43.429 33.143 53.143-1.714 8.571-2.857 18.286-2.857 27.429 0 93.143 104.571 168.571 233.714 168.571s234.286-75.429 234.286-168.571c0-9.714-1.143-18.857-3.429-28 18.857-9.714 32-29.714 32-52.571zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "reddit-square"
+ ],
+ "defaultCode": 61858,
+ "grid": 14
+ },
+ {
+ "id": 379,
+ "paths": [
+ "M494.857 479.429l51.429-15.429v-35.429c0-60.571-51.429-109.143-112-109.143s-112 48-112 108.571v161.714c0 14.857-12 26.857-26.857 26.857s-26.286-12-26.286-26.857v-68.571h-86.286v69.714c0 62.286 50.286 112 112.571 112 61.143 0 112-49.143 112-110.286v-160c0-14.857 12-26.857 26.857-26.857 14.286 0 26.286 12 26.286 26.857v30.857zM685.143 590.857v-69.714h-85.714v72c0 14.857-12 26.857-26.857 26.857-14.286 0-26.286-12-26.286-26.857v-70.286l-51.429 14.857-34.286-16v70.286c0 61.143 50.857 110.857 112.571 110.857s112-49.714 112-112zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "stumbleupon-circle"
+ ],
+ "defaultCode": 61859,
+ "grid": 14
+ },
+ {
+ "id": 380,
+ "paths": [
+ "M606.857 406.857v-67.429c0-32-26.286-58.286-58.286-58.286s-58.286 26.286-58.286 58.286v349.714c0 133.714-110.857 241.714-245.143 241.714-135.429 0-245.143-109.714-245.143-245.143v-152h187.429v149.714c0 32.571 26.286 58.286 58.286 58.286s58.286-25.714 58.286-58.286v-354.286c0-130.857 112-236 244.571-236 133.143 0 244.571 105.714 244.571 237.714v77.714l-111.429 33.143zM909.714 533.714h187.429v152c0 135.429-109.714 245.143-245.143 245.143-134.857 0-245.143-108.571-245.143-242.857v-153.143l74.857 34.857 111.429-33.143v154.286c0 32 26.286 57.714 58.286 57.714s58.286-25.714 58.286-57.714v-157.143z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "stumbleupon"
+ ],
+ "defaultCode": 61860,
+ "grid": 14
+ },
+ {
+ "id": 381,
+ "paths": [
+ "M841.143 786.286v-274.286h-402.286v-402.286h-274.286c-70.857 0-128 57.143-128 128v274.286h402.286v402.286h274.286c70.857 0 128-57.143 128-128zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "delicious"
+ ],
+ "defaultCode": 61861,
+ "grid": 14
+ },
+ {
+ "id": 382,
+ "paths": [
+ "M187.429 161.143h116.571v561.714h-304v-398.286h187.429v-163.429zM187.429 629.143v-210.857h-70.286v210.857h70.286zM350.857 324.571v398.286h117.143v-398.286h-117.143zM350.857 161.143v116.571h117.143v-116.571h-117.143zM514.857 324.571h304.571v538.286h-304.571v-93.143h187.429v-46.857h-187.429v-398.286zM702.286 629.143v-210.857h-70.286v210.857h70.286zM866.286 324.571h304v538.286h-304v-93.143h186.857v-46.857h-186.857v-398.286zM1053.143 629.143v-210.857h-70.286v210.857h70.286z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "digg"
+ ],
+ "defaultCode": 61862,
+ "grid": 14
+ },
+ {
+ "id": 383,
+ "paths": [
+ "M597.714 582.857c0 48.571-33.143 88-73.714 88-16.571 0-29.714-2.857-40-8.571v-158.286c10.286-6.286 23.429-9.714 40-9.714 40.571 0 73.714 39.429 73.714 88.571zM401.714 338.286c0 49.143-33.143 88.571-73.714 88.571-16.571 0-29.714-2.857-40-8.571v-158.286c10.286-6.286 23.429-9.714 40-9.714 40.571 0 73.714 39.429 73.714 88zM722.857 584.571c0-102.286-77.143-185.143-172-185.143-7.429 0-14.857 0.571-22.286 1.714-8.571 29.143-23.429 55.429-44.571 77.714-32 34.857-74.857 55.429-120.571 57.714v363.429l120.571-23.429v-117.714c20 7.429 42.286 10.857 66.857 10.857 94.857 0 172-82.857 172-185.143zM526.857 340.571c0-102.286-77.143-185.143-172.571-185.143-28 0-56 7.429-80.571 20.571h-106.286v480l120.571-23.429v-117.714c20 6.857 42.286 10.857 66.286 10.857 95.429 0 172.571-82.857 172.571-185.143zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pied-piper-pp"
+ ],
+ "defaultCode": 61863,
+ "grid": 14
+ },
+ {
+ "id": 384,
+ "paths": [
+ "M698.286 530.857c148.571-5.714 230.857 116.571 298.286 229.714 40 68 86.857 108 144.571 158.857-61.714 38.286-140 64-206.286 93.714-109.714-92-45.714-457.143-221.714-457.143l-5.714 1.143-3.429 2.286c2.286 2.857 5.143 5.714 7.429 8 47.429 40 66.286 48.571 69.143 116.571l0.571 18.857c1.714 42.857-10.857 84.571-19.429 126.286-38.286-1.143-75.429 11.429-113.714 11.429-14.286 0-28-1.714-41.143-5.714-1.143-9.143-1.143-18.286-1.143-26.857 0-17.714-0.571-37.714 1.714-54.857 2.857-18.857 66.857-59.429 65.714-86.857-10.857-1.143-18.286 5.143-24.571 13.714-26.286 38.857-93.714 83.429-141.714 83.429-33.143 0-112-142.286-152-170.857-6.286-4.571-10.286-10.857-15.429-17.143-32 7.429-277.143 64-293.143 64-12 0-22.857-9.714-22.857-21.714 0-10.857 6.857-21.143 17.714-23.429l277.714-60.571c-18.857-34.286 24.571-34.857 42.857-40 6.286-1.714 12.571-8 18.857-8 12.571 0 23.429 17.714 27.429 28 12.571-2.857 90.857-21.143 98.286-21.143 12.571 0 24 9.143 24 22.286 0 10.857-6.857 20.571-18.286 22.857l-104 22.857-0.571 9.143c-0.571 20 90.286 119.429 106.286 119.429 36 0 109.143-82.857 109.143-119.429 0-61.143-85.143-25.143-85.143-66.857 0-6.857 2.286-13.143 5.714-19.429l-38.857-10.857c17.714-18.286 24.571-41.714 24.571-66.857 0-10.857-1.143-22.286-2.857-33.143 29.143-5.714 53.143-9.143 82.286-9.143 113.143 0 90.857 17.143 130.286 108l28.571-14.286c-4.571 68-72 34.857-69.714 61.714zM732.571 396.571c-22.286-25.714-32-38.286-45.143-44-13.714-6.286-31.429-4.571-72.571-4.571-42.857 0-85.143 6.286-124 24.571 12.571-23.429 26.286-33.714 51.429-43.429 54.286-20.571 80-60.571 117.143-101.714 19.429 13.714 28 48 56 46.286l6.857-0.571v43.429l12.571 0.571c74.286-28.571 148.571-60 212-108.571 96-73.143 105.143-99.429 161.714-198.857l4-5.143c-1.143 28-12.571 54.286-24.571 79.429-60.571 126.857-156.571 199.429-292 232-24.571 5.714-52.571 6.286-74.857 17.714 2.857 19.429 26.286 36 26.286 45.714 0 6.857-10.857 14.286-14.857 17.143zM606.286 922.857c31.429-20.571 121.143-39.429 158.857-39.429 18.857 0 56 89.714 65.714 109.714-44.571 16.571-91.429 25.714-139.429 25.714-24 0-48-2.286-71.429-6.286zM469.714 553.143l27.429-6.857 62.286 101.143-41.714 27.429zM756 848.571c0.571 2.857 1.714 6.286 1.714 9.143 0 14.857-98.286 25.143-116 28l-4-24.571c35.429-4 74.857-13.143 110.286-12.571h8zM494.857 489.714l-54.857 11.429-3.429-9.714c13.143-1.143 25.143-7.429 38.286-7.429 7.429 0 13.714 1.714 20 5.714zM606.286 852h17.714l5.714 47.429-23.429 6.857v-54.286zM1114.286 0.571v0 0zM1114.286 0.571l-0.571 2.857-1.143 1.143 0.571-1.714zM1114.286 0.571l0.571-0.571z"
+ ],
+ "width": 1164.5805714285714,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pied-piper-alt"
+ ],
+ "defaultCode": 61864,
+ "grid": 14
+ },
+ {
+ "id": 385,
+ "paths": [
+ "M666.857 906.286c-1.143-4-4.571-9.714-13.714-2.857-19.429 14.286-62.857 32-124.571 32s-90.857-13.143-110.286-28c-2.857-2.286-1.714-2.286-7.429-2.286-6.286 0-9.714 2.857-14.857 6.857-4.571 4-6.857 13.714 0 20.571 42.286 38.857 113.143 35.429 165.143 30.857 52.571-5.143 97.143-36 101.714-40.571 6.857-6.857 5.143-12.571 4-16.571zM644.571 840.571c-4-9.714-10.857-26.857-22.286-34.857-11.429-7.429-28-8.571-43.429-8.571s-24-1.143-40.571 5.714-33.714 22.286-44.571 32-12.571 17.143-6.857 25.143c5.714 7.429 12 2.857 28-10.857 16.571-13.143 27.429-25.143 61.143-25.143s39.429 12.571 46.286 25.143 7.429 14.286 14.286 10.857c8-4 12-9.714 8-19.429zM847.429 680c0-29.714-13.143-80-61.714-80-45.714 0-138.286 94.857-186.857 95.429-56.571 1.143-134.857-112-248-110.857-89.143 0.571-159.429 71.429-160.571 146.857-0.571 42.286 13.143 73.714 42.286 93.714 19.429 13.143 37.143 21.143 94.857 21.143 96 0 217.714-118.857 273.714-117.143 44.571 1.714 113.714 110.857 148.571 113.143 27.429 2.286 41.714-10.286 65.143-44 22.857-34.286 32.571-88 32.571-118.286zM877.714 588.571c0 256-202.286 425.143-434.857 425.143-233.143 0-442.857-183.429-442.857-433.143 0-249.143 194.286-364.571 230.286-383.429 42.857-22.857 73.714-34.857 122.286-73.714 24-18.857 44-46.286 50.286-113.143 34.857 41.714 76.571 90.286 106.286 110.286 48.571 32 97.143 44.571 148 76.571 30.857 18.857 220.571 134.857 220.571 391.429z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "drupal"
+ ],
+ "defaultCode": 61865,
+ "grid": 14
+ },
+ {
+ "id": 386,
+ "paths": [
+ "M611.429 613.143l-91.429 91.429-86.286 86.857-17.143 17.143c-50.286 49.714-120.571 66.857-184.571 50.857-12 52.571-58.857 91.429-114.857 91.429-64.571 0-117.143-52.571-117.143-117.714 0-55.429 38.286-102.286 90.286-114.286-16.571-64.571 0.571-135.429 50.857-185.714l6.857-6.857 86.286 86.857-6.286 6.286c-28.571 28-28 73.714 0 102.286 28 28 73.714 28 101.714 0l17.143-17.143 86.286-86.857 92-91.429zM416.571 223.429l6.857 6.857-86.857 86.857-6.857-6.857c-28-28-73.714-28-101.714 0s-28 74.286 0 102.286l194.857 194.857-86.286 86.857-92-91.429-86.286-86.857-17.143-17.143c-52.571-52-68.571-126.857-48.571-193.714-52.571-11.429-91.429-58.286-91.429-114.286 0-65.143 52.571-117.714 117.143-117.714 58.857 0 106.857 42.857 116 98.286 63.429-14.857 132.571 2.857 182.286 52zM877.714 833.143c0 65.143-52.571 117.714-117.143 117.714-57.143 0-104.571-40.571-115.429-94.286v0c-66.286 20.571-142.286 4.571-194.857-48l-6.286-6.857 86.286-86.857 6.857 6.857c28 28 73.714 28 101.714 0s28-73.714 0-101.714l-195.429-195.429 86.857-86.857 178.286 178.286 16.571 17.143c49.714 49.714 67.429 120 51.429 184 57.143 8 101.143 56.571 101.143 116zM876.571 190.857c0 59.429-44.571 108.571-101.714 116.571 18.857 65.714 2.286 139.429-49.714 191.429l-6.857 6.857-86.286-86.857 6.857-6.857c28-28 28-73.714 0-101.714s-73.714-28-101.714 0l-195.429 195.429-86.857-86.857 92-91.429 86.857-86.857 16.571-17.143c52-52 126.286-68.571 192.571-49.143 8-57.143 57.143-101.143 116.571-101.143 64.571 0 117.143 52.571 117.143 117.714z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "joomla"
+ ],
+ "defaultCode": 61866,
+ "grid": 14
+ },
+ {
+ "id": 387,
+ "paths": [
+ "M373.714 616c-1.143 4-29.143-9.143-36.571-12-7.429-3.429-41.143-22.286-49.714-28s-41.143-32.571-45.143-34.286v0c-20.571 31.429-46.857 68.571-76.571 103.429-10.286 12-41.143 50.857-60 62.857-2.857 1.714-19.429 3.429-21.714 2.286 9.143-6.857 35.429-39.429 46.857-52.571 14.286-16.571 82.286-111.429 93.714-133.143 12-21.714 48-93.714 49.714-100.571-5.714-0.571-50.857 14.857-62.857 18.857-11.429 3.429-42.857 10.857-45.143 12.571-2.286 2.286-0.571 9.143-1.714 11.429s-11.429 7.429-17.714 8.571c-5.714 1.714-18.857 2.286-26.857 0-7.429-1.714-14.286-9.143-16-12 0 0-2.286-3.429-2.857-13.143 6.857-2.286 18.286-2.857 30.857-6.286s43.429-12.571 60-18.286 48.571-17.714 58.286-20c10.286-1.714 36-18.857 49.714-23.429s23.429-10.286 24-7.429 0 15.429-0.571 18.857c-0.571 2.857-28 56.571-32 65.143-2.286 4.571-18.286 34.857-44 74.857 9.143 4 28.571 12 36.571 16 9.714 4.571 77.714 33.143 81.143 34.286s9.714 27.429 8.571 32zM256.571 338.286c1.714 9.714-1.143 13.714-2.286 16-5.714 10.857-20 18.286-28.571 21.714s-22.857 6.857-34.286 6.857c-5.143-0.571-15.429-2.286-28-14.857-6.857-7.429-12-27.429-9.714-25.143s18.857 4.571 26.286 2.857 25.143-6.857 33.143-9.143c8.571-2.857 25.714-7.429 31.429-8 5.714 0 10.286 2.286 12 9.714zM655.429 412l36 129.714-79.429-24zM22.286 869.143l396.571-132.571v-589.714l-396.571 133.143v589.143zM731.429 688l58.286 17.714-103.429-375.429-57.143-17.714-123.429 306.286 58.286 17.714 25.714-62.857 120.571 37.143zM444 138.286l327.429 105.143v-217.143zM621.714 894.286l90.286 7.429-30.857 91.429-22.857-37.714c-46.286 29.714-103.429 52.571-157.714 61.714-16.571 3.429-35.429 6.857-52 6.857h-48c-60.571 0-170.857-36-218.857-70.857-3.429-2.857-4.571-5.143-4.571-9.143 0-6.286 4.571-10.857 10.286-10.857 5.143 0 32 16.571 39.429 20 51.429 25.714 123.429 49.143 181.143 49.143 71.429 0 120-9.143 185.143-37.143 18.857-8.571 35.429-19.429 53.143-29.143zM877.714 277.714v616.571c-441.714-140.571-442.286-140.571-442.286-140.571-9.143 4-418.857 142.286-424.571 142.286-4.571 0-8.571-2.857-10.286-7.429 0-0.571-0.571-1.143-0.571-1.714v-616c0.571-1.714 1.143-4.571 2.286-5.714 3.429-4 8-5.143 11.429-6.286 1.714-0.571 36.571-12 85.143-28.571v-219.429l318.857 113.143c4-1.143 359.429-124 364.571-124 6.286 0 11.429 4.571 11.429 12v238.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "language"
+ ],
+ "defaultCode": 61867,
+ "grid": 14
+ },
+ {
+ "id": 388,
+ "paths": [
+ "M164.571 219.429c50.286 0 91.429 41.143 91.429 91.429v621.714c0 50.286-41.143 91.429-91.429 91.429h-73.143c-50.286 0-91.429-41.143-91.429-91.429v-621.714c0-50.286 41.143-91.429 91.429-91.429h73.143zM950.857 312.571c43.429 25.143 73.143 72.571 73.143 126.286v438.857c0 80.571-65.714 146.286-146.286 146.286h-493.714c-50.286 0-91.429-41.143-91.429-91.429v-877.714c0-30.286 24.571-54.857 54.857-54.857h384c30.286 0 72.571 17.714 93.714 38.857l86.857 86.857c21.143 21.143 38.857 63.429 38.857 93.714v93.143zM530.286 877.714v-73.143c0-10.286-8-18.286-18.286-18.286h-73.143c-10.286 0-18.286 8-18.286 18.286v73.143c0 10.286 8 18.286 18.286 18.286h73.143c10.286 0 18.286-8 18.286-18.286zM530.286 731.429v-73.143c0-10.286-8-18.286-18.286-18.286h-73.143c-10.286 0-18.286 8-18.286 18.286v73.143c0 10.286 8 18.286 18.286 18.286h73.143c10.286 0 18.286-8 18.286-18.286zM530.286 585.143v-73.143c0-10.286-8-18.286-18.286-18.286h-73.143c-10.286 0-18.286 8-18.286 18.286v73.143c0 10.286 8 18.286 18.286 18.286h73.143c10.286 0 18.286-8 18.286-18.286zM676.571 877.714v-73.143c0-10.286-8-18.286-18.286-18.286h-73.143c-10.286 0-18.286 8-18.286 18.286v73.143c0 10.286 8 18.286 18.286 18.286h73.143c10.286 0 18.286-8 18.286-18.286zM676.571 731.429v-73.143c0-10.286-8-18.286-18.286-18.286h-73.143c-10.286 0-18.286 8-18.286 18.286v73.143c0 10.286 8 18.286 18.286 18.286h73.143c10.286 0 18.286-8 18.286-18.286zM676.571 585.143v-73.143c0-10.286-8-18.286-18.286-18.286h-73.143c-10.286 0-18.286 8-18.286 18.286v73.143c0 10.286 8 18.286 18.286 18.286h73.143c10.286 0 18.286-8 18.286-18.286zM822.857 877.714v-73.143c0-10.286-8-18.286-18.286-18.286h-73.143c-10.286 0-18.286 8-18.286 18.286v73.143c0 10.286 8 18.286 18.286 18.286h73.143c10.286 0 18.286-8 18.286-18.286zM822.857 731.429v-73.143c0-10.286-8-18.286-18.286-18.286h-73.143c-10.286 0-18.286 8-18.286 18.286v73.143c0 10.286 8 18.286 18.286 18.286h73.143c10.286 0 18.286-8 18.286-18.286zM822.857 585.143v-73.143c0-10.286-8-18.286-18.286-18.286h-73.143c-10.286 0-18.286 8-18.286 18.286v73.143c0 10.286 8 18.286 18.286 18.286h73.143c10.286 0 18.286-8 18.286-18.286zM877.714 365.714v-146.286h-91.429c-30.286 0-54.857-24.571-54.857-54.857v-91.429h-365.714v292.571h512z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fax"
+ ],
+ "defaultCode": 61868,
+ "grid": 14
+ },
+ {
+ "id": 389,
+ "paths": [
+ "M768 0c20 0 36.571 16.571 36.571 36.571v950.857c0 20-16.571 36.571-36.571 36.571h-731.429c-20 0-36.571-16.571-36.571-36.571v-950.857c0-20 16.571-36.571 36.571-36.571h731.429zM292.571 164.571v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286zM292.571 310.857v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286zM292.571 457.143v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286zM292.571 603.429v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286zM219.429 786.286v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM219.429 640v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM219.429 493.714v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM219.429 347.429v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM219.429 201.143v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM512 932.571v-109.714c0-10.286-8-18.286-18.286-18.286h-182.857c-10.286 0-18.286 8-18.286 18.286v109.714c0 10.286 8 18.286 18.286 18.286h182.857c10.286 0 18.286-8 18.286-18.286zM512 640v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM512 493.714v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM512 347.429v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM512 201.143v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM658.286 786.286v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM658.286 640v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM658.286 493.714v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM658.286 347.429v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM658.286 201.143v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "building"
+ ],
+ "defaultCode": 61869,
+ "grid": 14
+ },
+ {
+ "id": 390,
+ "paths": [
+ "M678.857 313.143l-166.857 166.857v470.857c0 35.429-28.571 64-64 64s-64-28.571-64-64v-219.429h-36.571v219.429c0 35.429-28.571 64-64 64s-64-28.571-64-64v-470.857l-166.857-166.857c-21.143-21.714-21.143-56 0-77.714 21.714-21.143 56-21.143 77.714 0l130.286 130.286h210.286l130.286-130.286c21.714-21.143 56-21.143 77.714 0 21.143 21.714 21.143 56 0 77.714zM493.714 219.429c0 70.857-57.143 128-128 128s-128-57.143-128-128 57.143-128 128-128 128 57.143 128 128z"
+ ],
+ "width": 731.4285714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "child"
+ ],
+ "defaultCode": 61870,
+ "grid": 14
+ },
+ {
+ "id": 391,
+ "paths": [
+ "M445.714 269.714c0 64-33.143 140-106.857 140-92.571 0-148.571-116.571-148.571-196.571 0-64 33.143-140 106.857-140 93.143 0 148.571 116.571 148.571 196.571zM250.286 545.714c0 55.429-29.143 113.143-92 113.143-91.429 0-158.286-112-158.286-194.857 0-55.429 29.714-113.714 92-113.714 91.429 0 158.286 112.571 158.286 195.429zM475.429 530.286c140 0 329.143 201.714 329.143 336.571 0 72.571-59.429 84-117.714 84-76.571 0-138.286-51.429-211.429-51.429-76.571 0-141.714 50.857-224.571 50.857-55.429 0-104.571-18.857-104.571-83.429 0-135.429 189.143-336.571 329.143-336.571zM612 409.714c-73.714 0-106.857-76-106.857-140 0-80 55.429-196.571 148.571-196.571 73.714 0 106.857 76 106.857 140 0 80-56 196.571-148.571 196.571zM858.857 350.286c62.286 0 92 58.286 92 113.714 0 82.857-66.857 194.857-158.286 194.857-62.857 0-92-57.714-92-113.143 0-82.857 66.857-195.429 158.286-195.429z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "paw"
+ ],
+ "defaultCode": 61872,
+ "grid": 14
+ },
+ {
+ "id": 392,
+ "paths": [
+ "M402.286 301.714c0 114.286-49.714 189.143-119.429 216.571l25.714 469.143c1.143 20-14.286 36.571-34.286 36.571h-109.714c-20 0-35.429-16.571-34.286-36.571l25.714-469.143c-69.714-27.429-119.429-102.286-119.429-216.571 0-146.286 81.714-301.714 182.857-301.714s182.857 155.429 182.857 301.714z"
+ ],
+ "width": 438.85714285714283,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "spoon"
+ ],
+ "defaultCode": 61873,
+ "grid": 14
+ },
+ {
+ "id": 393,
+ "paths": [
+ "M512 930.857l365.714-199.429v-363.429l-365.714 133.143v429.714zM475.429 436.571l398.857-145.143-398.857-145.143-398.857 145.143zM950.857 292.571v438.857c0 26.857-14.857 51.429-38.286 64l-402.286 219.429c-10.857 6.286-22.857 9.143-34.857 9.143s-24-2.857-34.857-9.143l-402.286-219.429c-23.429-12.571-38.286-37.143-38.286-64v-438.857c0-30.857 19.429-58.286 48-68.571l402.286-146.286c8-2.857 16.571-4.571 25.143-4.571s17.143 1.714 25.143 4.571l402.286 146.286c28.571 10.286 48 37.714 48 68.571z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cube"
+ ],
+ "defaultCode": 61874,
+ "grid": 14
+ },
+ {
+ "id": 394,
+ "paths": [
+ "M365.714 932.571l219.429-109.714v-179.429l-219.429 93.714v195.429zM329.143 673.143l230.857-98.857-230.857-98.857-230.857 98.857zM950.857 932.571l219.429-109.714v-179.429l-219.429 93.714v195.429zM914.286 673.143l230.857-98.857-230.857-98.857-230.857 98.857zM658.286 505.714l219.429-94.286v-152l-219.429 93.714v152.571zM621.714 289.143l252-108-252-108-252 108zM1243.429 585.143v237.714c0 27.429-15.429 53.143-40.571 65.143l-256 128c-10.286 5.714-21.143 8-32.571 8s-22.286-2.286-32.571-8l-256-128c-1.714-0.571-2.857-1.143-4-2.286-1.143 1.143-2.286 1.714-4 2.286l-256 128c-10.286 5.714-21.143 8-32.571 8s-22.286-2.286-32.571-8l-256-128c-25.143-12-40.571-37.714-40.571-65.143v-237.714c0-29.143 17.714-55.429 44.571-67.429l248-106.286v-228.571c0-29.143 17.714-55.429 44.571-67.429l256-109.714c9.143-4 18.857-5.714 28.571-5.714s19.429 1.714 28.571 5.714l256 109.714c26.857 12 44.571 38.286 44.571 67.429v228.571l248 106.286c27.429 12 44.571 38.286 44.571 67.429z"
+ ],
+ "width": 1243.4285714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cubes"
+ ],
+ "defaultCode": 61875,
+ "grid": 14
+ },
+ {
+ "id": 395,
+ "paths": [
+ "M1056 193.714h-292v70.857h292v-70.857zM912 437.143c-68.571 0-114.286 42.857-118.857 111.429h233.143c-6.286-69.143-42.286-111.429-114.286-111.429zM921.143 771.429c43.429 0 99.429-23.429 113.143-68h126.286c-38.857 119.429-119.429 175.429-244 175.429-164.571 0-266.857-111.429-266.857-273.714 0-156.571 108-276 266.857-276 163.429 0 253.714 128.571 253.714 282.857 0 9.143-0.571 18.286-1.143 26.857h-376c0 83.429 44 132.571 128 132.571zM158.286 742.857h169.143c64.571 0 117.143-22.857 117.143-95.429 0-73.714-44-102.857-113.714-102.857h-172.571v198.286zM158.286 436h160.571c56.571 0 96.571-24.571 96.571-85.714 0-66.286-51.429-82.286-108.571-82.286h-148.571v168zM0 145.143h339.429c123.429 0 230.286 34.857 230.286 178.286 0 72.571-33.714 119.429-98.286 150.286 88.571 25.143 131.429 92 131.429 182.286 0 146.286-122.857 209.143-253.714 209.143h-349.143v-720z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "behance"
+ ],
+ "defaultCode": 61876,
+ "grid": 14
+ },
+ {
+ "id": 396,
+ "paths": [
+ "M713.143 73.143c90.857 0 164.571 73.714 164.571 164.571v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571zM285.143 282.857h-212v449.714h218.286c81.714 0 158.286-38.857 158.286-130.286 0-56.571-26.857-98.286-81.714-114.286 40-19.429 61.143-48.571 61.143-93.714 0-89.714-66.857-111.429-144-111.429zM272.571 464.571h-100.571v-105.143h93.143c35.429 0 68 9.714 68 51.429 0 38.286-25.143 53.714-60.571 53.714zM277.714 656h-105.714v-124h108c43.429 0 70.857 18.857 70.857 64.571s-32.571 59.429-73.143 59.429zM649.143 674.286c-52.571 0-80-30.857-80-82.857h234.857c0.571-5.714 0.571-11.429 0.571-17.143 0-96-56.571-176.571-158.857-176.571-98.857 0-166.857 74.857-166.857 172.571 0 101.714 64 170.857 166.857 170.857 78.286 0 128.571-34.857 152.571-109.143h-78.857c-8.571 27.429-43.429 42.286-70.286 42.286zM643.429 465.143c44.571 0 66.857 26.857 70.857 69.714h-145.143c2.857-42.857 31.429-69.714 74.286-69.714zM550.857 313.143h182.286v44h-182.286v-44z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "behance-square"
+ ],
+ "defaultCode": 61877,
+ "grid": 14
+ },
+ {
+ "id": 397,
+ "paths": [
+ "M904 332.571c0 77.143-62.857 139.429-139.429 139.429-77.143 0-139.429-62.286-139.429-139.429s62.286-139.429 139.429-139.429c76.571 0 139.429 62.286 139.429 139.429zM464 756.571c0-79.429-63.429-142.857-142.857-142.857-10.286 0-20.571 1.143-30.857 3.429l59.429 24c58.286 23.429 86.857 89.143 63.429 147.429s-89.714 86.857-148 62.857c-23.429-9.143-46.857-18.857-70.286-28 24 45.143 71.429 76 126.286 76 79.429 0 142.857-63.429 142.857-142.857zM938.286 333.143c0-96-78.286-174.286-174.286-174.286-96.571 0-174.857 78.286-174.857 174.286 0 96.571 78.286 174.286 174.857 174.286 96 0 174.286-77.714 174.286-174.286zM1024 333.143c0 144-116.571 260-260 260l-249.714 182.286c-9.143 98.286-92.571 175.429-193.143 175.429-92.571 0-170.857-65.714-189.714-153.143l-131.429-52.571v-245.143l222.286 89.714c29.143-17.714 62.857-27.429 98.857-27.429 6.857 0 13.714 0.571 20 1.143l162.286-232.571c1.143-142.286 117.714-257.714 260.571-257.714 143.429 0 260 116.571 260 260z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "steam"
+ ],
+ "defaultCode": 61878,
+ "grid": 14
+ },
+ {
+ "id": 398,
+ "paths": [
+ "M709.714 369.714c0-60.571-49.714-110.286-110.857-110.286-60.571 0-110.286 49.714-110.286 110.286 0 61.143 49.714 110.286 110.286 110.286 61.143 0 110.857-49.143 110.857-110.286zM361.143 705.714c0 62.857-50.286 113.143-113.143 113.143-43.429 0-81.143-24.571-100-60.571 18.857 7.429 37.143 14.857 56 22.857 45.714 18.286 98.286-4 117.143-50.286 18.286-45.714-4-98.286-50.286-116.571l-46.857-18.857c7.429-1.714 16-2.857 24-2.857 62.857 0 113.143 50.286 113.143 113.143zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-87.429l98.286 39.429c14.857 69.143 76.571 121.143 149.714 121.143 80 0 145.714-61.143 153.143-138.857l197.143-144c114.286 0 206.286-92.571 206.286-205.714 0-114.286-92-206.286-206.286-206.286-112.571 0-204.571 91.429-205.714 204l-128.571 184c-5.143-0.571-10.286-0.571-16-0.571-28.571 0-55.429 7.429-78.286 21.143l-169.714-68v-267.429c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571zM736.571 370.857c0 76-61.714 137.714-138.286 137.714-76 0-137.714-61.714-137.714-137.714 0-76.571 61.714-138.286 137.714-138.286 76.571 0 138.286 61.714 138.286 138.286z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "steam-square"
+ ],
+ "defaultCode": 61879,
+ "grid": 14
+ },
+ {
+ "id": 399,
+ "paths": [
+ "M477.714 668l-8.571 210.286-1.143 12.571-240-16.571c-29.714-2.286-54.286-30.286-65.143-55.429-22.857-53.143 6.857-116 24-166.857 0 0 44 6.857 290.857 16zM256.571 333.143l102.857 216.571-84-52.571c-128.571 146.857-140.571 256-140.571 256l-108.571-204c-22.286-33.143-2.286-69.143-2.286-69.143s20-36 65.143-107.429l-80-49.143zM960 628.571l-107.429 205.143c-14.857 37.143-56 40.571-56 40.571s-40.571 4-125.143 6.857l4.571 93.714-131.429-209.714 120.571-206.857 4 98.857c193.714 23.429 290.857-28.571 290.857-28.571zM511.429 100.571c0 0-26.857 35.429-151.429 248.571l-181.143-106.857-10.857-6.857 128.571-203.429c16-25.143 52-34.286 80-31.429 57.143 5.143 98.286 60.571 134.857 100zM885.714 276l121.143 207.429c15.429 25.714 6.286 61.714-8.571 85.714-30.857 48-99.429 59.429-150.857 73.714 0 0-19.429-40.571-151.429-249.143l178.857-111.429zM804 146.857l81.143-47.429-125.714 213.143-239.429-11.429 86.286-49.143c-68.571-182.286-159.429-245.143-159.429-245.143l231.429 0.571c40-3.429 61.714 30.857 61.714 30.857s22.286 34.857 64 108.571z"
+ ],
+ "width": 1026.2674285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "recycle"
+ ],
+ "defaultCode": 61880,
+ "grid": 14
+ },
+ {
+ "id": 400,
+ "paths": [
+ "M274.286 621.714c0-50.286-41.143-91.429-91.429-91.429s-91.429 41.143-91.429 91.429 41.143 91.429 91.429 91.429 91.429-41.143 91.429-91.429zM294.857 438.857h580.571l-50.857-204c-1.714-6.286-13.143-15.429-20-15.429h-438.857c-6.857 0-18.286 9.143-20 15.429zM1078.857 621.714c0-50.286-41.143-91.429-91.429-91.429s-91.429 41.143-91.429 91.429 41.143 91.429 91.429 91.429 91.429-41.143 91.429-91.429zM1170.286 566.857v219.429c0 10.286-8 18.286-18.286 18.286h-54.857v73.143c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714v-73.143h-585.143v73.143c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714v-73.143h-54.857c-10.286 0-18.286-8-18.286-18.286v-219.429c0-70.857 57.143-128 128-128h16l60-239.429c17.714-72 87.429-126.286 161.714-126.286h438.857c74.286 0 144 54.286 161.714 126.286l60 239.429h16c70.857 0 128 57.143 128 128z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "automobile",
+ "car"
+ ],
+ "defaultCode": 61881,
+ "grid": 14
+ },
+ {
+ "id": 401,
+ "paths": [
+ "M1042.286 512c70.857 0 128 57.143 128 128v219.429c0 10.286-8 18.286-18.286 18.286h-54.857v36.571c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714v-36.571h-585.143v36.571c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714v-36.571h-54.857c-10.286 0-18.286-8-18.286-18.286v-219.429c0-70.857 57.143-128 128-128h16l60-239.429c17.714-72 87.429-126.286 161.714-126.286h73.143v-128c0-10.286 8-18.286 18.286-18.286h256c10.286 0 18.286 8 18.286 18.286v128h73.143c74.286 0 144 54.286 161.714 126.286l60 239.429h16zM182.857 786.286c50.286 0 91.429-41.143 91.429-91.429s-41.143-91.429-91.429-91.429-91.429 41.143-91.429 91.429 41.143 91.429 91.429 91.429zM294.857 512h580.571l-50.857-204c-1.714-6.286-13.143-15.429-20-15.429h-438.857c-6.857 0-18.286 9.143-20 15.429zM987.429 786.286c50.286 0 91.429-41.143 91.429-91.429s-41.143-91.429-91.429-91.429-91.429 41.143-91.429 91.429 41.143 91.429 91.429 91.429z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cab",
+ "taxi"
+ ],
+ "defaultCode": 61882,
+ "grid": 14
+ },
+ {
+ "id": 402,
+ "paths": [
+ "M859.429 841.143c0 20-16.571 36.571-36.571 36.571h-264c1.714 36.571 6.286 74.857 6.286 112 0 18.857-15.429 34.286-34.857 34.286h-182.857c-19.429 0-34.857-15.429-34.857-34.286 0-37.143 4.571-75.429 6.286-112h-264c-20 0-36.571-16.571-36.571-36.571 0-9.714 4-18.857 10.857-25.714l229.714-230.286h-130.857c-20 0-36.571-16.571-36.571-36.571 0-9.714 4-18.857 10.857-25.714l229.714-230.286h-112.571c-20 0-36.571-16.571-36.571-36.571 0-9.714 4-18.857 10.857-25.714l219.429-219.429c6.857-6.857 16-10.857 25.714-10.857s18.857 4 25.714 10.857l219.429 219.429c6.857 6.857 10.857 16 10.857 25.714 0 20-16.571 36.571-36.571 36.571h-112.571l229.714 230.286c6.857 6.857 10.857 16 10.857 25.714 0 20-16.571 36.571-36.571 36.571h-130.857l229.714 230.286c6.857 6.857 10.857 16 10.857 25.714z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tree"
+ ],
+ "defaultCode": 61883,
+ "grid": 14
+ },
+ {
+ "id": 403,
+ "paths": [
+ "M644 691.429c0-16-6.286-22.286-17.143-29.143-73.714-44-159.429-65.714-255.429-65.714-56 0-109.714 7.429-164 19.429-13.143 2.857-24 11.429-24 29.714 0 14.286 10.857 28 28 28 5.143 0 14.286-2.857 21.143-4.571 44.571-9.143 91.429-15.429 138.857-15.429 84 0 163.429 20.571 226.857 58.857 6.857 4 11.429 6.286 18.857 6.286 14.286 0 26.857-11.429 26.857-27.429zM698.857 568.571c0-15.429-5.714-26.286-20-34.857-87.429-52-198.286-80.571-313.143-80.571-73.714 0-124 10.286-173.143 24-18.286 5.143-27.429 17.714-27.429 36.571s15.429 34.286 34.286 34.286c8 0 12.571-2.286 21.143-4.571 40-10.857 88-18.857 143.429-18.857 108.571 0 207.429 28.571 278.857 70.857 6.286 3.429 12.571 7.429 21.714 7.429 19.429 0 34.286-15.429 34.286-34.286zM760.571 426.857c0-21.143-9.143-32-22.857-40-98.857-57.714-234.286-84.571-363.429-84.571-76 0-145.714 8.571-208 26.857-16 4.571-30.857 18.286-30.857 42.286 0 23.429 17.714 41.714 41.143 41.714 8.571 0 16.571-2.857 22.857-4.571 55.429-15.429 115.429-21.143 175.429-21.143 118.857 0 242.286 26.286 321.714 73.714 8 4.571 13.714 6.857 22.857 6.857 21.714 0 41.143-17.143 41.143-41.143zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "spotify"
+ ],
+ "defaultCode": 61884,
+ "grid": 14
+ },
+ {
+ "id": 404,
+ "paths": [
+ "M585.143 173.143l-173.143 332.571 13.714 17.714h159.429v237.143h-289.714l-25.143 17.143-81.143 156c-0.571 0-16 16-17.143 17.143h-172v-173.143l173.143-333.143-13.714-17.143h-159.429v-237.143h289.714l25.143-17.143 81.143-156c0.571 0 16-16 17.143-17.143h172v173.143z"
+ ],
+ "width": 585.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "deviantart"
+ ],
+ "defaultCode": 61885,
+ "grid": 14
+ },
+ {
+ "id": 405,
+ "paths": [
+ "M448 784l9.143-137.714-9.143-298.857c-0.571-7.429-6.286-13.714-13.714-13.714-6.857 0-13.143 6.286-13.143 13.714l-8 298.857 8 137.714c0.571 7.429 6.286 13.143 13.143 13.143 7.429 0 13.143-5.714 13.714-13.143zM617.143 767.429l6.286-120.571-6.857-334.857c0-5.714-2.857-10.857-7.429-13.714-2.857-1.714-5.714-2.857-9.143-2.857s-6.286 1.143-9.143 2.857c-4.571 2.857-7.429 8-7.429 13.714l-0.571 3.429-5.714 330.857s0 0.571 6.286 134.857v0.571c0 3.429 1.143 6.857 3.429 9.714 3.429 4 8 6.286 13.143 6.286 4.571 0 8.571-2.286 11.429-5.143 3.429-2.857 5.143-6.857 5.143-11.429zM20 573.143l11.429 73.143-11.429 72c-0.571 2.857-2.286 5.143-5.143 5.143s-4.571-2.286-5.143-5.143l-9.714-72 9.714-73.143c0.571-2.857 2.286-5.143 5.143-5.143s4.571 2.286 5.143 5.143zM69.143 528l14.857 118.286-14.857 116c-0.571 2.857-2.857 5.143-5.714 5.143s-5.143-2.286-5.143-5.714l-13.143-115.429 13.143-118.286c0-2.857 2.286-5.143 5.143-5.143s5.143 2.286 5.714 5.143zM229.143 786.857v0 0zM121.714 506.286l14.286 140-14.286 135.429c0 3.429-2.857 6.286-6.286 6.286s-6.286-2.857-6.857-6.286l-12-135.429 12-140c0.571-4 3.429-6.857 6.857-6.857s6.286 2.857 6.286 6.857zM175.429 502.286l13.143 144-13.143 139.429c-0.571 4.571-4 7.429-8 7.429s-7.429-2.857-7.429-7.429l-12-139.429 12-144c0-4.571 3.429-7.429 7.429-7.429s7.429 2.857 8 7.429zM229.143 512.571l12 133.714-12 140.571c-0.571 5.143-4.571 9.143-9.143 9.143s-8.571-4-8.571-9.143l-11.429-140.571 11.429-133.714c0-4.571 4-8.571 8.571-8.571s8.571 4 9.143 8.571zM448 784v0 0zM282.857 429.143l12 217.143-12 140.571c0 5.714-4.571 10.286-9.714 10.286-5.714 0-9.714-4.571-10.286-10.286l-10.286-140.571 10.286-217.143c0.571-5.714 4.571-10.286 10.286-10.286 5.143 0 9.714 4.571 9.714 10.286zM336.571 380l10.857 267.429-10.857 139.429c0 6.286-5.143 10.857-10.857 10.857-6.286 0-10.857-4.571-11.429-10.857l-9.143-139.429 9.143-267.429c0.571-6.286 5.143-10.857 11.429-10.857 5.714 0 10.857 4.571 10.857 10.857zM392.571 357.143l10.286 289.143-10.286 138.286c-0.571 6.857-5.714 12-12.571 12-6.286 0-11.429-5.143-12-12l-9.143-138.286 9.143-289.143c0-6.857 5.714-12.571 12-12.571 6.857 0 12 5.714 12.571 12.571zM616.571 781.143v0 0 0 0 0 0zM503.429 354.857l8.571 291.429-8.571 136.571c0 8-6.286 14.286-14.286 14.286s-13.714-6.286-14.286-14.286l-8-136.571 8-291.429c0-8 6.286-14.286 14.286-14.286s14.286 6.286 14.286 14.286zM560 365.714l8 281.143-8 134.857c0 8.571-6.857 15.429-15.429 15.429s-15.429-6.857-16-15.429l-6.857-134.857 6.857-281.143c0.571-9.143 7.429-16 16-16s14.857 6.857 15.429 16zM681.143 646.857l-8 132c0 9.714-8 17.714-17.714 17.714s-17.714-8-18.286-17.714l-3.429-65.143-3.429-66.857 6.857-363.429v-1.714c0.571-5.143 2.857-10.286 6.857-13.714 2.857-2.286 6.857-4 11.429-4 2.857 0 6.286 1.143 8.571 2.857 5.143 2.857 8.571 8.571 9.143 14.857zM1316.571 636c0 89.143-72.571 161.143-161.714 161.143h-449.143c-9.714-1.143-17.714-8.571-17.714-18.857v-513.714c0-9.714 3.429-14.286 16-18.857 31.429-12.571 66.857-19.429 103.429-19.429 149.143 0 271.429 114.286 284.571 260 19.429-8 40.571-12.571 62.857-12.571 89.143 0 161.714 72.571 161.714 162.286z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "soundcloud"
+ ],
+ "defaultCode": 61886,
+ "grid": 14
+ },
+ {
+ "id": 406,
+ "paths": [
+ "M438.857 438.857c172 0 344.571-30.857 438.857-97.143v97.143c0 80.571-196.571 146.286-438.857 146.286s-438.857-65.714-438.857-146.286v-97.143c94.286 66.286 266.857 97.143 438.857 97.143zM438.857 877.714c172 0 344.571-30.857 438.857-97.143v97.143c0 80.571-196.571 146.286-438.857 146.286s-438.857-65.714-438.857-146.286v-97.143c94.286 66.286 266.857 97.143 438.857 97.143zM438.857 658.286c172 0 344.571-30.857 438.857-97.143v97.143c0 80.571-196.571 146.286-438.857 146.286s-438.857-65.714-438.857-146.286v-97.143c94.286 66.286 266.857 97.143 438.857 97.143zM438.857 0c242.286 0 438.857 65.714 438.857 146.286v73.143c0 80.571-196.571 146.286-438.857 146.286s-438.857-65.714-438.857-146.286v-73.143c0-80.571 196.571-146.286 438.857-146.286z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "database"
+ ],
+ "defaultCode": 61888,
+ "grid": 14
+ },
+ {
+ "id": 407,
+ "paths": [
+ "M838.857 217.143c21.143 21.143 38.857 63.429 38.857 93.714v658.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h512c30.286 0 72.571 17.714 93.714 38.857zM585.143 77.714v214.857h214.857c-3.429-9.714-8.571-19.429-12.571-23.429l-178.857-178.857c-4-4-13.714-9.143-23.429-12.571zM804.571 950.857v-585.143h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-438.857v877.714h731.429zM510.857 612c14.286 11.429 30.286 21.714 48 32 24-2.857 46.286-4 66.857-4 38.286 0 86.857 4.571 101.143 28 4 5.714 7.429 16 1.143 29.714-0.571 0.571-1.143 1.714-1.714 2.286v0.571c-1.714 10.286-10.286 21.714-40.571 21.714-36.571 0-92-16.571-140-41.714-79.429 8.571-162.857 26.286-224 47.429-58.857 100.571-104 149.714-138.286 149.714-5.714 0-10.857-1.143-16-4l-13.714-6.857c-1.714-0.571-2.286-1.714-3.429-2.857-2.857-2.857-5.143-9.143-3.429-20.571 5.714-26.286 36.571-70.286 107.429-107.429 4.571-2.857 10.286-1.143 13.143 3.429 0.571 0.571 1.143 1.714 1.143 2.286 17.714-29.143 38.286-66.286 61.143-112.571 25.714-51.429 45.714-101.714 59.429-149.714-18.286-62.286-24-126.286-13.714-164 4-14.286 12.571-22.857 24-22.857h12.571c8.571 0 15.429 2.857 20 8.571 6.857 8 8.571 20.571 5.143 38.857-0.571 1.714-1.143 3.429-2.286 4.571 0.571 1.714 0.571 2.857 0.571 4.571v17.143c-0.571 36-1.143 70.286-8 109.714 20 60 49.714 108.571 83.429 136zM181.714 846.857c17.143-8 41.714-32.571 78.286-90.286-42.857 33.143-69.714 70.857-78.286 90.286zM409.143 321.143c-5.714 16-5.714 43.429-1.143 75.429 1.714-9.143 2.857-17.714 4-25.143 1.143-9.714 2.857-17.714 4-24.571 0.571-1.714 1.143-2.857 2.286-4.571-0.571-0.571-0.571-1.714-1.143-2.857-0.571-10.286-4-16.571-7.429-20.571 0 1.143-0.571 1.714-0.571 2.286zM338.286 698.857c50.286-20 106.286-36 162.286-46.286-5.714-4.571-11.429-8.571-16.571-13.143-28-24.571-53.143-58.857-72.571-100.571-10.857 34.857-26.857 72-47.429 112.571-8.571 16-17.143 32-25.714 47.429zM707.429 689.714c-2.857-2.857-17.714-13.714-80-13.714 28 10.286 53.714 16 70.857 16 5.143 0 8 0 10.286-0.571 0-0.571-0.571-1.143-1.143-1.714z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file-pdf-o"
+ ],
+ "defaultCode": 61889,
+ "grid": 14
+ },
+ {
+ "id": 408,
+ "paths": [
+ "M838.857 217.143c21.143 21.143 38.857 63.429 38.857 93.714v658.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h512c30.286 0 72.571 17.714 93.714 38.857zM585.143 77.714v214.857h214.857c-3.429-9.714-8.571-19.429-12.571-23.429l-178.857-178.857c-4-4-13.714-9.143-23.429-12.571zM804.571 950.857v-585.143h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-438.857v877.714h731.429zM133.143 438.857v61.143h40l93.714 377.714h90.857l73.143-277.143c2.857-8.571 4.571-17.143 5.714-26.286 0.571-4.571 1.143-9.143 1.143-13.714h2.286l1.714 13.714c1.714 8 2.286 17.143 5.143 26.286l73.143 277.143h90.857l93.714-377.714h40v-61.143h-171.429v61.143h51.429l-56.571 250.286c-2.286 9.143-3.429 18.857-4 26.286l-1.143 12h-2.286c0-3.429-1.143-8-1.714-12-1.714-7.429-2.857-17.143-5.143-26.286l-82.286-311.429h-65.143l-82.286 311.429c-2.286 9.143-2.857 18.857-4.571 26.286l-2.286 12h-2.286l-1.143-12c-0.571-7.429-1.714-17.143-4-26.286l-56.571-250.286h51.429v-61.143h-171.429z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file-word-o"
+ ],
+ "defaultCode": 61890,
+ "grid": 14
+ },
+ {
+ "id": 409,
+ "paths": [
+ "M838.857 217.143c21.143 21.143 38.857 63.429 38.857 93.714v658.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h512c30.286 0 72.571 17.714 93.714 38.857zM585.143 77.714v214.857h214.857c-3.429-9.714-8.571-19.429-12.571-23.429l-178.857-178.857c-4-4-13.714-9.143-23.429-12.571zM804.571 950.857v-585.143h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-438.857v877.714h731.429zM245.143 817.143v60.571h160.571v-60.571h-42.857l58.857-92c6.857-10.857 10.286-19.429 12-19.429h1.143c0.571 2.286 1.714 4 2.857 5.714 2.286 4.571 5.714 8 9.714 13.714l61.143 92h-43.429v60.571h166.286v-60.571h-38.857l-109.714-156 111.429-161.143h38.286v-61.143h-159.429v61.143h42.286l-58.857 90.857c-6.857 10.857-12 19.429-12 18.857h-1.143c-0.571-2.286-1.714-4-2.857-5.714-2.286-4-5.143-8-9.714-13.143l-60.571-90.857h43.429v-61.143h-165.714v61.143h38.857l108 155.429-110.857 161.714h-38.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file-excel-o"
+ ],
+ "defaultCode": 61891,
+ "grid": 14
+ },
+ {
+ "id": 410,
+ "paths": [
+ "M838.857 217.143c21.143 21.143 38.857 63.429 38.857 93.714v658.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h512c30.286 0 72.571 17.714 93.714 38.857zM585.143 77.714v214.857h214.857c-3.429-9.714-8.571-19.429-12.571-23.429l-178.857-178.857c-4-4-13.714-9.143-23.429-12.571zM804.571 950.857v-585.143h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-438.857v877.714h731.429zM237.714 817.143v60.571h186.857v-60.571h-53.143v-95.429h78.286c24.571 0 46.857-1.143 67.429-8.571 51.429-17.714 83.429-70.857 83.429-133.143s-30.857-110.286-78.286-130.286c-21.714-8.571-48-10.857-74.286-10.857h-210.286v61.143h52.571v317.143h-52.571zM439.429 657.143h-68v-153.143h68.571c20 0 35.429 3.429 47.429 10.286 20.571 12 32 35.429 32 65.714 0 32-11.429 56.571-35.429 68.571-12 5.714-26.857 8.571-44.571 8.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file-powerpoint-o"
+ ],
+ "defaultCode": 61892,
+ "grid": 14
+ },
+ {
+ "id": 411,
+ "paths": [
+ "M838.857 217.143c21.143 21.143 38.857 63.429 38.857 93.714v658.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h512c30.286 0 72.571 17.714 93.714 38.857zM585.143 77.714v214.857h214.857c-3.429-9.714-8.571-19.429-12.571-23.429l-178.857-178.857c-4-4-13.714-9.143-23.429-12.571zM804.571 950.857v-585.143h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-438.857v877.714h731.429zM731.429 694.857v182.857h-585.143v-109.714l109.714-109.714 73.143 73.143 219.429-219.429zM256 585.143c-60.571 0-109.714-49.143-109.714-109.714s49.143-109.714 109.714-109.714 109.714 49.143 109.714 109.714-49.143 109.714-109.714 109.714z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file-image-o",
+ "file-photo-o",
+ "file-picture-o"
+ ],
+ "defaultCode": 61893,
+ "grid": 14
+ },
+ {
+ "id": 412,
+ "paths": [
+ "M365.714 219.429v-73.143h-73.143v73.143h73.143zM438.857 292.571v-73.143h-73.143v73.143h73.143zM365.714 365.714v-73.143h-73.143v73.143h73.143zM438.857 438.857v-73.143h-73.143v73.143h73.143zM838.857 217.143c21.143 21.143 38.857 63.429 38.857 93.714v658.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h512c30.286 0 72.571 17.714 93.714 38.857zM585.143 77.714v214.857h214.857c-3.429-9.714-8.571-19.429-12.571-23.429l-178.857-178.857c-4-4-13.714-9.143-23.429-12.571zM804.571 950.857v-585.143h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-73.143v73.143h-73.143v-73.143h-292.571v877.714h731.429zM446.286 538.857c48.571 164 61.143 199.429 61.143 199.429 2.857 9.714 4.571 19.429 4.571 29.714 0 63.429-61.714 109.714-146.286 109.714s-146.286-46.286-146.286-109.714c0-10.286 1.714-20 4.571-29.714 0 0 12-35.429 68.571-226.286v-73.143h73.143v73.143h45.143c16.571 0 30.857 10.857 35.429 26.857zM365.714 804.571c40.571 0 73.143-16.571 73.143-36.571s-32.571-36.571-73.143-36.571-73.143 16.571-73.143 36.571 32.571 36.571 73.143 36.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file-archive-o",
+ "file-zip-o"
+ ],
+ "defaultCode": 61894,
+ "grid": 14
+ },
+ {
+ "id": 413,
+ "paths": [
+ "M838.857 217.143c21.143 21.143 38.857 63.429 38.857 93.714v658.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h512c30.286 0 72.571 17.714 93.714 38.857zM585.143 77.714v214.857h214.857c-3.429-9.714-8.571-19.429-12.571-23.429l-178.857-178.857c-4-4-13.714-9.143-23.429-12.571zM804.571 950.857v-585.143h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-438.857v877.714h731.429zM354.286 485.714c6.857 2.857 11.429 9.714 11.429 17.143v310.857c0 7.429-4.571 14.286-11.429 17.143-2.286 0.571-4.571 1.143-6.857 1.143-4.571 0-9.143-1.714-13.143-5.143l-94.857-95.429h-74.857c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h74.857l94.857-95.429c5.714-5.143 13.143-6.857 20-4zM592.571 879.429c10.857 0 21.143-4.571 28.571-13.714 47.429-58.286 73.714-132 73.714-207.429s-26.286-149.143-73.714-207.429c-12.571-16-36-18.286-51.429-5.714-16 13.143-18.286 36-5.143 52 37.143 45.714 57.143 101.714 57.143 161.143s-20 115.429-57.143 161.143c-13.143 16-10.857 38.857 5.143 51.429 6.857 5.714 14.857 8.571 22.857 8.571zM472 794.857c9.714 0 19.429-4 26.857-11.429 32-34.286 49.714-78.286 49.714-125.143s-17.714-90.857-49.714-125.143c-13.714-14.857-37.143-15.429-52-1.714-14.286 13.714-15.429 37.143-1.143 52 18.857 20.571 29.714 46.857 29.714 74.857s-10.857 54.286-29.714 74.857c-14.286 14.857-13.143 38.286 1.143 52 7.429 6.286 16.571 9.714 25.143 9.714z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file-audio-o",
+ "file-sound-o"
+ ],
+ "defaultCode": 61895,
+ "grid": 14
+ },
+ {
+ "id": 414,
+ "paths": [
+ "M838.857 217.143c21.143 21.143 38.857 63.429 38.857 93.714v658.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h512c30.286 0 72.571 17.714 93.714 38.857zM585.143 77.714v214.857h214.857c-3.429-9.714-8.571-19.429-12.571-23.429l-178.857-178.857c-4-4-13.714-9.143-23.429-12.571zM804.571 950.857v-585.143h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-438.857v877.714h731.429zM438.857 438.857c40 0 73.143 33.143 73.143 73.143v219.429c0 40-33.143 73.143-73.143 73.143h-219.429c-40 0-73.143-33.143-73.143-73.143v-219.429c0-40 33.143-73.143 73.143-73.143h219.429zM720 440c6.857 2.857 11.429 9.714 11.429 17.143v329.143c0 7.429-4.571 14.286-11.429 17.143-2.286 0.571-4.571 1.143-6.857 1.143-4.571 0-9.714-1.714-13.143-5.143l-151.429-152v-51.429l151.429-152c3.429-3.429 8.571-5.143 13.143-5.143 2.286 0 4.571 0.571 6.857 1.143z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file-movie-o",
+ "file-video-o"
+ ],
+ "defaultCode": 61896,
+ "grid": 14
+ },
+ {
+ "id": 415,
+ "paths": [
+ "M838.857 217.143c21.143 21.143 38.857 63.429 38.857 93.714v658.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h512c30.286 0 72.571 17.714 93.714 38.857zM585.143 77.714v214.857h214.857c-3.429-9.714-8.571-19.429-12.571-23.429l-178.857-178.857c-4-4-13.714-9.143-23.429-12.571zM804.571 950.857v-585.143h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-438.857v877.714h731.429zM274.286 438.857c6.286-8 17.714-9.714 25.714-3.429l29.143 21.714c8 6.286 9.714 17.714 3.429 25.714l-104 138.857 104 138.857c6.286 8 4.571 19.429-3.429 25.714l-29.143 21.714c-8 6.286-19.429 4.571-25.714-3.429l-129.143-172c-4.571-6.286-4.571-15.429 0-21.714zM732.571 610.857c4.571 6.286 4.571 15.429 0 21.714l-129.143 172c-6.286 8-17.714 9.714-25.714 3.429l-29.143-21.714c-8-6.286-9.714-17.714-3.429-25.714l104-138.857-104-138.857c-6.286-8-4.571-19.429 3.429-25.714l29.143-21.714c8-6.286 19.429-4.571 25.714 3.429zM378.286 874.286c-10.286-1.714-16.571-11.429-14.857-21.143l78.857-474.857c1.714-10.286 11.429-16.571 21.143-14.857l36 5.714c10.286 1.714 16.571 11.429 14.857 21.143l-78.857 474.857c-1.714 10.286-11.429 16.571-21.143 14.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file-code-o"
+ ],
+ "defaultCode": 61897,
+ "grid": 14
+ },
+ {
+ "id": 416,
+ "paths": [
+ "M855.429 472.571v113.143c-40 9.143-80 13.143-113.143 13.143-80 168-223.429 312-271.429 338.857-30.286 17.143-58.857 18.286-92.571-1.714-58.857-35.429-281.714-218.286-356-793.143h161.714c40.571 345.143 140 522.286 249.143 654.857 60.571-60.571 118.857-141.143 164-232-108-54.857-173.714-175.429-173.714-316 0-142.286 81.714-249.714 221.714-249.714 136 0 210.286 84.571 210.286 230.286 0 54.286-11.429 116-33.143 163.429 0 0-100.571 20-137.714-44.571 7.429-24.571 17.714-66.857 17.714-105.143 0-68-24.571-101.143-61.714-101.143-39.429 0-66.857 37.143-66.857 108.571 0 145.714 92.571 229.143 212.571 229.143 21.143 0 45.143-2.286 69.143-8z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "vine"
+ ],
+ "defaultCode": 61898,
+ "grid": 14
+ },
+ {
+ "id": 417,
+ "paths": [
+ "M123.429 668l344.571 229.714v-205.143l-190.857-127.429zM88 585.714l110.286-73.714-110.286-73.714v147.429zM556 897.714l344.571-229.714-153.714-102.857-190.857 127.429v205.143zM512 616l155.429-104-155.429-104-155.429 104zM277.143 458.857l190.857-127.429v-205.143l-344.571 229.714zM825.714 512l110.286 73.714v-147.429zM746.857 458.857l153.714-102.857-344.571-229.714v205.143zM1024 356v312c0 14.286-7.429 28.571-19.429 36.571l-468 312c-7.429 4.571-16 7.429-24.571 7.429s-17.143-2.857-24.571-7.429l-468-312c-12-8-19.429-22.286-19.429-36.571v-312c0-14.286 7.429-28.571 19.429-36.571l468-312c7.429-4.571 16-7.429 24.571-7.429s17.143 2.857 24.571 7.429l468 312c12 8 19.429 22.286 19.429 36.571z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "codepen"
+ ],
+ "defaultCode": 61899,
+ "grid": 14
+ },
+ {
+ "id": 418,
+ "paths": [
+ "M1028.571 441.143c82.857 34.286 141.714 115.429 141.714 209.714 0 125.143-103.429 226.857-230.286 226.857-4.571 0-8.571-0.571-12.571-0.571h-695.429c-128-7.429-232-105.143-232-232 0-85.143 46.286-159.429 115.429-200-4.571-14.857-6.857-30.286-6.857-46.857 0-87.429 71.429-158.286 160.571-158.286 36.571 0 70.857 12.571 98.286 33.143 56-115.429 174.857-195.429 313.714-195.429 192.571 0 348 153.714 348 342.857 0 6.857-0.571 13.714-0.571 20.571zM267.429 593.143c0 96.571 76 150.857 166.857 150.857 56 0 96.571-17.714 137.143-56.571-16.571-20.571-34.857-40.571-52-61.143-23.429 22.857-49.143 37.143-82.286 37.143-40.571 0-75.429-26.857-75.429-69.143 0-41.714 34.857-69.143 74.286-69.143 125.714 0 152.571 219.429 335.429 219.429 89.143 0 164.571-56 164.571-149.714 0-94.857-76-150.286-166.286-150.286-56 0-97.714 16-137.714 55.429 18.286 20 35.429 41.143 53.143 61.714 22.857-22.286 48.571-36.571 81.143-36.571 37.714 0 75.429 26.857 75.429 66.857 0 44-32 72-74.857 72-121.714 0-154.286-219.429-332.571-219.429-88.571 0-166.857 54.286-166.857 148.571z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "jsfiddle"
+ ],
+ "defaultCode": 61900,
+ "grid": 14
+ },
+ {
+ "id": 419,
+ "paths": [
+ "M512 0c282.857 0 512 229.143 512 512s-229.143 512-512 512-512-229.143-512-512 229.143-512 512-512zM512 73.143c-74.286 0-144.571 18.857-206.286 51.429l110.857 110.857c30.286-10.286 62.286-16 95.429-16 33.714 0 65.143 5.714 95.429 16l110.857-110.857c-61.714-32.571-132-51.429-206.286-51.429zM124.571 718.286l110.857-110.857c-10.286-30.286-16-62.286-16-95.429 0-33.714 5.714-65.143 16-95.429l-110.857-110.857c-32.571 61.714-51.429 132-51.429 206.286s18.857 144.571 51.429 206.286zM512 950.857c74.286 0 144.571-18.857 206.286-51.429l-110.857-110.857c-30.286 10.286-61.714 16-95.429 16-33.143 0-65.143-5.714-95.429-16l-110.857 110.857c61.714 32.571 132 51.429 206.286 51.429zM512 731.429c121.143 0 219.429-98.286 219.429-219.429s-98.286-219.429-219.429-219.429-219.429 98.286-219.429 219.429 98.286 219.429 219.429 219.429zM788.571 607.429l110.857 110.857c32.571-61.714 51.429-132 51.429-206.286s-18.857-144.571-51.429-206.286l-110.857 110.857c10.286 30.286 16 62.286 16 95.429s-5.714 65.143-16 95.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "life-bouy",
+ "life-buoy",
+ "life-ring",
+ "life-saver",
+ "support"
+ ],
+ "defaultCode": 61901,
+ "grid": 14
+ },
+ {
+ "id": 420,
+ "paths": [
+ "M1005.714 512c0 272.571-221.143 493.714-493.714 493.714s-493.714-221.143-493.714-493.714c0-248 182.857-453.143 420.571-488.571v130.286c-166.857 33.714-292.571 181.714-292.571 358.286 0 201.714 164 365.714 365.714 365.714s365.714-164 365.714-365.714c0-176.571-125.714-324.571-292.571-358.286v-130.286c237.714 35.429 420.571 240.571 420.571 488.571z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "circle-o-notch"
+ ],
+ "defaultCode": 61902,
+ "grid": 14
+ },
+ {
+ "id": 421,
+ "paths": [
+ "M10.857 499.429c5.714-163.429 89.143-314.286 240.571-413.714 0.571 0 4-1.143 2.286 1.714-12 11.429-229.714 268-29.143 467.429 102.857 102.286 185.714 5.143 185.714 5.143 79.429-103.429-1.143-260-1.143-260-20.571-51.429-94.286-82.857-94.286-82.857l59.429-65.714c50.286 21.714 89.143 80 89.143 80 1.714-61.143-45.143-126.857-45.143-126.857l92-104.571 91.429 103.429c-42.286 59.429-45.143 129.143-45.143 129.143 28.571-47.429 89.714-81.143 89.714-81.143l58.857 65.714c-56.571 18.286-93.714 82.286-93.714 82.286-32.571 58.857-56 184.571 1.143 262.857 66.857 92 181.143-5.714 181.143-5.714 212-189.714-21.714-464.571-21.714-464.571-12.571-11.429 1.714-5.714 1.714-5.714 103.429 75.429 236.571 174.286 240 422.857 4 300.571-206.286 514.857-500.571 514.857-287.429 0-510.857-240-502.286-524.571z"
+ ],
+ "width": 1019.9771428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "ra",
+ "rebel",
+ "resistance"
+ ],
+ "defaultCode": 61904,
+ "grid": 14
+ },
+ {
+ "id": 422,
+ "paths": [
+ "M499.429 936v37.714c-161.143-4.571-302.286-91.429-381.714-220l33.143-19.429c12 20 26.286 38.857 41.714 56.571l37.143-32.571c53.714 61.143 126.857 104.571 210.286 121.143l-9.714 49.143c22.286 4 45.714 6.857 69.143 7.429zM157.714 633.143l-47.429 16c8 22.286 17.143 43.429 28 64l-32.571 18.857c-35.429-65.143-56-140.571-56-220s20.571-154.857 56-220l32.571 18.857c-10.857 20-20.571 41.714-28 64l46.857 16c-13.143 37.714-20 78.857-20 121.143s7.429 83.429 20.571 121.143zM873.143 734.286l33.143 19.429c-79.429 128.571-220.571 215.429-381.714 220v-37.714c23.429-0.571 46.857-3.429 69.143-7.429l-9.714-49.143c83.429-16.571 156.571-60 210.286-121.143l37.143 32.571c15.429-17.714 29.714-36.571 41.714-56.571zM786.857 417.714l-133.143 45.714c5.143 15.429 8 31.429 8 48.571s-2.857 33.143-8 48.571l132.571 45.714c-12 36-31.429 68.571-56 96.571l-105.714-92.571c-21.143 24.571-50.286 41.714-84 48.571l27.429 137.714c-17.714 3.429-36.571 5.714-56 5.714s-38.286-2.286-56-5.714l27.429-137.714c-33.714-6.857-62.857-24-84-48.571l-105.714 92.571c-24.571-28-44-60.571-56-96.571l132.571-45.714c-5.143-15.429-8-31.429-8-48.571s2.857-33.143 8-48.571l-133.143-45.714c12.571-36 32-68.571 56.571-96.571l105.714 92.571c21.143-24.571 50.286-42.286 84-49.143l-27.429-137.143c17.714-4 36.571-5.714 56-5.714s38.286 1.714 56 5.714l-27.429 137.143c33.714 6.857 62.857 24.571 84 49.143l105.714-92.571c24.571 28 44 60.571 56.571 96.571zM499.429 50.286v37.714c-23.429 0.571-46.857 2.857-69.143 7.429l9.714 49.143c-83.429 16-156.571 59.429-210.286 120.571l-37.143-32c-15.429 17.143-29.143 36-41.714 56l-32.571-18.857c79.429-129.143 220-215.429 381.143-220v0zM974.286 512c0 79.429-20.571 154.857-56 220l-32.571-18.857c10.857-20.571 20-41.714 28-64l-47.429-16c13.143-37.714 20.571-78.857 20.571-121.143s-6.857-83.429-20-121.143l46.857-16c-7.429-22.286-17.143-44-28-64l32.571-18.857c35.429 65.143 56 140.571 56 220zM905.714 270.286l-32.571 18.857c-12.571-20-26.286-38.857-41.714-56l-37.143 32c-53.714-61.143-126.857-104.571-210.286-120.571l9.714-49.143c-22.286-4.571-45.714-6.857-69.143-7.429v-37.714c161.143 4.571 301.714 90.857 381.143 220zM998.857 512c0-268.571-218.286-486.857-486.857-486.857v0c-268.571 0-486.857 218.286-486.857 486.857s218.286 486.857 486.857 486.857 486.857-218.286 486.857-486.857zM1024 512c0 282.857-229.143 512-512 512s-512-229.143-512-512 229.143-512 512-512v0c282.857 0 512 229.143 512 512z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "empire",
+ "ge"
+ ],
+ "defaultCode": 61905,
+ "grid": 14
+ },
+ {
+ "id": 423,
+ "paths": [
+ "M332.571 747.429c0 30.857-28 37.714-53.143 37.714-24.571 0-61.143-4-61.143-36 0-31.429 30.857-36.571 56-36.571 24 0 58.286 4 58.286 34.857zM312 481.143c0 28.571-11.429 48.571-42.286 48.571-31.429 0-44-18.286-44-48s11.429-51.429 44-51.429c29.143 0 42.286 24 42.286 50.857zM406.857 438.286v-71.429c-24.571 9.143-50.857 16.571-77.143 16.571-18.857-10.857-40.571-16.571-62.857-16.571-65.143 0-116.571 48-116.571 114.286 0 35.429 23.429 84.571 58.857 96.571v1.714c-18.286 8-21.714 30.286-21.714 48.571 0 18.857 6.857 34.286 23.429 44v1.714c-38.857 12.571-64.571 37.143-64.571 79.429 0 72.571 69.143 93.143 129.714 93.143 73.143 0 128-26.857 128-107.429 0-57.143-52-74.286-99.429-82.857-16-2.857-43.429-14.286-43.429-34.286 0-18.857 10.286-26.857 28-29.714 58.286-11.429 95.429-56.571 95.429-116.571 0-10.286-2.286-20-5.714-29.714 9.143-2.286 18.857-4.571 28-7.429zM440.571 677.714h78.286c-1.143-15.429-1.143-31.429-1.143-46.857v-221.143c0-13.143 0-26.286 1.143-39.429h-78.286c1.714 13.143 1.714 27.429 1.714 40.571v224c0 14.286 0 28.571-1.714 42.857zM731.429 668.571v-69.143c-11.429 8-25.143 12-38.857 12-25.714 0-30.286-25.714-30.286-46.857v-128.571h29.714c10.286 0 20 1.143 30.286 1.143v-66.857h-60c0-19.429-1.143-38.857 1.714-58.286h-80c1.714 10.286 2.286 20.571 2.286 31.429v26.857h-34.286v66.857c6.857-0.571 13.714-1.714 21.143-1.714 4 0 8.571 0.571 13.143 0.571v1.143h-1.143v124c0 61.714 9.143 121.143 84.571 121.143 21.143 0 42.857-3.429 61.714-13.714zM528 265.143c0-26.857-20-52-48-52s-48.571 24.571-48.571 52c0 26.857 21.143 50.857 48.571 50.857s48-24.571 48-50.857zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "git-square"
+ ],
+ "defaultCode": 61906,
+ "grid": 14
+ },
+ {
+ "id": 424,
+ "paths": [
+ "M340 865.143c0-50.286-55.429-57.143-94.286-57.143-40.571 0-90.286 8.571-90.286 59.429 0 51.429 58.857 57.714 98.286 57.714 41.714 0 86.286-10.286 86.286-60zM306.286 433.714c0-42.857-20.571-81.714-68-81.714-52.571 0-70.857 34.857-70.857 82.857 0 47.429 20.571 77.143 70.857 77.143 49.714 0 68-32 68-78.286zM460 248.571v115.429c-14.857 5.143-29.714 9.143-45.143 12.571 5.714 15.429 9.143 31.429 9.143 48 0 96.571-59.429 170.286-154.286 188-28.571 5.714-45.143 17.714-45.143 48.571 0 87.429 230.857 28 230.857 189.143 0 130.857-88.571 173.714-207.429 173.714-97.714 0-209.143-32.571-209.143-150.286 0-68.571 41.714-108 104-128.571v-2.286c-26.286-16-38.286-41.143-38.286-72 0-29.143 6.286-65.143 36-78.286v-2.286c-57.714-19.429-95.429-98.857-95.429-156.571 0-106.857 82.857-185.143 188.571-185.143 35.429 0 70.857 9.143 101.714 26.857 42.857 0 85.143-11.429 124.571-26.857zM641.714 752h-126.857c2.286-25.714 2.286-50.857 2.286-76.571v-348c0-24.571 0.571-49.143-2.286-73.143h126.857c-2.857 23.429-2.286 47.429-2.286 70.857v350.286c0 25.714 0 50.857 2.286 76.571zM985.143 625.143v112c-30.286 16.571-65.143 22.286-99.429 22.286-122.286 0-136.571-96.571-136.571-196v-200.571h1.143v-2.286c-7.429 0-14.286-1.143-21.143-1.143-11.429 0-22.857 1.714-33.714 3.429v-108.571h54.857v-43.429c0-17.143-0.571-34.286-3.429-50.857h129.714c-4.571 31.429-3.429 62.857-3.429 94.286h97.714v108.571c-16.571 0-33.143-2.286-49.143-2.286h-48.571v208.571c0 33.714 7.429 74.857 49.714 74.857 22.286 0 44-6.286 62.286-18.857zM656 84c0 42.857-33.143 82.857-77.143 82.857-45.143 0-78.857-39.429-78.857-82.857 0-44 33.143-84 78.857-84 45.143 0 77.143 41.143 77.143 84z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "git"
+ ],
+ "defaultCode": 61907,
+ "grid": 14
+ },
+ {
+ "id": 425,
+ "paths": [
+ "M462.286 573.714l152-285.143h-64l-89.714 178.286s-13.714 27.429-25.143 52.571c-10.857-26.286-24-52.571-24-52.571l-88.571-178.286h-68.571l150.286 281.714v185.143h57.714v-181.714zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hacker-news",
+ "y-combinator-square",
+ "yc-square"
+ ],
+ "defaultCode": 61908,
+ "grid": 14
+ },
+ {
+ "id": 426,
+ "paths": [
+ "M481.143 326.857c0 60.571-49.714 110.286-110.286 110.286-23.429 0-45.143-7.429-63.429-20-20.571 22.286-43.429 50.286-65.714 83.429-93.143 140-132.571 305.143-115.429 490.857 1.143 16.571-10.857 30.857-26.857 32.571h-2.857c-14.857 0-28-11.429-29.714-26.857-22.286-250.286 57.143-427.429 127.429-532 25.714-38.286 51.429-69.143 75.429-94.286-6.286-13.714-9.143-28.571-9.143-44 0-61.143 49.143-110.286 110.286-110.286 60.571 0 110.286 49.143 110.286 110.286zM698.857 333.143c0 183.429-149.143 332.571-333.143 332.571-25.143 0-50.286-2.857-74.857-8-16-4-25.714-20-22.286-36 4-15.429 19.429-25.714 35.429-22.286 20 5.143 41.143 7.429 61.714 7.429 150.857 0 273.714-122.857 273.714-273.714s-122.857-273.714-273.714-273.714-273.714 122.857-273.714 273.714c0 44 10.286 85.714 29.714 124.571 7.429 14.857 1.714 32.571-12.571 40-14.857 7.429-32.571 1.714-40-13.143-24-46.286-36.571-98.857-36.571-151.429 0-184 149.714-333.143 333.143-333.143 184 0 333.143 149.143 333.143 333.143z"
+ ],
+ "width": 731.4285714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tencent-weibo"
+ ],
+ "defaultCode": 61909,
+ "grid": 14
+ },
+ {
+ "id": 427,
+ "paths": [
+ "M154.286 460.571c-4-9.714-4.571-19.429-4.571-29.714 0-16 10.286-41.714 20-53.714-0.571-14.857 5.714-45.143 17.143-54.857 0-105.714 81.714-238.857 177.143-284.571 58.857-28 120.571-37.714 185.143-37.714 50.286 0 105.143 12 152 31.429 134.286 56.571 164.571 161.714 193.143 296l0.571 2.857c16.571 25.143 31.429 54.857 31.429 85.714 0 15.429-10.286 30.857-10.286 44.571 0 1.143 3.429 5.714 4 6.857 49.143 72.571 93.714 151.429 93.714 241.714 0 20-10.857 89.714-42.857 89.714-22.286 0-46.857-54.286-54.857-69.143-0.571-0.571-1.143-0.571-1.714-0.571l-2.857 2.286c-18.286 47.429-38.286 92-75.429 127.429 32.571 31.429 85.143 28.571 94.857 82.857-2.857 6.286-1.714 13.143-6.286 19.429-32.571 49.143-120 55.429-172.571 55.429-69.714 0-126.286-18.286-192-37.714-13.714-4-34.286-1.714-49.143-3.429-34.857 38.286-120 48.571-169.143 48.571-43.429 0-211.429-2.857-211.429-77.143 0-32 6.857-41.143 29.143-61.714 17.714-3.429 30.857-13.143 51.429-14.286 2.857 0 5.143-0.571 8-1.143 0.571-0.571 1.143-0.571 1.143-2.286l-1.143-1.714c-39.429-9.143-94.857-108.571-103.429-149.714l-2.857-1.714c-4 0-5.714 8.571-6.857 11.429-12.571 29.143-42.286 60.571-75.429 64h-0.571c-4.571 0-2.857-4.571-6.286-5.714-8-18.857-13.143-36-13.143-57.143 0-114.286 54.857-198.857 144-266.286z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "qq"
+ ],
+ "defaultCode": 61910,
+ "grid": 14
+ },
+ {
+ "id": 428,
+ "paths": [
+ "M331.429 263.429c0-31.429-20.571-52-52-52-30.857 0-62.286 20.571-62.286 52 0 30.857 31.429 51.429 62.286 51.429 31.429 0 52-20.571 52-51.429zM756 553.143c0-20.571-20.571-41.143-52-41.143-20.571 0-41.143 20.571-41.143 41.143 0 21.143 20.571 41.714 41.143 41.714 31.429 0 52-20.571 52-41.714zM621.143 263.429c0-31.429-20.571-52-51.429-52-31.429 0-62.286 20.571-62.286 52 0 30.857 30.857 51.429 62.286 51.429 30.857 0 51.429-20.571 51.429-51.429zM984 553.143c0-20.571-21.143-41.143-52-41.143-20.571 0-41.143 20.571-41.143 41.143 0 21.143 20.571 41.714 41.143 41.714 30.857 0 52-20.571 52-41.714zM832 326.286c-13.143-1.714-26.286-2.286-40-2.286-196.571 0-352 146.857-352 327.429 0 30.286 4.571 59.429 13.143 86.857-13.143 1.143-25.714 1.714-38.857 1.714-52 0-93.143-10.286-145.143-20.571l-144.571 72.571 41.143-124.571c-103.429-72.571-165.714-166.286-165.714-280 0-197.143 186.286-352 414.286-352 203.429 0 382.286 124 417.714 290.857zM1170.286 646.857c0 93.143-61.714 176-145.143 238.286l31.429 103.429-113.714-62.286c-41.714 10.286-83.429 21.143-124.571 21.143-197.143 0-352-134.857-352-300.571s154.857-300.571 352-300.571c186.286 0 352 134.857 352 300.571z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wechat",
+ "weixin"
+ ],
+ "defaultCode": 61911,
+ "grid": 14
+ },
+ {
+ "id": 429,
+ "paths": [
+ "M1008 6.286c12 8.571 17.714 22.286 15.429 36.571l-146.286 877.714c-1.714 10.857-8.571 20-18.286 25.714-5.143 2.857-11.429 4.571-17.714 4.571-4.571 0-9.143-1.143-13.714-2.857l-258.857-105.714-138.286 168.571c-6.857 8.571-17.143 13.143-28 13.143-4 0-8.571-0.571-12.571-2.286-14.286-5.143-24-18.857-24-34.286v-199.429l493.714-605.143-610.857 528.571-225.714-92.571c-13.143-5.143-21.714-17.143-22.857-31.429-0.571-13.714 6.286-26.857 18.286-33.714l950.857-548.571c5.714-3.429 12-5.143 18.286-5.143 7.429 0 14.857 2.286 20.571 6.286z"
+ ],
+ "width": 1025.1702857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "paper-plane",
+ "send"
+ ],
+ "defaultCode": 61912,
+ "grid": 14
+ },
+ {
+ "id": 430,
+ "paths": [
+ "M1008 6.286c12 8.571 17.714 22.286 15.429 36.571l-146.286 877.714c-1.714 10.857-8.571 20-18.286 25.714-5.143 2.857-11.429 4.571-17.714 4.571-4.571 0-9.143-1.143-13.714-2.857l-301.143-122.857-170.286 186.857c-6.857 8-16.571 12-26.857 12-4.571 0-9.143-0.571-13.143-2.286-14.286-5.714-23.429-19.429-23.429-34.286v-258.286l-269.714-110.286c-13.143-5.143-21.714-17.143-22.857-31.429-1.143-13.714 6.286-26.857 18.286-33.714l950.857-548.571c12-7.429 27.429-6.857 38.857 1.143zM812.571 862.857l126.286-756-819.429 472.571 192 78.286 493.143-365.143-273.143 455.429z"
+ ],
+ "width": 1024.5851428571427,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "paper-plane-o",
+ "send-o"
+ ],
+ "defaultCode": 61913,
+ "grid": 14
+ },
+ {
+ "id": 431,
+ "paths": [
+ "M877.714 512c0 241.714-197.143 438.857-438.857 438.857-130.857 0-254.286-57.714-337.714-158.286-5.714-7.429-5.143-18.286 1.143-24.571l78.286-78.857c4-3.429 9.143-5.143 14.286-5.143 5.143 0.571 10.286 2.857 13.143 6.857 56 72.571 140 113.714 230.857 113.714 161.143 0 292.571-131.429 292.571-292.571s-131.429-292.571-292.571-292.571c-74.857 0-145.714 28.571-198.857 78.286l78.286 78.857c10.857 10.286 13.714 26.286 8 39.429-5.714 13.714-18.857 22.857-33.714 22.857h-256c-20 0-36.571-16.571-36.571-36.571v-256c0-14.857 9.143-28 22.857-33.714 13.143-5.714 29.143-2.857 39.429 8l74.286 73.714c80.571-76 189.714-121.143 302.286-121.143 241.714 0 438.857 197.143 438.857 438.857zM512 347.429v256c0 10.286-8 18.286-18.286 18.286h-182.857c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h128v-201.143c0-10.286 8-18.286 18.286-18.286h36.571c10.286 0 18.286 8 18.286 18.286z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "history"
+ ],
+ "defaultCode": 61914,
+ "grid": 14
+ },
+ {
+ "id": 432,
+ "paths": [
+ "M438.857 146.286c-201.714 0-365.714 164-365.714 365.714s164 365.714 365.714 365.714 365.714-164 365.714-365.714-164-365.714-365.714-365.714zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857v0c242.286 0 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "circle-thin"
+ ],
+ "defaultCode": 61915,
+ "grid": 14
+ },
+ {
+ "id": 433,
+ "paths": [
+ "M961.143 950.857c-50.286 0-101.143-4-152-4-50.286 0-100.571 4-150.857 4-19.429 0-28.571-21.143-28.571-37.714 0-50.857 57.143-29.143 86.857-48.571 18.857-12 18.857-60 18.857-80l-0.571-223.429c0-6.286 0-12-0.571-17.714-9.143-2.857-19.429-2.286-28.571-2.286h-385.714c-9.714 0-20-0.571-29.143 2.286-0.571 5.714-0.571 11.429-0.571 17.714l-0.571 212c0 21.714 0 81.143 21.143 93.714 29.714 18.286 97.143-7.429 97.143 44 0 17.143-8 40-28 40-53.143 0-106.286-4-158.857-4-48.571 0-97.143 4-145.714 4-18.857 0-27.429-21.714-27.429-37.714 0-49.714 52.571-29.143 80.571-48.571 18.286-12.571 18.857-61.714 18.857-81.714l-0.571-32.571v-464.571c0-27.429 4-115.429-21.714-130.857-28.571-17.714-89.714 9.714-89.714-41.714 0-16.571 7.429-40 27.429-40 52.571 0 105.714 4 158.286 4 48 0 96.571-4 144.571-4 20.571 0 28.571 22.857 28.571 40 0 49.143-56.571 25.143-84.571 42.857-20 12-20 70.857-20 91.429l0.571 182.857c0 6.286 0 12 0.571 18.286 7.429 1.714 14.857 1.714 22.286 1.714h399.429c6.857 0 14.286 0 21.714-1.714 0.571-6.286 0.571-12 0.571-18.286l0.571-182.857c0-21.143 0-79.429-20-91.429-28.571-17.143-85.714 5.714-85.714-42.857 0-17.143 8-40 28.571-40 50.286 0 100.571 4 150.857 4 49.143 0 98.286-4 147.429-4 20.571 0 28.571 22.857 28.571 40 0 49.714-58.857 24.571-87.429 42.286-19.429 12.571-20 71.429-20 92l0.571 538.857c0 18.857 1.143 68.571 19.429 80 29.143 18.286 90.857-5.143 90.857 44.571 0 16.571-7.429 40-27.429 40z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "header"
+ ],
+ "defaultCode": 61916,
+ "grid": 14
+ },
+ {
+ "id": 434,
+ "paths": [
+ "M730.286 108v41.714c0 19.429-15.429 53.143-34.857 53.143-9.714 0-21.143-1.714-30.857 0.571-9.143 2.286-16 8.571-18.286 17.714-2.857 10.857-1.714 24.571-1.714 36.571v658.286c0 19.429-15.429 34.857-34.857 34.857h-61.714c-19.429 0-34.857-15.429-34.857-34.857v-696h-81.714v696c0 19.429-15.429 34.857-34.857 34.857h-61.714c-19.429 0-34.857-15.429-34.857-34.857v-283.429c-55.429-4.571-102.857-16-140-33.714-48-22.286-84.571-56.571-109.714-102.286-24-44-36.571-93.714-36.571-148 0-63.429 17.143-118.286 50.286-163.429 33.714-45.143 73.714-75.429 119.429-90.857 42.857-14.286 133.143-21.143 238.286-21.143h273.714c19.429 0 34.857 15.429 34.857 34.857z"
+ ],
+ "width": 744.0091428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "paragraph"
+ ],
+ "defaultCode": 61917,
+ "grid": 14
+ },
+ {
+ "id": 435,
+ "paths": [
+ "M201.143 804.571v73.143h-201.143v-73.143h201.143zM402.286 731.429c20 0 36.571 16.571 36.571 36.571v146.286c0 20-16.571 36.571-36.571 36.571h-146.286c-20 0-36.571-16.571-36.571-36.571v-146.286c0-20 16.571-36.571 36.571-36.571h146.286zM493.714 512v73.143h-493.714v-73.143h493.714zM128 219.429v73.143h-128v-73.143h128zM877.714 804.571v73.143h-420.571v-73.143h420.571zM329.143 146.286c20 0 36.571 16.571 36.571 36.571v146.286c0 20-16.571 36.571-36.571 36.571h-146.286c-20 0-36.571-16.571-36.571-36.571v-146.286c0-20 16.571-36.571 36.571-36.571h146.286zM694.857 438.857c20 0 36.571 16.571 36.571 36.571v146.286c0 20-16.571 36.571-36.571 36.571h-146.286c-20 0-36.571-16.571-36.571-36.571v-146.286c0-20 16.571-36.571 36.571-36.571h146.286zM877.714 512v73.143h-128v-73.143h128zM877.714 219.429v73.143h-493.714v-73.143h493.714z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sliders"
+ ],
+ "defaultCode": 61918,
+ "grid": 14
+ },
+ {
+ "id": 436,
+ "paths": [
+ "M694.857 585.143c101.143 0 182.857 81.714 182.857 182.857s-81.714 182.857-182.857 182.857-182.857-81.714-182.857-182.857c0-6.286 0.571-13.143 1.143-19.429l-205.714-102.857c-32.571 30.286-76.571 49.143-124.571 49.143-101.143 0-182.857-81.714-182.857-182.857s81.714-182.857 182.857-182.857c48 0 92 18.857 124.571 49.143l205.714-102.857c-0.571-6.286-1.143-13.143-1.143-19.429 0-101.143 81.714-182.857 182.857-182.857s182.857 81.714 182.857 182.857-81.714 182.857-182.857 182.857c-48 0-92-18.857-124.571-49.143l-205.714 102.857c0.571 6.286 1.143 13.143 1.143 19.429s-0.571 13.143-1.143 19.429l205.714 102.857c32.571-30.286 76.571-49.143 124.571-49.143z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "share-alt"
+ ],
+ "defaultCode": 61920,
+ "grid": 14
+ },
+ {
+ "id": 437,
+ "paths": [
+ "M731.429 682.857c0-67.429-54.857-122.286-121.714-122.286-32 0-61.143 12.571-82.857 33.143l-137.714-68.571c0.571-4.571 1.143-8.571 1.143-13.143s-0.571-8.571-1.143-13.143l137.714-68.571c21.714 20.571 50.857 33.143 82.857 33.143 66.857 0 121.714-54.857 121.714-122.286 0-66.857-54.857-121.714-121.714-121.714-67.429 0-122.286 54.857-122.286 121.714 0 4.571 0.571 8.571 1.143 13.143l-137.714 68.571c-21.714-20-50.857-32.571-82.857-32.571-66.857 0-121.714 54.286-121.714 121.714s54.857 121.714 121.714 121.714c32 0 61.143-12.571 82.857-32.571l137.714 68.571c-0.571 4.571-1.143 8.571-1.143 13.143 0 66.857 54.857 121.714 122.286 121.714 66.857 0 121.714-54.857 121.714-121.714zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "share-alt-square"
+ ],
+ "defaultCode": 61921,
+ "grid": 14
+ },
+ {
+ "id": 438,
+ "paths": [
+ "M326.286 336.571c-7.429-18.857-28.571-27.429-47.429-20-82.286 33.143-148.571 99.429-181.714 181.714-7.429 18.857 1.143 40 20 47.429 4.571 1.714 9.143 2.857 13.714 2.857 14.857 0 28-8.571 34.286-22.857 25.714-64 77.143-115.429 141.143-141.143 18.857-8 28-29.143 20-48zM864.571 133.143l26.286 26.286-139.429 138.857 38.857 38.857c14.286 14.286 14.286 37.714 0 52l-36.571 36.571c32 57.714 50.857 124.571 50.857 196 0 222.286-180 402.286-402.286 402.286s-402.286-180-402.286-402.286 180-402.286 402.286-402.286c71.429 0 138.286 18.857 196 50.857l36.571-36.571c14.286-14.286 37.714-14.286 52 0l38.857 38.857zM869.143 101.143c-3.429 3.429-8 5.714-12.571 5.714-5.143 0-9.714-2.286-13.143-5.714l-52-51.429c-6.857-7.429-6.857-18.857 0-26.286 7.429-6.857 18.857-6.857 26.286 0l51.429 52c7.429 6.857 7.429 18.857 0 25.714zM1000.571 232.571c-4 3.429-8.571 5.143-13.143 5.143s-9.143-1.714-13.143-5.143l-51.429-52c-7.429-6.857-7.429-18.857 0-25.714 6.857-7.429 18.857-7.429 25.714 0l52 51.429c6.857 7.429 6.857 18.857 0 26.286zM1024 128c0 10.286-8 18.286-18.286 18.286h-54.857c-10.286 0-18.286-8-18.286-18.286s8-18.286 18.286-18.286h54.857c10.286 0 18.286 8 18.286 18.286zM914.286 18.286v54.857c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286v-54.857c0-10.286 8-18.286 18.286-18.286s18.286 8 18.286 18.286zM1000.571 49.714l-52 51.429c-3.429 3.429-8 5.714-12.571 5.714-5.143 0-9.714-2.286-13.143-5.714-7.429-6.857-7.429-18.857 0-25.714l51.429-52c7.429-6.857 18.857-6.857 26.286 0 6.857 7.429 6.857 18.857 0 26.286z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bomb"
+ ],
+ "defaultCode": 61922,
+ "grid": 14
+ },
+ {
+ "id": 439,
+ "paths": [
+ "M348 466.286l164-118.857 164 118.857-62.286 192h-202.857zM512 0c282.857 0 512 229.143 512 512s-229.143 512-512 512-512-229.143-512-512 229.143-512 512-512zM865.714 771.429c53.714-73.143 85.143-162.286 85.143-259.429v-1.714l-58.286 50.857-137.143-128 36-184.571 76.571 6.857c-54.286-74.857-132-132.571-222.286-161.143l30.286 70.857-164 90.857-164-90.857 30.286-70.857c-90.286 28.571-168 86.286-222.286 161.143l77.143-6.857 35.429 184.571-137.143 128-58.286-50.857v1.714c0 97.143 31.429 186.286 85.143 259.429l17.143-75.429 186.286 22.857 79.429 170.286-66.286 39.429c42.857 14.286 89.143 22.286 137.143 22.286s94.286-8 137.143-22.286l-66.286-39.429 79.429-170.286 186.286-22.857z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "futbol-o",
+ "soccer-ball-o"
+ ],
+ "defaultCode": 61923,
+ "grid": 14
+ },
+ {
+ "id": 440,
+ "paths": [
+ "M256 749.714v109.714c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286zM146.286 530.286v109.714c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286zM475.429 749.714v109.714c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286zM365.714 530.286v109.714c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286zM37.714 438.857c-21.143 0-37.714-16.571-37.714-37.143v-73.714h293.714v73.714c0 20.571-16.571 37.143-37.143 37.143h-218.857zM694.857 749.714v109.714c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286zM585.143 530.286v109.714c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286zM914.286 749.714v109.714c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286zM804.571 530.286v109.714c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286zM1024 297.143v7.429h-293.714v-5.714c0-21.143-18.286-59.429-218.286-58.286-200 0.571-218.286 37.143-218.286 58.286v5.714h-293.714v-7.429c0-38.286 68.571-224 512-224 442.857 0 512 185.714 512 224zM1024 530.286v109.714c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286zM1024 328v73.714c0 20.571-16.571 37.143-37.143 37.143h-219.429c-20.571 0-37.143-16.571-37.143-37.143v-73.714h293.714z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tty"
+ ],
+ "defaultCode": 61924,
+ "grid": 14
+ },
+ {
+ "id": 441,
+ "paths": [
+ "M402.286 182.857v438.857c0 20-16.571 36.571-36.571 36.571v0 329.143c0 20-16.571 36.571-36.571 36.571h-292.571c-20 0-36.571-16.571-36.571-36.571v-292.571l142.286-498.857c2.286-8 9.714-13.143 17.714-13.143h242.286zM585.143 182.857v402.286h-146.286v-402.286h146.286zM1024 694.857v292.571c0 20-16.571 36.571-36.571 36.571h-292.571c-20 0-36.571-16.571-36.571-36.571v-329.143c-20 0-36.571-16.571-36.571-36.571v-438.857h242.286c8 0 15.429 5.143 17.714 13.143zM420.571 18.286v128h-201.143v-128c0-10.286 8-18.286 18.286-18.286h164.571c10.286 0 18.286 8 18.286 18.286zM804.571 18.286v128h-201.143v-128c0-10.286 8-18.286 18.286-18.286h164.571c10.286 0 18.286 8 18.286 18.286z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "binoculars"
+ ],
+ "defaultCode": 61925,
+ "grid": 14
+ },
+ {
+ "id": 442,
+ "paths": [
+ "M1002.857 258.857c28 28.571 28 74.857 0 103.429l-229.143 228.571 85.714 85.714-91.429 91.429c-125.143 125.143-316 142.857-457.714 49.143l-206.857 206.857h-103.429v-103.429l206.857-206.857c-93.714-141.714-76-332.571 49.143-457.714l91.429-91.429 85.714 85.714 228.571-229.143c28.571-28 74.857-28 103.429 0 28.571 28.571 28.571 75.429 0 103.429l-228.571 229.143 133.714 133.714 229.143-228.571c28.571-28.571 74.857-28.571 103.429 0z"
+ ],
+ "width": 1030.8754285714285,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "plug"
+ ],
+ "defaultCode": 61926,
+ "grid": 14
+ },
+ {
+ "id": 443,
+ "paths": [
+ "M498.857 422.857c0 63.429-55.429 115.429-123.429 115.429s-123.429-52-123.429-115.429c0-64 55.429-115.429 123.429-115.429s123.429 51.429 123.429 115.429zM785.714 422.857c0 63.429-54.857 115.429-123.429 115.429-68 0-123.429-52-123.429-115.429 0-64 55.429-115.429 123.429-115.429 68.571 0 123.429 51.429 123.429 115.429zM914.286 525.714v-381.143c0-65.714-21.143-91.429-81.714-91.429h-635.429c-63.429 0-81.143 21.714-81.143 91.429v384.571c135.429 70.857 251.429 58.286 314.857 56 26.857-0.571 44 4.571 54.286 15.429 1.714 1.714 3.429 3.429 5.714 5.143 12 11.429 23.429 20.571 34.857 29.143 2.286-31.429 20-51.429 67.429-49.714 64.571 2.857 183.429 15.429 321.143-59.429zM1007.429 522.857c-36.571 45.143-106.286 100.571-212.571 144 112.571 383.429-274.857 444.571-268.571 248 0 3.429-0.571-105.714-0.571-186.857-8.571-1.714-17.143-4-27.429-6.286 0 81.714-0.571 196.571-0.571 193.143 6.286 196.571-381.143 135.429-268.571-248-106.286-43.429-176-98.857-212.571-144-18.286-27.429 1.714-56.571 32-35.429 4 2.857 8.571 5.714 12.571 8.571v-396.571c0-54.857 41.143-99.429 92-99.429h718.286c50.857 0 92 44.571 92 99.429v396.571l12-8.571c30.286-21.143 50.286 8 32 35.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "slideshare"
+ ],
+ "defaultCode": 61927,
+ "grid": 14
+ },
+ {
+ "id": 444,
+ "paths": [
+ "M512 248v248h-82.857v-248h82.857zM739.429 248v248h-82.857v-248h82.857zM739.429 682.286l144.571-145.143v-454.286h-682.286v599.429h186.286v124l124-124h227.429zM966.857 0v578.857l-248 248h-186.286l-124 124h-124v-124h-227.429v-661.714l62.286-165.143h847.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "twitch"
+ ],
+ "defaultCode": 61928,
+ "grid": 14
+ },
+ {
+ "id": 445,
+ "paths": [
+ "M441.714 753.714v72.571c-0.571 161.143-0.571 166.857-3.429 174.286-4.571 12-14.857 20-29.143 22.857-41.143 6.857-169.714-40.571-196.571-72.571-5.714-6.286-8.571-13.714-9.714-20.571-0.571-5.143 0.571-10.286 2.286-14.857 2.857-8 8-14.286 122.857-150.286 0 0 0.571 0 34.286-40 11.429-14.286 32-18.857 50.857-12 18.857 7.429 29.143 23.429 28.571 40.571zM356.571 610.286c-1.143 20-12.571 34.857-29.714 40l-68.571 22.286c-153.714 49.143-158.857 50.286-166.857 50.286-12.571-0.571-24-8-30.857-20.571-4.571-9.143-8-24.571-9.714-42.857-6.286-56 1.143-140 17.714-166.286 8-12.571 19.429-18.857 32-18.286 8.571 0 15.429 3.429 181.143 70.857 0 0-0.571 0.571 48 19.429 17.143 6.857 28 24.571 26.857 45.143zM828.571 780c-5.714 41.143-90.857 149.143-129.714 164.571-13.143 5.143-26.286 4-36-4-6.857-5.143-13.714-15.429-105.143-164l-26.857-44c-10.286-16-8.571-36.571 4.571-52.571 12.571-15.429 30.857-20.571 47.429-14.857 0 0 0.571 0.571 68 22.857 153.714 50.286 158.857 52 165.143 57.143 10.286 8 14.857 20 12.571 34.857zM444.571 418.857c2.857 59.429-22.286 66.857-30.857 69.714-8 2.286-33.143 9.714-65.143-40.571-210.286-332-216-341.714-216-341.714-2.857-12 0.571-25.143 10.857-35.429 31.429-32.571 202.286-80.571 246.857-69.143 14.286 3.429 24.571 12.571 28 25.714 2.286 14.286 22.857 322.286 26.286 391.429zM822.857 480.571c1.143 14.286-4 26.286-14.857 33.714-6.857 4.571-13.714 6.857-188 49.143-28 6.286-43.429 10.286-52 13.143l0.571-1.143c-17.143 4.571-36.571-3.429-47.429-20.571s-10.286-36 0-49.714c0 0 0.571-0.571 42.857-58.286 93.714-128 98.286-134.286 105.143-138.857 10.857-7.429 24-7.429 37.143-1.143 37.143 17.714 112 129.143 116.571 172v1.714z"
+ ],
+ "width": 875.4468571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "yelp"
+ ],
+ "defaultCode": 61929,
+ "grid": 14
+ },
+ {
+ "id": 446,
+ "paths": [
+ "M585.143 292.571h-219.429v219.429h219.429v-219.429zM658.286 658.286v73.143h-365.714v-73.143h365.714zM658.286 219.429v365.714h-365.714v-365.714h365.714zM1024 658.286v73.143h-292.571v-73.143h292.571zM1024 512v73.143h-292.571v-73.143h292.571zM1024 365.714v73.143h-292.571v-73.143h292.571zM1024 219.429v73.143h-292.571v-73.143h292.571zM146.286 768v-548.571h-73.143v548.571c0 20 16.571 36.571 36.571 36.571s36.571-16.571 36.571-36.571zM1097.143 768v-621.714h-877.714v621.714c0 12.571-2.286 25.143-6.286 36.571h847.429c20 0 36.571-16.571 36.571-36.571zM1170.286 73.143v694.857c0 60.571-49.143 109.714-109.714 109.714h-950.857c-60.571 0-109.714-49.143-109.714-109.714v-621.714h146.286v-73.143h1024z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "newspaper-o"
+ ],
+ "defaultCode": 61930,
+ "grid": 14
+ },
+ {
+ "id": 447,
+ "paths": [
+ "M585.143 870.286c-14.857 0-94.857-80-94.857-95.429 0-28 73.143-43.429 94.857-43.429s94.857 15.429 94.857 43.429c0 15.429-80 95.429-94.857 95.429zM739.429 715.429c-8 0-70.286-57.143-154.286-57.143-84.571 0-145.714 57.143-154.286 57.143-13.714 0-96.571-82.286-96.571-96 0-5.143 2.286-9.714 5.714-13.143 61.143-60.571 160.571-94.286 245.143-94.286s184 33.714 245.143 94.286c3.429 3.429 5.714 8 5.714 13.143 0 13.714-82.857 96-96.571 96zM895.429 560c-4.571 0-9.714-2.286-13.143-4.571-94.286-73.143-173.714-116.571-297.143-116.571-172.571 0-304 121.143-310.286 121.143-13.143 0-95.429-82.286-95.429-96 0-4.571 2.286-9.143 5.714-12.571 102.286-102.286 256.571-158.857 400-158.857s297.714 56.571 400 158.857c3.429 3.429 5.714 8 5.714 12.571 0 13.714-82.286 96-95.429 96zM1050.286 405.143c-4.571 0-9.143-2.286-12.571-5.143-132-116-274.286-180.571-452.571-180.571s-320.571 64.571-452.571 180.571c-3.429 2.857-8 5.143-12.571 5.143-13.143 0-96-82.286-96-96 0-5.143 2.286-9.714 5.714-13.143 144.571-143.429 353.143-222.857 555.429-222.857s410.857 79.429 555.429 222.857c3.429 3.429 5.714 8 5.714 13.143 0 13.714-82.857 96-96 96z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wifi"
+ ],
+ "defaultCode": 61931,
+ "grid": 14
+ },
+ {
+ "id": 448,
+ "paths": [
+ "M219.429 877.714c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM438.857 877.714c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM219.429 658.286c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM658.286 877.714c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM438.857 658.286c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM219.429 438.857c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM658.286 658.286c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM438.857 438.857c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM877.714 877.714v-219.429c0-40-33.143-73.143-73.143-73.143v0c-40 0-73.143 33.143-73.143 73.143v219.429c0 40 33.143 73.143 73.143 73.143v0c40 0 73.143-33.143 73.143-73.143zM658.286 438.857c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM877.714 256v-146.286c0-20-16.571-36.571-36.571-36.571h-731.429c-20 0-36.571 16.571-36.571 36.571v146.286c0 20 16.571 36.571 36.571 36.571h731.429c20 0 36.571-16.571 36.571-36.571zM877.714 438.857c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM950.857 73.143v877.714c0 40-33.143 73.143-73.143 73.143h-804.571c-40 0-73.143-33.143-73.143-73.143v-877.714c0-40 33.143-73.143 73.143-73.143h804.571c40 0 73.143 33.143 73.143 73.143z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "calculator"
+ ],
+ "defaultCode": 61932,
+ "grid": 14
+ },
+ {
+ "id": 449,
+ "paths": [
+ "M868 369.143v0c7.429 34.286 5.714 73.714-2.286 116.571-37.143 188.571-162.286 253.714-322.857 253.714h-25.143c-19.429 0-35.429 14.286-38.857 33.714l-2.286 10.857-31.429 197.714-1.143 8.571c-4 19.429-20 33.714-39.429 33.714h-143.429c-16 0-26.286-13.143-24-29.143 10.286-64 20-128 30.286-192s20.571-127.429 30.857-191.429c1.714-13.714 10.857-21.143 24.571-21.143 22.857 0 45.714-0.571 74.857 0 41.143 0.571 88.571-1.714 134.857-12 61.714-13.714 117.714-38.857 164-82.286 41.714-38.857 69.714-86.857 88.571-140.571 8.571-25.143 15.429-50.286 20-76 1.143-6.857 2.857-5.714 6.857-2.857 31.429 23.429 49.143 54.857 56 92.571zM769.714 208c0 46.857-10.857 91.429-26.286 134.857-29.714 86.286-85.714 148-172.571 180-46.286 16.571-94.857 23.429-144 24-34.286 0.571-68.571 0-102.857 0-37.143 0-60.571 18.286-67.429 54.857-8 43.429-39.429 245.714-48.571 302.857-0.571 4-2.286 5.714-6.857 5.714h-168.571c-17.143 0-29.714-14.857-27.429-31.429l132.571-840.571c3.429-21.714 22.857-38.286 45.143-38.286h341.714c24.571 0 81.143 10.857 119.429 25.714 81.143 31.429 125.714 95.429 125.714 182.286z"
+ ],
+ "width": 878.2994285714285,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "paypal"
+ ],
+ "defaultCode": 61933,
+ "grid": 14
+ },
+ {
+ "id": 450,
+ "paths": [
+ "M252 384c11.429 0 22.857 5.714 29.714 14.857 100 136.571 169.714 282.857 206.857 442.286h-254.857c-45.714-158.857-113.143-304-209.714-428-9.143-12 0-29.143 14.857-29.143h213.143zM571.429 588c-18.857 77.143-42.857 152-71.429 224.571-30.286-119.429-78.857-231.429-146.286-339.429 14.857-82.857 23.429-168 25.143-256.571 80.571 129.714 144.571 253.143 192.571 371.429zM628 182.857c170.857 235.429 297.714 525.714 325.143 841.143h-257.714c-18.857-305.143-159.429-594.286-316-841.143h248.571zM1024 512c0 158.857-21.714 325.714-57.714 464-25.143-211.429-94.857-421.714-205.143-618.857-9.714-115.429-30.286-227.429-60.571-333.714-2.857-12 5.714-23.429 17.714-23.429h205.143c16 0 30.857 10.857 34.857 26.286 43.429 154.286 65.714 317.714 65.714 485.714z"
+ ],
+ "width": 1038.848,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "google-wallet"
+ ],
+ "defaultCode": 61934,
+ "grid": 14
+ },
+ {
+ "id": 451,
+ "paths": [
+ "M1128.571 565.714h-78.857c0 0 8-21.143 37.714-102.286-0.571 0.571 8-21.143 12.571-34.857l6.857 31.429c17.714 87.429 21.714 105.714 21.714 105.714zM303.429 528.571l-33.143-168.571c-4.571-23.429-22.286-30.857-42.857-30.857h-153.143l-1.143 7.429c105.143 26.857 191.429 84 230.286 192zM405.714 329.143l-92.571 250.286-9.714-50.857c-20-53.143-68.571-102.286-123.429-124.571l77.143 291.429h100l149.143-366.286h-100.571zM485.143 696h94.857l59.429-366.857h-94.857zM924 338.286c-18.857-7.429-48.571-15.429-85.143-15.429-93.714 0-159.429 49.714-160 121.143-0.571 52.571 46.857 81.714 82.857 99.429 37.143 17.714 49.143 29.714 49.143 45.714 0 24.571-29.714 35.429-56.571 35.429-38.286 0-58.857-4.571-89.143-18.857l-12.571-6.286-13.143 82.286c22.286 10.286 62.857 19.429 105.714 19.429 99.429 0.571 164-49.143 165.143-125.143 0-41.714-25.714-73.143-80-99.429-33.143-16.571-53.143-28.571-53.143-45.714 0-15.429 17.143-31.429 54.286-31.429 30.857-0.571 53.714 5.714 70.857 13.714l8.571 4.571zM1166.857 329.143h-73.143c-22.857 0-40 6.857-49.714 30.857l-140.571 336h99.429c16-45.143 20-54.857 20-54.857h121.143c0 0 2.857 12.571 11.429 54.857h88zM1316.571 146.286v731.429c0 40-33.143 73.143-73.143 73.143h-1170.286c-40 0-73.143-33.143-73.143-73.143v-731.429c0-40 33.143-73.143 73.143-73.143h1170.286c40 0 73.143 33.143 73.143 73.143z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cc-visa"
+ ],
+ "defaultCode": 61936,
+ "grid": 14
+ },
+ {
+ "id": 452,
+ "paths": [
+ "M639.429 194.857c-47.429-31.429-103.429-48.571-160.571-48.571-160.571 0-290.857 130.286-290.857 290.286 0 160.571 130.286 290.857 290.857 290.857 57.143 0 113.143-17.143 160.571-48.571-153.143-124.571-152-359.429 0-484zM658.286 208.571c-147.429 116-148 341.143 0 456.571 148-115.429 147.429-340.571 0-456.571zM677.143 194.857c151.429 124.571 153.714 360 0 484 47.429 31.429 104 48.571 160.571 48.571 160.571 0 290.857-130.286 290.857-290.857 0-160-130.286-290.286-290.857-290.286-57.143 0-113.143 17.143-160.571 48.571zM1100.571 607.429h4v-1.714h-9.714v1.714h4v9.714h1.714v-9.714zM1117.143 617.143h2.286v-11.429h-2.857l-3.429 7.429-3.429-7.429h-2.857v11.429h1.714v-8.571l3.429 7.429h2.286l2.857-7.429v8.571zM1112.571 868.571v1.143h-2.857v-1.714h2.857v0.571zM1112.571 873.714h1.714l-2.286-2.857c1.143 0 1.143-0.571 1.714-0.571 0.571-0.571 0.571-1.143 0.571-1.714s0-1.143-0.571-1.714c-0.571 0-1.143-0.571-2.286-0.571h-3.429v7.429h1.714v-2.857h0.571zM391.429 834.857c0-13.714 8.571-24.571 23.429-24.571 13.714 0 22.857 10.857 22.857 24.571 0 14.286-9.143 24.571-22.857 24.571-14.857 0-23.429-10.857-23.429-24.571zM661.714 809.714c10.857 0 18.286 6.286 20 18.286h-40c1.714-10.857 8.571-18.286 20-18.286zM865.143 834.857c0-13.714 8.571-24.571 22.857-24.571s23.429 10.857 23.429 24.571c0 14.286-9.143 24.571-23.429 24.571s-22.857-10.857-22.857-24.571zM1020.571 834.857c0-13.714 9.143-24.571 23.429-24.571 13.714 0 23.429 10.857 23.429 24.571 0 14.286-9.714 24.571-23.429 24.571-14.286 0-23.429-10.857-23.429-24.571zM1110.857 876c-0.571 0-1.143 0-2.286-0.571-0.571 0-1.143-0.571-1.714-1.143s-1.143-1.143-1.143-1.714-0.571-1.714-0.571-2.286 0-1.714 0.571-2.286c0-1.143 0.571-1.714 1.143-2.286s1.143-0.571 1.714-1.143 1.714-0.571 2.286-0.571 1.714 0 2.286 0.571 1.714 0.571 2.286 1.143 0.571 1.143 1.143 2.286c0 0.571 0.571 1.143 0.571 2.286 0 0.571-0.571 1.143-0.571 2.286-0.571 0.571-0.571 1.143-1.143 1.714s-1.143 1.143-2.286 1.143c-0.571 0.571-1.143 0.571-2.286 0.571zM342.286 873.714h17.143v-48.571c0-18.286-12-30.286-30.857-30.857-9.714 0-20 2.857-26.857 13.714-5.143-8.571-13.714-13.714-25.714-13.714-8 0-16 2.857-22.286 11.429v-9.143h-17.143v77.143h17.143v-42.857c0-13.714 7.429-20.571 18.857-20.571s17.143 7.429 17.143 20.571v42.857h16.571v-42.857c0-13.714 8-20.571 18.857-20.571 11.429 0 17.143 7.429 17.143 20.571v42.857zM437.143 873.714h16.571v-77.143h-16.571v9.143c-5.714-6.857-13.714-11.429-24.571-11.429-21.714 0-38.286 17.143-38.286 40.571s16.571 40.571 38.286 40.571c10.857 0 18.857-4 24.571-11.429v9.714zM538.857 850.286c0-13.714-10.286-20.571-26.857-22.857l-8-1.143c-7.429-1.143-13.143-2.857-13.143-8s5.143-8.571 14.286-8.571c10.286 0 19.429 3.429 24.571 6.286l6.857-13.714c-8-5.143-18.857-8-31.429-8-19.429 0-32 9.714-32 25.143 0 12.571 9.143 20 26.857 22.286l7.429 1.143c9.714 1.714 13.714 4 13.714 8 0 6.286-6.286 9.714-17.714 9.714s-20-4-25.714-8l-7.429 13.143c9.143 6.286 20.571 9.714 33.143 9.714 22.286 0 35.429-10.286 35.429-25.143zM613.143 869.714l-4.571-14.286c-5.143 2.857-10.286 4-14.857 4-8.571 0-10.857-5.143-10.857-12.571v-34.857h27.429v-15.429h-27.429v-23.429h-17.143v23.429h-16v15.429h16v34.857c0 17.714 6.857 28.571 26.857 28.571 6.857 0 15.429-2.286 20.571-5.714zM662.286 794.286c-22.286 0-38.286 16.571-38.286 40.571 0 24.571 16.571 40.571 39.429 40.571 11.429 0 22.286-2.857 31.429-10.857l-8-12.571c-6.286 5.143-14.857 8.571-22.286 8.571-10.857 0-20.571-5.143-23.429-18.857h57.714v-6.857c0-24-14.857-40.571-36.571-40.571zM753.143 794.286c-9.714 0-16 4.571-20 11.429v-9.143h-17.143v77.143h17.143v-43.429c0-12.571 5.143-20 16.571-20 3.429 0 6.857 0.571 10.286 2.286l5.143-16c-4-1.714-8.571-2.286-12-2.286zM770.286 834.857c0 23.429 16 40.571 41.143 40.571 11.429 0 19.429-2.286 27.429-9.143l-8-13.714c-6.286 4.571-12.571 7.429-20 6.857-13.714 0-23.429-9.714-23.429-24.571s9.714-24.571 23.429-24.571c7.429 0 13.714 2.286 20 6.857l8-13.714c-8-6.286-16-9.143-27.429-9.143-25.143 0-41.143 17.143-41.143 40.571zM910.286 873.714h17.143v-77.143h-17.143v9.143c-5.143-6.857-13.143-11.429-24-11.429-21.714 0-38.857 17.143-38.857 40.571s17.143 40.571 38.857 40.571c10.857 0 18.857-4 24-11.429v9.714zM986.286 794.286c-9.714 0-16 4.571-20 11.429v-9.143h-16.571v77.143h16.571v-43.429c0-12.571 5.714-20 16.571-20 3.429 0 6.857 0.571 10.286 2.286l5.143-16c-3.429-1.714-8.571-2.286-12-2.286zM1066.286 873.714h16.571v-108.571h-16.571v40.571c-5.143-6.857-13.143-11.429-24.571-11.429-21.143 0-38.286 17.143-38.286 40.571s17.143 40.571 38.286 40.571c11.429 0 19.429-4 24.571-11.429v9.714zM1110.857 862.286c-0.571 0-1.714 0.571-2.857 0.571-1.143 0.571-1.714 1.143-2.286 1.714-1.143 0.571-1.714 1.714-1.714 2.286-0.571 1.143-0.571 2.286-0.571 3.429 0 0.571 0 1.714 0.571 2.857 0 0.571 0.571 1.714 1.714 2.286 0.571 0.571 1.143 1.143 2.286 1.714s2.286 0.571 2.857 0.571c1.143 0 2.286 0 3.429-0.571 0.571-0.571 1.714-1.143 2.286-1.714s1.143-1.714 1.714-2.286c0.571-1.143 0.571-2.286 0.571-2.857 0-1.143 0-2.286-0.571-3.429-0.571-0.571-1.143-1.714-1.714-2.286s-1.714-1.143-2.286-1.714c-1.143 0-2.286-0.571-3.429-0.571zM1316.571 146.286v731.429c0 40-33.143 73.143-73.143 73.143h-1170.286c-40 0-73.143-33.143-73.143-73.143v-731.429c0-40 33.143-73.143 73.143-73.143h1170.286c40 0 73.143 33.143 73.143 73.143z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cc-mastercard"
+ ],
+ "defaultCode": 61937,
+ "grid": 14
+ },
+ {
+ "id": 453,
+ "paths": [
+ "M178.857 444c0 18.286-7.429 36-20.571 48-11.429 10.286-26.857 14.857-50.857 14.857h-9.714v-125.714h9.714c24 0 38.857 4 50.857 15.429 13.143 11.429 20.571 29.143 20.571 47.429zM1193.714 406.857c0 19.429-12.571 29.714-36.571 29.714h-10.857v-57.714h11.429c23.429 0 36 9.714 36 28zM217.143 444c0-56-41.714-95.429-102.286-95.429h-54.286v190.286h54.286c28.571 0 49.714-6.286 68-21.714 21.714-18.286 34.286-45.143 34.286-73.143zM234.286 538.857h37.143v-190.286h-37.143v190.286zM417.143 481.143c0-30.286-12.571-44-54.857-59.429-22.286-8-28.571-13.714-28.571-24 0-12 11.429-21.143 27.429-21.143 11.429 0 20.571 4.571 30.286 15.429l19.429-25.143c-16-14.286-35.429-21.143-56-21.143-33.714 0-59.429 23.429-59.429 54.286 0 26.286 12 40 46.857 52.571 14.286 5.143 21.714 8 25.714 10.857 7.429 4.571 10.857 11.429 10.857 19.429 0 15.429-12 26.857-28.571 26.857-17.714 0-32-8.571-40.571-25.143l-24 22.857c17.143 25.143 37.714 36.571 65.714 36.571 38.857 0 65.714-25.714 65.714-62.857zM576 532.571v-44c-14.857 14.857-28 21.143-44.571 21.143-37.714 0-64-27.429-64-65.714 0-36.571 27.429-65.714 62.286-65.714 17.714 0 30.857 6.286 46.286 21.714v-44c-16-8-29.714-11.429-45.714-11.429-56 0-101.143 44-101.143 99.429 0 56 44 99.429 100.571 99.429 16 0 29.714-2.857 46.286-10.857zM1280 877.714v-301.143c-91.429 57.143-413.143 240-933.143 337.714h896.571c20 0 36.571-16.571 36.571-36.571zM793.714 445.143c0-57.143-46.286-103.429-103.429-103.429s-103.429 46.286-103.429 103.429 46.286 103.429 103.429 103.429 103.429-46.286 103.429-103.429zM880.571 544l82.286-195.429h-40.571l-51.429 128-50.857-128h-40.571l81.143 195.429h20zM979.429 538.857h105.143v-32h-68v-51.429h65.714v-32h-65.714v-42.286h68v-32.571h-105.143v190.286zM1202.857 538.857h45.714l-60-80c28-5.714 43.429-24.571 43.429-53.714 0-36-24.571-56.571-67.429-56.571h-55.429v190.286h37.143v-76h5.143zM1316.571 149.714v724.571c0 42.286-33.714 76.571-75.429 76.571h-1165.714c-41.714 0-75.429-34.286-75.429-76.571v-724.571c0-42.286 33.714-76.571 75.429-76.571h1165.714c41.714 0 75.429 34.286 75.429 76.571z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cc-discover"
+ ],
+ "defaultCode": 61938,
+ "grid": 14
+ },
+ {
+ "id": 454,
+ "paths": [
+ "M68 389.714h50.857l-25.714-61.714zM422.857 690.286l42.286-45.143-40-45.143h-93.143v28h81.143v31.429h-81.143v30.857h90.857zM513.143 645.714l56.571 62.857v-124zM677.714 618.857c0-13.714-10.286-18.857-22.857-18.857h-48v39.429h47.429c13.143 0 23.429-6.286 23.429-20.571zM842.857 616.571c0-14.286-12.571-16.571-24-16.571h-46.857v34.857h46.286c12.571 0 24.571-2.857 24.571-18.286zM684 350.286c0-14.286-12.571-16.571-24-16.571h-46.857v34.286h46.286c12.571 0 24.571-2.857 24.571-17.714zM946.286 389.714h50.857l-25.143-61.714zM399.429 301.143v154.857h-37.714v-121.143l-53.714 121.143h-32.571l-53.714-121.143v121.143h-75.429l-14.286-34.286h-77.143l-14.286 34.286h-40l66.286-154.857h54.857l62.857 146.857v-146.857h60.571l48.571 105.143 44-105.143h61.714zM717.143 618.857c0 62.286-68 52-110.286 52v52h-72l-45.714-51.429-47.429 51.429h-146.286v-154.857h148.571l45.714 50.857 46.857-50.857h118.286c34.857 0 62.286 12 62.286 50.857zM550.857 424v32h-124v-154.857h124v32.571h-86.857v28h84.571v31.429h-84.571v30.857h86.857zM1316.571 743.429v130.857c0 41.714-33.714 76.571-75.429 76.571h-1165.714c-41.714 0-75.429-34.857-75.429-76.571v-387.429h63.429l14.286-34.857h31.429l14.286 34.857h124.571v-26.286l10.857 26.286h64.571l11.429-26.857v26.857h309.143v-56.571l5.714-0.571c5.143 0 5.714 4 5.714 8v49.143h159.429v-13.143c37.143 19.429 88 13.143 126.857 13.143l14.286-34.857h32l14.286 34.857h129.714v-33.143l19.429 33.143h104v-216h-102.857v25.143l-14.286-25.143h-105.714v25.143l-13.143-25.143h-142.286c-21.143 0-43.429 2.286-62.286 12.571v-12.571h-98.286v12.571c-11.429-10.286-26.857-12.571-41.714-12.571h-358.857l-24.571 55.429-24.571-55.429h-113.143v25.143l-12.571-25.143h-96.571l-44.571 102.286v-223.429c0-41.714 33.714-76.571 75.429-76.571h1165.714c41.714 0 75.429 34.857 75.429 76.571v387.429h-68.571c-16 0-33.143 2.857-46.286 12.571v-12.571h-101.143c-14.286 0-33.714 2.286-44.571 12.571v-12.571h-180.571v12.571c-13.714-9.714-33.714-12.571-49.714-12.571h-119.429v12.571c-12-11.429-36.571-12.571-52-12.571h-133.714l-30.857 33.143-28.571-33.143h-199.429v216h196l31.429-33.714 29.714 33.714h120.571v-50.857h12c17.143 0 34.857-0.571 51.429-7.429v58.286h99.429v-56.571h4.571c5.714 0 6.857 0.571 6.857 6.857v49.714h302.286c16.571 0 37.143-3.429 50.286-13.714v13.714h96c18.286 0 37.714-1.714 54.286-9.714zM883.429 609.714c0 17.143-9.143 34.286-26.286 41.143 20.571 7.429 24.571 21.143 24.571 41.143v30.857h-37.143v-25.714c0-26.286-8.571-30.857-33.143-30.857h-39.429v56.571h-37.143v-154.857h88c29.143 0 60.571 5.143 60.571 41.714zM725.143 342.857c0 17.714-9.714 34.857-26.286 41.714 21.143 7.429 24.571 20.571 24.571 41.143v30.286h-37.143c-0.571-33.143 8-56-33.143-56h-40v56h-36.571v-154.857l87.429 0.571c29.714 0 61.143 4.571 61.143 41.143zM1027.429 690.857v32h-123.429v-154.857h123.429v32h-86.286v28h84.571v31.429h-84.571v30.857zM784 301.143v154.857h-37.714v-154.857h37.714zM1180 673.714c0 36.571-25.143 49.143-58.286 49.143h-72v-33.143h72c9.143 0 19.429-2.286 19.429-14.286 0-33.143-95.429 12.571-95.429-61.143 0-31.429 24-46.286 52.571-46.286h74.286v32.571h-68c-9.714 0-20.571 1.714-20.571 14.286 0 33.714 96-15.429 96 58.857zM1316.571 645.143v57.714c-10.857 16-32 20-50.286 20h-71.429v-33.143h71.429c9.143 0 18.857-2.857 18.857-14.286 0-32.571-95.429 12.571-95.429-61.143 0-31.429 24.571-46.286 53.143-46.286h73.714v32.571h-67.429c-10.286 0-20.571 1.714-20.571 14.286 0 27.429 64.571-0.571 88 30.286zM1222.286 301.714v154.286h-52.571l-69.714-116v116h-75.429l-14.857-34.286h-76.571l-14.286 34.286h-42.857c-50.857 0-73.714-26.286-73.714-76 0-52 23.429-78.857 76-78.857h36v33.714c-38.857-0.571-74.286-9.143-74.286 44 0 26.286 6.286 44.571 36 44.571h16.571l52.571-121.714h55.429l62.286 146.286v-146.286h56.571l65.143 107.429v-107.429h37.714z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cc-amex"
+ ],
+ "defaultCode": 61939,
+ "grid": 14
+ },
+ {
+ "id": 455,
+ "paths": [
+ "M425.714 517.714c0 28-22.286 49.143-50.286 49.143-21.143 0-36.571-12-36.571-34.286 0-28 21.714-50.286 49.714-50.286 21.143 0 37.143 13.143 37.143 35.429zM874.286 432.571c0 34.286-20.571 41.143-50.286 41.143l-18.286 0.571 9.714-61.143c0.571-4 3.429-6.286 7.429-6.286h10.286c19.429 0 41.143 1.143 41.143 25.714zM1074.857 517.714c0 28-22.286 49.143-49.714 49.143-21.143 0-37.143-12-37.143-34.286 0-28 21.714-50.286 49.714-50.286 21.143 0 37.143 13.143 37.143 35.429zM293.143 420c0-48-37.143-64-79.429-64h-91.429c-5.714 0-11.429 4.571-12 10.857l-37.143 233.143c-0.571 4.571 2.857 9.143 7.429 9.143h43.429c6.286 0 12-4.571 12.571-10.857l10.286-62.857c2.286-16.571 30.286-10.857 41.143-10.857 65.143 0 105.143-38.857 105.143-104.571zM469.714 598.286l23.429-149.143c0.571-4.571-2.857-9.143-7.429-9.143h-43.429c-8.571 0-9.143 12.571-9.714 18.857-13.143-19.429-32.571-22.857-54.286-22.857-56 0-98.857 49.143-98.857 103.429 0 44.571 28 73.714 72.571 73.714 20.571 0 46.286-9.143 60.571-25.143-1.143 3.429-2.286 8.571-2.286 12 0 5.143 2.286 9.143 7.429 9.143h39.429c6.286 0 11.429-4.571 12.571-10.857zM725.143 448c0-4-3.429-8-7.429-8h-44c-4 0-8 2.286-10.286 5.714l-60.571 89.143-25.143-85.714c-1.714-5.143-6.857-9.143-12.571-9.143h-42.857c-4 0-7.429 4-7.429 8 0 2.857 44.571 132 48.571 144-6.286 8.571-46.857 61.714-46.857 68.571 0 4 3.429 7.429 7.429 7.429h44c4 0 8-2.286 10.286-5.714l145.714-210.286c1.143-1.143 1.143-2.286 1.143-4zM942.286 420c0-48-37.143-64-79.429-64h-90.857c-6.286 0-12 4.571-12.571 10.857l-37.143 233.143c-0.571 4.571 2.857 9.143 7.429 9.143h46.857c4.571 0 8-3.429 9.143-7.429l10.286-66.286c2.286-16.571 30.286-10.857 41.143-10.857 65.143 0 105.143-38.857 105.143-104.571zM1118.857 598.286l23.429-149.143c0.571-4.571-2.857-9.143-7.429-9.143h-43.429c-8.571 0-9.143 12.571-9.714 18.857-12.571-19.429-32-22.857-54.286-22.857-56 0-98.857 49.143-98.857 103.429 0 44.571 28 73.714 72.571 73.714 21.143 0 46.857-9.143 60.571-25.143-0.571 3.429-2.286 8.571-2.286 12 0 5.143 2.286 9.143 7.429 9.143h39.429c6.286 0 11.429-4.571 12.571-10.857zM1243.429 364.571v-0.571c0-4.571-3.429-8-7.429-8h-42.286c-3.429 0-6.857 2.857-7.429 6.286l-37.143 237.714-0.571 1.143c0 4 3.429 8 8 8h37.714c5.714 0 11.429-4.571 12-10.857zM224 441.143c-4.571 29.143-24 32.571-49.143 32.571l-18.857 0.571 9.714-61.143c0.571-4 4-6.286 7.429-6.286h10.857c25.714 0 45.143 3.429 40 34.286zM1316.571 146.286v731.429c0 40-33.143 73.143-73.143 73.143h-1170.286c-40 0-73.143-33.143-73.143-73.143v-731.429c0-40 33.143-73.143 73.143-73.143h1170.286c40 0 73.143 33.143 73.143 73.143z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cc-paypal"
+ ],
+ "defaultCode": 61940,
+ "grid": 14
+ },
+ {
+ "id": 456,
+ "paths": [
+ "M912.571 516c0 26.286-4 46.286-12 60.571-6.857 12.571-17.714 20-29.714 20-8.571 0-16.571-1.714-23.429-5.143v-128c14.857-15.429 28-17.143 32.571-17.143 21.714 0 32.571 24 32.571 69.714zM1162.857 495.429h-62.857c2.286-38.286 12.571-56 32-56s29.714 18.286 30.857 56zM272 572.571c0-48-29.143-68-76.571-85.143v0c-25.143-9.143-38.857-16.571-38.857-28 0-9.714 8-14.857 21.714-14.857 26.286 0 52.571 9.714 70.857 18.857l10.286-64c-14.286-6.857-44-18.286-85.143-18.286-29.143 0-53.143 7.429-70.286 21.714-18.286 14.857-27.429 36.571-27.429 62.286 0 46.857 28.571 67.429 75.429 84 29.714 10.857 40 18.286 40 30.286 0 11.429-9.714 17.714-27.429 17.714-21.714 0-57.714-10.857-81.143-24.571l-10.286 64.571c20 11.429 57.143 23.429 96 23.429 30.857 0 56-7.429 73.714-21.143 19.429-15.429 29.143-37.714 29.143-66.857zM440.571 449.714l10.857-63.429h-54.857v-77.143l-73.714 12-10.286 65.143-26.286 4.571-9.714 58.857h35.429v125.143c0 32.571 8.571 54.857 25.143 68.571 14.286 11.429 34.857 17.143 63.429 17.143 22.286 0 35.429-4 45.143-6.286v-67.429c-5.143 1.143-17.143 4-25.143 4-16.571 0-24-9.143-24-28.571v-112.571h44zM621.143 464v-79.429c-5.714-1.143-10.857-1.714-16-1.714-24 0-43.429 12.571-50.857 35.429l-5.714-32h-74.857v269.143h85.714v-174.857c10.857-13.143 26.286-17.714 46.857-17.714 4.571 0 9.143 0 14.857 1.143zM642.286 655.429h85.714v-269.143h-85.714v269.143zM997.714 513.143c0-45.714-8.571-80.571-25.714-102.286-15.429-20-36.571-29.714-63.429-29.714-24.571 0-46.286 10.286-66.857 32l-4.571-26.857h-75.429v368.571l85.714-14.286v-86.286c13.143 4 26.857 6.286 38.857 6.286 21.143 0 52.571-5.714 76.571-32 23.429-25.143 34.857-64 34.857-115.429zM730.286 314.286c0-25.143-20-45.143-45.143-45.143s-45.143 20-45.143 45.143 20 45.714 45.143 45.714 45.143-20.571 45.143-45.714zM1243.429 518.286c0-42.857-9.143-76.571-27.429-100.571-18.857-24-46.857-36.571-82.286-36.571-73.143 0-118.286 53.714-118.286 140.571 0 48 12 84.571 36 107.429 21.143 21.143 52 31.429 92 31.429 36.571 0 70.286-8.571 91.429-22.857l-9.143-58.857c-21.143 11.429-45.714 17.714-73.143 17.714-16.571 0-28-3.429-36-10.857-9.143-7.429-14.286-20-16-37.714h141.714c0.571-4 1.143-23.429 1.143-29.714zM1316.571 146.286v731.429c0 40-33.143 73.143-73.143 73.143h-1170.286c-40 0-73.143-33.143-73.143-73.143v-731.429c0-40 33.143-73.143 73.143-73.143h1170.286c40 0 73.143 33.143 73.143 73.143z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cc-stripe"
+ ],
+ "defaultCode": 61941,
+ "grid": 14
+ },
+ {
+ "id": 457,
+ "paths": [
+ "M890.286 486.857c29.143 170.286 104 261.714 170.286 317.714 0 40-33.143 73.143-73.143 73.143h-256c0 80.571-65.714 146.286-146.286 146.286s-145.714-65.143-146.286-145.714zM585.143 978.286c5.143 0 9.143-4 9.143-9.143s-4-9.143-9.143-9.143c-45.143 0-82.286-37.143-82.286-82.286 0-5.143-4-9.143-9.143-9.143s-9.143 4-9.143 9.143c0 55.429 45.143 100.571 100.571 100.571zM1157.714 64c6.286 8 5.714 19.429-1.714 26.286l-1069.714 926.857c-7.429 6.286-19.429 5.714-25.714-2.286l-48-54.857c-6.286-8-5.714-19.429 1.714-25.714l106.286-92c-6.857-11.429-10.857-24-10.857-37.714 84.571-71.429 182.857-199.429 182.857-475.429 0-109.714 90.857-229.714 242.286-252-2.857-6.857-4.571-14.286-4.571-22.286 0-30.286 24.571-54.857 54.857-54.857s54.857 24.571 54.857 54.857c0 8-1.714 15.429-4.571 22.286 98.286 14.286 170.857 69.714 209.714 137.143l238.857-207.429c7.429-6.286 19.429-5.714 25.714 2.286z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bell-slash"
+ ],
+ "defaultCode": 61942,
+ "grid": 14
+ },
+ {
+ "id": 458,
+ "paths": [
+ "M594.286 969.143c0-5.143-4-9.143-9.143-9.143-45.143 0-82.286-37.143-82.286-82.286 0-5.143-4-9.143-9.143-9.143s-9.143 4-9.143 9.143c0 55.429 45.143 100.571 100.571 100.571 5.143 0 9.143-4 9.143-9.143zM287.429 697.714l501.143-434.286c-28.571-60-94.857-117.143-203.429-117.143-149.714 0-219.429 109.143-219.429 182.857 0 146.286-25.714 268.571-78.286 368.571zM1060.571 804.571c0 40-33.143 73.143-73.143 73.143h-256c0 80.571-65.714 146.286-146.286 146.286s-145.714-65.143-146.286-145.714l85.143-73.714h432.571c-63.429-71.429-106.286-158.286-129.714-262.286l63.429-55.429c29.143 170.286 104 261.714 170.286 317.714zM1109.714 9.143l48 54.857c6.286 8 5.714 19.429-1.714 26.286l-1069.714 926.857c-7.429 6.286-19.429 5.714-25.714-2.286l-48-54.857c-6.286-8-5.714-19.429 1.714-25.714l106.286-92c-6.857-11.429-10.857-24-10.857-37.714 84.571-71.429 182.857-199.429 182.857-475.429 0-109.714 90.857-229.714 242.286-252-2.857-6.857-4.571-14.286-4.571-22.286 0-30.286 24.571-54.857 54.857-54.857s54.857 24.571 54.857 54.857c0 8-1.714 15.429-4.571 22.286 98.286 14.286 170.857 69.714 209.714 137.143l238.857-207.429c7.429-6.286 19.429-5.714 25.714 2.286z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bell-slash-o"
+ ],
+ "defaultCode": 61943,
+ "grid": 14
+ },
+ {
+ "id": 459,
+ "paths": [
+ "M292.571 786.286v-402.286c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v402.286c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM438.857 786.286v-402.286c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v402.286c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM585.143 786.286v-402.286c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v402.286c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM274.286 219.429h256l-27.429-66.857c-1.714-2.286-6.857-5.714-9.714-6.286h-181.143c-3.429 0.571-8 4-9.714 6.286zM804.571 237.714v36.571c0 10.286-8 18.286-18.286 18.286h-54.857v541.714c0 62.857-41.143 116.571-91.429 116.571h-475.429c-50.286 0-91.429-51.429-91.429-114.286v-544h-54.857c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h176.571l40-95.429c11.429-28 45.714-50.857 76-50.857h182.857c30.286 0 64.571 22.857 76 50.857l40 95.429h176.571c10.286 0 18.286 8 18.286 18.286z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "trash"
+ ],
+ "defaultCode": 61944,
+ "grid": 14
+ },
+ {
+ "id": 460,
+ "paths": [
+ "M657.143 613.714v62.286c0 80.571-128.571 110.286-209.143 110.286-156.571 0-274.286-119.429-274.286-277.143 0-154.857 116.571-271.429 271.429-271.429 56.571 0 204.571 20 204.571 110.857v62.286c0 5.143-4 9.143-9.143 9.143h-67.429c-5.143 0-9.143-4-9.143-9.143v-40c0-36-69.143-52.571-116-52.571-106.857 0-181.143 77.143-181.143 188 0 114.857 77.714 198.857 185.714 198.857 41.143 0 118.857-15.429 118.857-51.429v-40c0-5.143 4-9.143 8.571-9.143h68c4.571 0 9.143 4 9.143 9.143zM438.857 146.286c-201.714 0-365.714 164-365.714 365.714s164 365.714 365.714 365.714 365.714-164 365.714-365.714-164-365.714-365.714-365.714zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857v0c242.286 0 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "copyright"
+ ],
+ "defaultCode": 61945,
+ "grid": 14
+ },
+ {
+ "id": 461,
+ "paths": [
+ "M555.429 442.857c0-82.286-42.857-131.429-114.857-131.429-94.857 0-196.571 94.286-196.571 246.857 0 85.143 42.286 133.714 116.571 133.714 114.857 0 194.857-131.429 194.857-249.143zM877.714 512c0 177.714-126.857 244.571-235.429 248-7.429 0-10.286 0.571-18.286 0.571-35.429 0-63.429-10.286-81.143-30.286-10.857-12.571-17.143-28.571-18.857-47.429-35.429 44.571-97.143 88-174.286 88-122.857 0-193.143-76-193.143-208.571 0-182.286 126.286-330.286 280.571-330.286 66.857 0 120.571 28.571 149.143 77.143l1.143-10.857 6.286-32c0.571-4.571 4.571-10.286 8.571-10.286h67.429c2.857 0 5.714 4 7.429 6.286 1.714 1.714 2.286 6.286 1.714 9.143l-68.571 350.857c-2.286 10.857-2.857 19.429-2.857 27.429 0 30.857 9.143 37.143 32.571 37.143 38.857-1.143 164.571-17.143 164.571-174.857 0-222.286-143.429-365.714-365.714-365.714-201.714 0-365.714 164-365.714 365.714s164 365.714 365.714 365.714c84 0 166.286-29.143 231.429-82.286 8-6.857 19.429-5.714 25.714 2.286l23.429 28c2.857 4 4.571 8.571 4 13.714-0.571 4.571-2.857 9.143-6.857 12.571-77.714 63.429-176.571 98.857-277.714 98.857-241.714 0-438.857-197.143-438.857-438.857s197.143-438.857 438.857-438.857c262.286 0 438.857 176.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "at"
+ ],
+ "defaultCode": 61946,
+ "grid": 14
+ },
+ {
+ "id": 462,
+ "paths": [
+ "M970.286 53.714c71.429 71.429 72 187.429 0 258.286l-128.571 127.429 59.429 59.429c7.429 7.429 7.429 18.857 0 26.286l-120 120c-7.429 7.429-18.857 7.429-26.286 0l-60-60-344.571 344.571c-13.714 13.714-32 21.143-51.429 21.143h-116l-146.286 73.143-36.571-36.571 73.143-146.286v-116c0-19.429 7.429-37.714 21.143-51.429l344.571-344.571-60-60c-7.429-7.429-7.429-18.857 0-26.286l120-120c7.429-7.429 18.857-7.429 26.286 0l59.429 59.429 127.429-128.571c70.857-72 186.857-71.429 258.286 0zM292.571 841.143l329.143-329.143-109.714-109.714-329.143 329.143v109.714h109.714z"
+ ],
+ "width": 1042.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "eyedropper"
+ ],
+ "defaultCode": 61947,
+ "grid": 14
+ },
+ {
+ "id": 463,
+ "paths": [
+ "M922.857 0c52 0 100 38.857 100 93.143 0 30.286-12 59.429-25.714 86.286-44.571 84.571-194.286 364-265.714 429.714-34.857 32.571-76 52-124.571 52-96.571 0-175.429-82.286-175.429-178.286 0-45.714 18.857-90.286 52.571-121.143l364.571-330.857c20-18.286 46.286-30.857 74.286-30.857zM403.429 590.857c29.714 57.714 84 101.143 146.857 117.714l0.571 40.571c3.429 162.857-109.714 274.857-273.143 274.857-193.714 0-277.714-154.286-277.714-329.714 21.143 14.286 94.857 73.143 118.857 73.143 14.286 0 26.286-8 31.429-21.143 48.571-126.857 124.571-149.714 253.143-155.429z"
+ ],
+ "width": 1022.8297142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "paint-brush"
+ ],
+ "defaultCode": 61948,
+ "grid": 14
+ },
+ {
+ "id": 464,
+ "paths": [
+ "M1024 804.571v219.429h-1024v-219.429c56 0 85.714-25.143 109.143-45.143 19.429-17.143 32.571-28 61.714-28s41.714 10.857 61.714 28c23.429 20 52.571 45.143 109.143 45.143 56 0 85.143-25.143 109.143-45.143 19.429-17.143 32-28 61.143-28s42.286 10.857 61.714 28c23.429 20 53.143 45.143 109.143 45.143s85.714-25.143 109.143-45.143c19.429-17.143 32.571-28 61.714-28 28.571 0 41.714 10.857 61.143 28 23.429 20 53.143 45.143 109.143 45.143zM1024 621.714v109.714c-29.143 0-41.714-10.857-61.714-28-23.429-20-52.571-45.143-108.571-45.143-56.571 0-85.714 25.143-109.143 45.143-20 17.143-32.571 28-61.714 28s-42.286-10.857-61.714-28c-23.429-20-52.571-45.143-109.143-45.143-56 0-85.143 25.143-109.143 45.143-19.429 17.143-32 28-61.143 28s-42.286-10.857-61.714-28c-23.429-20-53.143-45.143-109.143-45.143-56.571 0-85.714 25.143-109.143 45.143-19.429 17.143-32.571 28-61.714 28v-109.714c0-60.571 49.143-109.714 109.714-109.714h36.571v-256h146.286v256h146.286v-256h146.286v256h146.286v-256h146.286v256h36.571c60.571 0 109.714 49.143 109.714 109.714zM292.571 128c0 60.571-32.571 91.429-73.143 91.429s-73.143-32.571-73.143-73.143c0-70.857 73.143-52.571 73.143-146.286 27.429 0 73.143 67.429 73.143 128zM585.143 128c0 60.571-32.571 91.429-73.143 91.429s-73.143-32.571-73.143-73.143c0-70.857 73.143-52.571 73.143-146.286 27.429 0 73.143 67.429 73.143 128zM877.714 128c0 60.571-32.571 91.429-73.143 91.429s-73.143-32.571-73.143-73.143c0-70.857 73.143-52.571 73.143-146.286 27.429 0 73.143 67.429 73.143 128z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "birthday-cake"
+ ],
+ "defaultCode": 61949,
+ "grid": 14
+ },
+ {
+ "id": 465,
+ "paths": [
+ "M1170.286 877.714v73.143h-1170.286v-877.714h73.143v804.571h1097.143zM950.857 292.571l146.286 512h-950.857v-329.143l256-329.143 329.143 329.143z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "area-chart"
+ ],
+ "defaultCode": 61950,
+ "grid": 14
+ },
+ {
+ "id": 466,
+ "paths": [
+ "M438.857 508.571l312 312c-79.429 80.571-190.286 130.286-312 130.286-242.286 0-438.857-196.571-438.857-438.857s196.571-438.857 438.857-438.857v435.429zM545.714 512h441.714c0 121.714-49.714 232.571-130.286 312zM950.857 438.857h-438.857v-438.857c242.286 0 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 987.4285714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pie-chart"
+ ],
+ "defaultCode": 61952,
+ "grid": 14
+ },
+ {
+ "id": 467,
+ "paths": [
+ "M1170.286 877.714v73.143h-1170.286v-877.714h73.143v804.571h1097.143zM1097.143 164.571v248.571c0 16-19.429 24.571-31.429 12.571l-69.143-69.143-361.714 361.714c-7.429 7.429-18.857 7.429-26.286 0l-133.143-133.143-237.714 237.714-109.714-109.714 334.286-334.286c7.429-7.429 18.857-7.429 26.286 0l133.143 133.143 265.143-265.143-69.143-69.143c-12-12-3.429-31.429 12.571-31.429h248.571c10.286 0 18.286 8 18.286 18.286z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "line-chart"
+ ],
+ "defaultCode": 61953,
+ "grid": 14
+ },
+ {
+ "id": 468,
+ "paths": [
+ "M738.286 402.286c0 3.429 4.571 19.429 5.714 23.429 15.429 46.857 51.429 56.571 94.286 68.571 95.429 26.857 185.714 77.714 185.714 189.714 0 113.714-94.857 193.714-205.714 193.714-184 0-241.143-225.143-294.286-362.286-44-113.143-90.286-179.429-217.714-179.429-113.143 0-212.571 108.571-212.571 220 0 118.286 88.571 228 211.429 228 54.286 0 110.857-11.429 147.429-54.286v0c17.714-20 34.857-41.714 47.429-66.286l48 86.857c-6.286 14.286-15.429 28-25.143 40l0.571 0.571c-57.714 66.857-136.571 86.857-221.714 86.857-172.571 0-301.714-152.571-301.714-320.571 0-162.857 141.714-314.286 306.286-314.286 273.143 0 286.857 236.571 379.429 426.857 25.143 52.571 68 114.286 133.143 114.286 59.429 0 112-38.286 112-101.143 0-136-249.714-43.429-285.143-266.857-1.143-6.286-1.714-12.571-1.714-18.857 0-84.571 79.429-157.143 163.429-154.286 50.286 1.714 80.571 3.429 120.571 38.857h-0.571c15.429 14.286 26.857 33.714 38.857 50.286l-73.714 56.571c-8.571-16-16.571-29.143-30.857-40v-0.571c-13.714-12.571-38.286-12-55.429-12-37.143 0-68 28-68 66.286z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "lastfm"
+ ],
+ "defaultCode": 61954,
+ "grid": 14
+ },
+ {
+ "id": 469,
+ "paths": [
+ "M818.286 601.143c0-80.571-65.143-117.143-133.714-136.571-31.429-8.571-57.143-16-68.571-50.286-0.571-2.857-3.429-13.714-3.429-16 0-27.429 21.714-47.429 48.571-47.429 12.571 0 30.286-0.571 40.571 8.571h-0.571c10.857 8 16 17.143 22.286 29.143l53.143-40.571c-8.571-12-17.143-26.286-28-36.571v0c-26.857-24-52-28-87.429-28-60 0-116.571 49.143-116.571 111.429 0 4.571 0.571 8.571 1.143 13.143 12.571 77.714 52 101.714 121.714 121.714 34.286 9.714 82.857 25.143 83.429 67.429v2.857c0.571 45.714-37.714 73.143-80.571 73.143-46.857 0-77.143-44.571-95.429-82.286-66.286-136.571-76.571-307.429-273.143-307.429-118.286 0-224.571 109.143-220.571 226.286v0.571c4 122.286 88 230.286 217.143 230.286 61.143 0 118.286-14.286 159.429-62.857v0c6.857-9.143 13.143-18.857 17.714-29.143l-34.286-62.286c-32 60.571-71.429 86.857-140 86.857-90.286 0-152.571-80-152.571-166.286 0-79.429 73.143-156 153.143-156 91.429 0 124.571 47.429 156.571 129.143 38.286 98.286 79.429 260.571 212 260.571 79.429 0 148-57.714 148-139.429zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "lastfm-square"
+ ],
+ "defaultCode": 61955,
+ "grid": 14
+ },
+ {
+ "id": 470,
+ "paths": [
+ "M658.286 512c0-161.143-131.429-292.571-292.571-292.571s-292.571 131.429-292.571 292.571 131.429 292.571 292.571 292.571 292.571-131.429 292.571-292.571zM1097.143 512c0-161.143-131.429-292.571-292.571-292.571h-220.571c89.143 66.857 147.429 173.143 147.429 292.571s-58.286 225.714-147.429 292.571h220.571c161.143 0 292.571-131.429 292.571-292.571zM1170.286 512c0 201.714-164 365.714-365.714 365.714h-438.857c-201.714 0-365.714-164-365.714-365.714s164-365.714 365.714-365.714h438.857c201.714 0 365.714 164 365.714 365.714z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "toggle-off"
+ ],
+ "defaultCode": 61956,
+ "grid": 14
+ },
+ {
+ "id": 471,
+ "paths": [
+ "M0 512c0-201.714 164-365.714 365.714-365.714h438.857c201.714 0 365.714 164 365.714 365.714s-164 365.714-365.714 365.714h-438.857c-201.714 0-365.714-164-365.714-365.714zM804.571 804.571c161.143 0 292.571-131.429 292.571-292.571s-131.429-292.571-292.571-292.571-292.571 131.429-292.571 292.571 131.429 292.571 292.571 292.571z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "toggle-on"
+ ],
+ "defaultCode": 61957,
+ "grid": 14
+ },
+ {
+ "id": 472,
+ "paths": [
+ "M435.429 658.286h-179.429c-30.286 0-47.429-34.286-29.143-58.286l107.429-143.429c-24-11.429-50.286-17.714-78.286-17.714-100.571 0-182.857 82.286-182.857 182.857s82.286 182.857 182.857 182.857c88.571 0 162.286-62.857 179.429-146.286zM329.143 585.143h106.286c-6.857-32-21.714-61.143-42.857-84.571zM603.429 585.143l164.571-219.429h-274.286l-56.571 75.429c38.286 37.714 64 88 72 144h94.286zM1243.429 621.714c0-100.571-82.286-182.857-182.857-182.857-24.571 0-47.429 5.143-69.143 13.714l99.429 148.571c11.429 17.143 6.857 40-9.714 50.857-6.286 4.571-13.714 6.286-20.571 6.286-12 0-23.429-5.714-30.286-16.571l-99.429-148.571c-32.571 33.143-53.143 78.286-53.143 128.571 0 100.571 82.286 182.857 182.857 182.857s182.857-82.286 182.857-182.857zM1316.571 621.714c0 141.143-114.857 256-256 256s-256-114.857-256-256c0-75.429 33.143-143.429 85.143-190.286l-37.143-56-201.714 268c-6.857 9.714-17.714 14.857-29.143 14.857h-112.571c-17.714 124-124 219.429-253.143 219.429-141.143 0-256-114.857-256-256s114.857-256 256-256c44.571 0 86.286 11.429 122.857 31.429l78.286-104.571h-128c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571h219.429v73.143h248.571l-48.571-73.143h-126.857c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571h146.286c12 0 23.429 6.286 30.286 16l152.571 228.571c33.143-16 70.286-25.143 109.714-25.143 141.143 0 256 114.857 256 256z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bicycle"
+ ],
+ "defaultCode": 61958,
+ "grid": 14
+ },
+ {
+ "id": 473,
+ "paths": [
+ "M219.429 694.857c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM804.571 694.857c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM778.286 468.571l-41.143-219.429c-3.429-17.143-18.286-29.714-36-29.714h-524.571c-17.714 0-32.571 12.571-36 29.714l-41.143 219.429c-4 22.857 13.143 43.429 36 43.429h606.857c22.857 0 40-20.571 36-43.429zM649.143 118.857c0-15.429-12-27.429-27.429-27.429h-365.714c-14.857 0-27.429 12-27.429 27.429s12.571 27.429 27.429 27.429h365.714c15.429 0 27.429-12 27.429-27.429zM877.714 533.143v344.571h-73.143v73.143c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143v-73.143h-438.857v73.143c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143v-73.143h-73.143v-344.571c0-46.857 4-81.714 14.286-127.429l58.857-259.429c10.857-91.429 170.857-146.286 365.714-146.286s354.857 54.857 365.714 146.286l60 259.429c10.286 45.714 13.143 80.571 13.143 127.429z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bus"
+ ],
+ "defaultCode": 61959,
+ "grid": 14
+ },
+ {
+ "id": 474,
+ "paths": [
+ "M836 475.429c0 26.857-21.714 49.143-49.143 49.143h-401.143c-27.429 0-49.143-22.286-49.143-49.143s21.714-49.143 49.143-49.143h401.143c27.429 0 49.143 22.286 49.143 49.143zM958.286 475.429c0-33.714-4.571-65.714-13.143-97.143h-561.143c-27.429 0-49.143-21.714-49.143-48.571 0-27.429 21.714-49.143 49.143-49.143h518.857c-65.714-106.857-183.429-177.714-317.143-177.714-205.714 0-373.143 166.857-373.143 372.571 0 33.714 4.571 65.714 13.143 97.143h561.143c27.429 0 49.143 21.714 49.143 48.571 0 27.429-21.714 49.143-49.143 49.143h-518.857c65.714 106.857 183.429 177.714 317.714 177.714 205.143 0 372.571-166.857 372.571-372.571zM1170.286 329.714c0 26.857-21.714 48.571-49.143 48.571h-74.857c6.286 31.429 9.714 64 9.714 97.143 0 259.429-210.857 470.857-470.286 470.857-190.286 0-354.286-113.143-428.571-276h-108c-27.429 0-49.143-21.714-49.143-49.143 0-26.857 21.714-48.571 49.143-48.571h75.429c-6.286-31.429-9.714-64-9.714-97.143 0-259.429 210.857-470.857 470.857-470.857 189.714 0 353.714 113.143 428 276h107.429c27.429 0 49.143 21.714 49.143 49.143z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "ioxhost"
+ ],
+ "defaultCode": 61960,
+ "grid": 14
+ },
+ {
+ "id": 475,
+ "paths": [
+ "M544.571 216l-65.143 187.429 66.857 12c17.143-46.857 94.286-257.714 94.286-296 0-14.286-4.571-32-21.714-32-32 0-66.286 104-74.286 128.571zM373.714 608.571c6.286 16.571 13.143 33.143 18.857 50.286 12.571-14.286 25.714-27.429 40.571-38.286-20-4-40-5.714-59.429-12zM206.857 96.571c0 58.286 69.143 240 90.857 297.714 8-4.571 18.286-5.714 28-5.714 13.714 0 29.143 1.714 42.857 2.857l-69.143-200.571c-7.429-21.714-40.571-125.714-70.286-125.714-15.429 0-22.286 18.286-22.286 31.429zM161.714 530.286c0 41.714 112 195.429 153.714 195.429 11.429 0 21.143-12.571 21.143-22.857 0-13.143-13.143-45.714-18.286-58.286-14.857-38.286-69.143-156.571-116-156.571-15.429 0-40.571 26.857-40.571 42.286zM71.429 721.714c0 20.571 6.857 40.571 14.286 59.429 45.143 111.429 146.857 176.571 265.714 176.571 86.857 0 160-33.143 218.286-97.143 61.714-68.571 86.857-153.143 86.857-244 0-32 0.571-82.857-24.571-105.714-48-42.286-210.857-58.286-275.429-58.286-8 0-21.714 0.571-28 6.286-6.857 2.857-6.857 13.714-6.857 20 0 87.429 184.571 79.429 240 79.429 10.857 0 16 2.857 22.857 10.857 7.429 9.143 9.714 20 10.857 31.429-14.857 14.857-35.429 23.429-54.857 30.857-18.857 6.857-37.143 14.286-53.143 26.286-44 32-87.429 86.857-87.429 143.429 0 35.429 21.143 65.714 21.143 100.571 0 0.571-4 13.143-4 14.857-65.143-4.571-81.143-69.143-83.429-123.429-6.857 1.714-16 1.143-23.429 1.143 1.143 4 1.143 8 1.143 12 0 41.714-37.143 72-77.143 72-61.714 0-143.429-72.571-143.429-135.429 0-17.143 7.429-26.857 18.857-38.286 11.429 14.286 23.429 28.571 34.286 43.429 16.571 22.286 45.143 59.429 76 59.429 8 0 23.429-6.857 23.429-16.571 0-25.714-93.714-146.286-116.571-146.286-36 0-55.429 47.429-55.429 77.143zM6.286 726.857c0-74.286 28.571-123.429 102.286-143.429-6.286-16.571-16-41.714-16-59.429 0-46.857 57.714-105.143 104.571-105.143 13.714 0 27.429 4 40 8.571-24-68-93.143-259.429-93.143-324 0-57.714 29.143-103.429 91.429-103.429 80 0 170.857 288 190.286 345.143 25.143-62.857 104-326.286 193.143-326.286 56 0 87.429 44.571 87.429 97.714 0 60.571-67.429 249.143-90.857 314.286 96 23.429 109.714 101.143 109.714 187.429 0 228.571-145.714 405.714-381.714 405.714-43.429 0-86.286-8.571-127.429-24-108.571-41.143-209.714-152.571-209.714-273.143z"
+ ],
+ "width": 731.4285714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "angellist"
+ ],
+ "defaultCode": 61961,
+ "grid": 14
+ },
+ {
+ "id": 476,
+ "paths": [
+ "M448.571 576h118.286c-10.857 120.571-80 193.714-178.857 193.714-123.429 0-198.286-94.857-198.286-246.857 0-150.857 82.286-245.143 186.286-245.143 114.286 0 178.286 70.857 188 190.857h-116c-4-48.571-28-76.571-66.857-76.571-42.857 0-68.571 45.714-68.571 136 0 65.714 11.429 127.429 73.714 127.429 39.429 0 57.714-34.286 62.286-79.429zM855.429 576h117.714c-10.857 120.571-79.429 193.714-178.286 193.714-123.429 0-198.286-94.857-198.286-246.857 0-150.857 82.286-245.143 186.286-245.143 114.286 0 178.286 70.857 188 190.857h-116.571c-3.429-48.571-28-76.571-66.286-76.571-42.857 0-68.571 45.714-68.571 136 0 65.714 10.857 127.429 73.143 127.429 39.429 0 58.286-34.286 62.857-79.429zM1060.571 508c0-153.143-8-219.429-43.429-267.429-7.429-9.714-19.429-16-29.143-22.857-36-26.286-203.429-36-398.286-36s-370.286 9.714-405.714 36c-10.286 7.429-22.857 13.143-30.286 22.857-35.429 47.429-42.857 114.286-42.857 267.429 0 153.714 8 220 42.857 267.429 8 10.857 20 15.429 30.286 23.429 35.429 26.286 210.857 37.143 405.714 37.143s362.286-10.286 398.286-37.143c9.714-7.429 22.286-12 29.143-23.429 36-46.857 43.429-113.714 43.429-267.429zM1170.286 73.143v877.714h-1170.286v-877.714h1170.286z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cc"
+ ],
+ "defaultCode": 61962,
+ "grid": 14
+ },
+ {
+ "id": 477,
+ "paths": [
+ "M566.857 356.571v283.429c0 10.286-8 18.286-18.286 18.286h-91.429c-10.286 0-18.286-8-18.286-18.286v-283.429c0-85.714-69.714-155.429-155.429-155.429h-155.429v658.286c0 10.286-8 18.286-18.286 18.286h-91.429c-10.286 0-18.286-8-18.286-18.286v-768c0-10.286 8-18.286 18.286-18.286h265.143c156.571 0 283.429 126.857 283.429 283.429zM786.286 91.429v502.857c0 156.571-126.857 283.429-283.429 283.429h-265.143c-10.286 0-18.286-8-18.286-18.286v-548.571c0-10.286 8-18.286 18.286-18.286h91.429c10.286 0 18.286 8 18.286 18.286v438.857h155.429c85.714 0 155.429-69.714 155.429-155.429v-502.857c0-10.286 8-18.286 18.286-18.286h91.429c10.286 0 18.286 8 18.286 18.286z"
+ ],
+ "width": 786.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "ils",
+ "shekel",
+ "sheqel"
+ ],
+ "defaultCode": 61963,
+ "grid": 14
+ },
+ {
+ "id": 478,
+ "paths": [
+ "M749.143 481.143v65.143c0 18.286-10.857 29.714-29.143 29.714h-115.429c-18.286 0-29.714-11.429-29.714-29.714v-65.143c0-18.286 11.429-29.714 29.714-29.714h115.429c18.286 0 29.143 11.429 29.143 29.714zM469.143 612.571v-142.857c0-40.571-26.857-67.429-67.429-67.429h-76c-25.714 0-44.571 10.857-54.857 29.714-10.286-18.857-29.143-29.714-54.857-29.714h-74.286c-40 0-67.429 26.857-67.429 67.429v142.857c0 8.571 4 12.571 12 12.571h31.429c8.571 0 12.571-4 12.571-12.571v-131.429c0-18.286 10.857-29.714 29.714-29.714h53.714c18.286 0 29.714 11.429 29.714 29.714v131.429c0 8.571 3.429 12.571 12 12.571h30.857c8.571 0 12.571-4 12.571-12.571v-131.429c0-18.286 11.429-29.714 29.714-29.714h55.429c18.286 0 29.143 11.429 29.143 29.714v131.429c0 8.571 4 12.571 12.571 12.571h31.429c8 0 12-4 12-12.571zM805.714 557.714v-88c0-40.571-27.429-67.429-68-67.429h-150.857c-40.571 0-68 26.857-68 67.429v234.286c0 8.571 4.571 12 12.571 12h31.429c8.571 0 12-3.429 12-12v-102.857c10.857 14.857 28 24 53.714 24h109.143c40.571 0 68-27.429 68-67.429zM877.714 205.714v612.571c0 73.143-59.429 132.571-132.571 132.571h-612.571c-73.143 0-132.571-59.429-132.571-132.571v-612.571c0-73.143 59.429-132.571 132.571-132.571h612.571c73.143 0 132.571 59.429 132.571 132.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "meanpath"
+ ],
+ "defaultCode": 61964,
+ "grid": 14
+ },
+ {
+ "id": 479,
+ "paths": [
+ "M522.857 620.571h-168l84-314.857zM572 804.571h177.714l-185.143-585.143h-251.429l-185.143 585.143h177.714l218.857-179.429zM877.714 237.714v548.571c0 90.286-74.286 164.571-164.571 164.571h-548.571c-90.286 0-164.571-74.286-164.571-164.571v-548.571c0-90.286 74.286-164.571 164.571-164.571h548.571c90.286 0 164.571 74.286 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "buysellads"
+ ],
+ "defaultCode": 61965,
+ "grid": 14
+ },
+ {
+ "id": 480,
+ "paths": [
+ "M1170.286 511.429c0 16-11.429 29.143-26.286 32l-117.143 203.429c1.143 3.429 1.714 6.857 1.714 10.286 0 15.429-10.857 28.571-25.714 31.429l-110.286 192.571c1.143 2.857 1.714 5.714 1.714 9.143 0 17.714-14.286 32.571-32.571 32.571-9.143 0-17.714-4-23.429-10.286h-228.571c-5.714 6.857-14.857 11.429-24.571 11.429s-18.857-4.571-24.571-11.429h-228c-5.714 6.857-14.286 11.429-24.571 11.429-17.714 0-32.571-14.286-32.571-32.571 0-4 1.143-8 2.286-11.429l-110.286-191.429c-14.857-2.857-25.714-16-25.714-31.429 0-4 0.571-6.857 1.714-10.286l-117.714-203.429c-14.857-3.429-25.714-16.571-25.714-32 0-16 11.429-29.143 26.857-32l113.714-196.571c0-1.143-0.571-2.286-0.571-3.429 0-13.143 8-24 19.429-29.143l119.429-207.429c-1.143-2.857-2.286-6.857-2.286-10.286 0-18.286 14.857-32.571 32.571-32.571 10.286 0 18.857 4.571 25.143 12h226.286c5.714-7.429 14.286-12 24.571-12s18.857 4.571 24.571 12h227.429c6.286-7.429 14.857-12 25.143-12 17.714 0 32.571 14.286 32.571 32.571 0 3.429-1.143 6.857-2.286 10.286l118.286 204.571c17.143 0.571 31.429 14.857 31.429 32 0 5.714-1.714 10.857-4 15.429l106.857 185.143c14.286 2.857 25.143 16 25.143 31.429zM607.429 968h222.286l-195.429-202.286h-81.714l-195.429 202.286h205.714c5.714-5.143 13.714-9.143 22.286-9.143s16.571 4 22.286 9.143zM64 504c0.571 2.286 0.571 4.571 0.571 7.429s0 5.714-1.143 8.571l118.857 205.714c2.857 0.571 5.714 2.286 8.571 3.429l107.429-113.714v-198.286l-106.857-110.857c-5.143 3.429-10.857 5.143-16.571 5.714zM563.429 56h-221.714l108.571 114.286 316.571-114.286h-160c-5.714 5.714-13.143 9.143-21.714 9.143s-16-3.429-21.714-9.143zM965.143 748.571c0.571-2.286 1.714-4.571 2.857-6.286l-36.571-38.857-9.714 45.143h43.429zM904.571 748.571l12.571-60-144-152-169.143 175.429 36 36.571h264.571zM854.286 958.857l9.143-16 37.143-177.143h-244l190.286 196c2.286-1.143 4.571-2.286 7.429-2.857zM330.286 968h2.857l195.429-202.286h-213.143v191.429l2.286 3.429c5.143 1.714 9.143 4 12.571 7.429zM315.429 748.571h229.714l36.571-37.714-176.571-183.429-89.714 94.857v126.286zM205.143 748.571h93.143v-108l-96 101.143c1.143 2.286 2.286 4.571 2.857 6.857zM204.571 277.143c0 0.571 0.571 1.714 0.571 2.286 0 6.286-1.714 12-4.571 16.571l97.714 101.143v-153.714zM315.429 237.143v177.714l87.429 89.714 169.714-179.429-127.429-134.857zM317.714 63.429l-2.286 4.571v150.857l117.143-42.286-109.143-114.857c-1.714 0.571-3.429 1.143-5.714 1.714zM826.857 56h-9.143l-354.857 128 121.714 128.571zM584.571 337.143l-169.714 180 177.714 182.286 169.143-175.429zM393.143 515.429l-77.714-80.571v162.286zM593.143 723.429l-24 25.143h48.571zM785.143 524.571l136 143.429 75.429-356.571-1.714-2.857-0.571-0.571zM981.714 296c-2.857-4.571-4.571-10.286-4.571-16.571v-1.143l-123.429-214.857c-2.857-0.571-5.143-1.714-7.429-2.857l-249.714 264.571 177.143 186.857zM298.286 225.143v-127.429l-93.143 161.143zM298.286 765.714h-93.143l93.143 161.714v-161.714zM918.286 765.714l-27.429 129.714 74.286-129.714h-46.857zM988 725.714l118.286-206.286c-0.571-2.857-1.143-5.143-1.143-8 0-3.429 1.143-6.286 1.714-9.143l-97.714-169.143-73.714 349.714 44 46.857c2.857-1.714 5.714-2.857 8.571-4z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "connectdevelop"
+ ],
+ "defaultCode": 61966,
+ "grid": 14
+ },
+ {
+ "id": 481,
+ "paths": [
+ "M0 388.571c0-98.857 78.857-184 179.429-184h424l201.143-204.571v840c0 99.429-78.857 184-179.429 184h-445.714c-100.571 0-179.429-84.571-179.429-184v-451.429zM704 819.429l-100.571-102.857v-242.857c0-34.857-28-64-62.857-64h-276.571c-34.857 0-62.857 29.143-62.857 64v281.143c0 34.857 28 64.571 62.857 64.571h440z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "dashcube"
+ ],
+ "defaultCode": 61968,
+ "grid": 14
+ },
+ {
+ "id": 482,
+ "paths": [
+ "M533.714 85.714c-241.714 92-432 285.143-522.286 527.429-7.429-33.143-11.429-66.857-11.429-100.571 0-241.714 195.429-437.714 437.143-437.714 32.571 0 65.143 4 96.571 10.857zM687.429 153.714c35.429 24.571 66.857 54.286 93.714 88.571-296 86.286-527.429 318.857-612 615.429-33.714-26.286-64-57.143-88.571-92.571 85.143-293.714 313.714-524.571 606.857-611.429zM268.571 916c88-271.429 300.571-485.143 570.857-574.857 15.429 35.429 25.714 73.143 30.857 111.429-222.857 91.429-400 269.714-490.857 493.143-38.286-5.143-75.429-14.857-110.857-29.714zM877.714 949.143c-70.857-18.286-141.143-40-209.714-65.714-50.286 31.429-106.857 52.571-165.714 61.143 83.429-156 212-285.143 367.429-369.143-8 57.143-28 113.143-57.714 162.286 25.714 69.143 47.429 140 65.714 211.429z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "forumbee"
+ ],
+ "defaultCode": 61969,
+ "grid": 14
+ },
+ {
+ "id": 483,
+ "paths": [
+ "M1081.714 224l88.571 726.857c-53.143 0-98.857-10.857-146.857-32.571-71.429-32.571-145.714-52-224.571-52-81.143 0-156 26.857-213.714 84.571-57.714-57.714-132.571-84.571-213.714-84.571-78.857 0-153.143 19.429-224.571 52-46.286 20.571-93.143 32.571-144 32.571h-2.857l88.571-726.857c81.714-46.286 181.143-72.571 275.429-72.571 77.143 0 156.571 16 221.143 60.571 64.571-44.571 144-60.571 221.143-60.571 94.286 0 193.714 26.286 275.429 72.571zM798.857 788c108.571 0 182.857 29.143 281.143 69.714l-70.857-583.429c-64-29.143-140-44.571-210.286-44.571-80 0-154.857 25.143-213.714 80.571-58.857-55.429-133.714-80.571-213.714-80.571-70.286 0-146.286 15.429-210.286 44.571l-70.857 583.429c98.286-40.571 172.571-69.714 281.143-69.714 78.286 0 147.429 20 213.714 61.714 66.286-41.714 135.429-61.714 213.714-61.714zM821.714 768.571l-31.429-518.286c-82.286 1.714-147.429 29.714-205.143 88.571-60-61.143-128-88.571-213.714-88.571-64 0-132.571 13.143-192 37.714l-65.143 537.714c86.286-35.429 162.286-57.714 257.143-57.714 75.429 0 149.143 18.286 213.714 58.286 64.571-40 138.286-60 213.714-58.286z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "leanpub"
+ ],
+ "defaultCode": 61970,
+ "grid": 14
+ },
+ {
+ "id": 484,
+ "paths": [
+ "M857.143 783.429v-418.857c0-16-13.143-29.143-28.571-29.143h-53.143c-15.429 0-28.571 13.143-28.571 29.143v418.857c0 15.429 13.143 28.571 28.571 28.571h53.143c15.429 0 28.571-13.143 28.571-28.571zM694.857 783.429v-303.429c0-15.429-13.143-28.571-28.571-28.571h-57.714c-15.429 0-28.571 13.143-28.571 28.571v303.429c0 15.429 13.143 28.571 28.571 28.571h57.714c15.429 0 28.571-13.143 28.571-28.571zM528 783.429v-245.143c0-15.429-13.143-28.571-28.571-28.571h-57.714c-15.429 0-28.571 13.143-28.571 28.571v245.143c0 15.429 13.143 28.571 28.571 28.571h57.714c15.429 0 28.571-13.143 28.571-28.571zM361.143 783.429v-206.857c0-15.429-13.143-28.571-28.571-28.571h-57.714c-15.429 0-28.571 13.143-28.571 28.571v206.857c0 15.429 13.143 28.571 28.571 28.571h57.714c15.429 0 28.571-13.143 28.571-28.571zM1170.286 700c0 126.857-103.429 229.714-229.714 229.714h-710.857c-126.286 0-229.714-102.857-229.714-229.714 0-88.571 52-169.714 132-207.429-4-13.714-5.714-28-5.714-41.714 0-86.286 70.286-156.571 156.571-156.571 37.714 0 74.286 13.714 102.857 38.286 34.286-139.429 160-238.286 304-238.286 172.571 0 313.143 140.571 313.143 313.143 0 23.429-2.286 46.857-8 69.714 102.857 25.143 175.429 117.714 175.429 222.857z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sellsy"
+ ],
+ "defaultCode": 61971,
+ "grid": 14
+ },
+ {
+ "id": 485,
+ "paths": [
+ "M0 0h877.714v795.429l-443.429 193.143-434.286-193.143v-795.429zM820.571 758.286v-529.143h-763.429v529.143l377.714 168zM820.571 172v-114.857h-763.429v114.857h763.429zM103.429 342.286v65.714h-21.143v-65.714h21.143zM103.429 426.857v65.714h-21.143v-65.714h21.143zM103.429 511.429v65.714h-21.143v-65.714h21.143zM103.429 596v65.714h-21.143v-65.714h21.143zM103.429 680.571v65.714h-21.143v-65.714h21.143zM118.286 762.286l8.571-19.429 60 26.857-8.571 18.857zM196 796.571l8.571-19.429 60 26.286-8.571 19.429zM273.143 830.857l8.571-19.429 60 26.286-8.571 19.429zM350.857 864.571l8.571-18.857 59.429 26.286-8.571 19.429zM455.429 872l60-26.286 8.571 18.857-60 26.857zM532.571 837.714l60-26.286 8.571 19.429-60 26.286zM610.286 803.429l60-26.286 8.571 19.429-60 26.286zM687.429 769.714l60-26.857 8.571 19.429-60 26.286zM148 84v20.571h-65.143v-20.571h65.143zM240.571 84v20.571h-65.714v-20.571h65.714zM333.143 84v20.571h-65.714v-20.571h65.714zM425.143 84v20.571h-65.143v-20.571h65.143zM517.714 84v20.571h-65.143v-20.571h65.143zM610.286 84v20.571h-65.714v-20.571h65.714zM702.857 84v20.571h-65.714v-20.571h65.714zM794.857 84v20.571h-65.143v-20.571h65.143zM103.429 278.286v45.143h-21.143v-65.714h65.714v20.571h-44.571zM240.571 257.714v20.571h-65.714v-20.571h65.714zM333.143 257.714v20.571h-65.714v-20.571h65.714zM425.143 257.714v20.571h-65.143v-20.571h65.143zM517.714 257.714v20.571h-65.143v-20.571h65.143zM610.286 257.714v20.571h-65.714v-20.571h65.714zM702.857 257.714v20.571h-65.714v-20.571h65.714zM774.286 323.429v-45.143h-44.571v-20.571h65.714v65.714h-21.143zM774.286 408v-65.714h21.143v65.714h-21.143zM774.286 492.571v-65.714h21.143v65.714h-21.143zM774.286 577.143v-65.714h21.143v65.714h-21.143zM774.286 661.714v-65.714h21.143v65.714h-21.143zM774.286 746.286v-65.714h21.143v65.714h-21.143zM434.286 726.286c-98.286 0-178.857-80-178.857-178.857 0-98.286 80.571-178.857 178.857-178.857 98.857 0 178.857 80.571 178.857 178.857 0 98.857-80 178.857-178.857 178.857zM340 508.571c0 86.857 152 23.429 152 74.286 0 25.714-46.857 28-64 28-24 0-58.286-5.143-70.286-29.143h-1.714l-17.714 36c29.143 18.286 57.143 24 92.571 24 38.286 0 100-11.429 100-61.143 0-94.286-153.714-32-153.714-74.286 0-25.714 40.571-29.143 58.286-29.143 21.143 0 57.143 6.286 69.714 25.714h1.714l17.143-33.143c-29.714-12-53.714-23.429-86.857-23.429-39.429 0-97.143 12.571-97.143 62.286z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "shirtsinbulk"
+ ],
+ "defaultCode": 61972,
+ "grid": 14
+ },
+ {
+ "id": 486,
+ "paths": [
+ "M493.143 589.714c0-85.714-69.143-154.857-154.857-154.857-85.143 0-154.286 69.143-154.286 154.857 0 85.143 69.143 154.286 154.286 154.286 85.714 0 154.857-69.143 154.857-154.286zM986.286 589.143c0-85.143-69.143-154.286-154.286-154.286-85.714 0-154.857 69.143-154.857 154.286 0 85.714 69.143 154.857 154.857 154.857 85.143 0 154.286-69.143 154.286-154.857zM1170.286 126.857v770.286c0 33.714-27.429 61.143-61.714 61.143h-1046.857c-34.286 0-61.714-27.429-61.714-61.143v-770.286c0-33.714 27.429-61.143 61.714-61.143h246.286c33.714 0 61.714 27.429 61.714 61.143v92h430.857v-92c0-33.714 28-61.143 61.714-61.143h246.286c34.286 0 61.714 27.429 61.714 61.143z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "simplybuilt"
+ ],
+ "defaultCode": 61973,
+ "grid": 14
+ },
+ {
+ "id": 487,
+ "paths": [
+ "M817.143 333.143c0 0-0.571-0.571 0 0v0zM965.714 449.714c110.857 0 204.571 82.857 204.571 196 0 120.571-96 209.143-214.857 209.143-303.429 0-359.429-456.571-657.714-456.571-115.429 0-199.429 73.714-199.429 192 0 122.286 91.429 196 209.714 196 77.714 0 166.286-32.571 229.143-77.714 10.286-7.429 30.857-29.714 41.714-29.714s20 9.143 20 20c0 14.286-24 34.857-34.286 44-74.857 65.143-183.429 112-282.857 112-152.571 0-281.714-108-281.714-265.143s123.429-272.571 279.429-272.571c338.857 0 406.857 449.714 661.714 449.714 76.571 0 134.286-49.714 134.286-128 0-72.571-56-127.429-128-127.429-32 0-64 21.143-85.714 21.143-15.429 0-29.143-13.143-29.143-28.571 0-21.143 9.714-43.429 9.714-66.286 0-121.714-93.143-209.714-213.714-209.714-97.143 0-146.286 67.429-162.286 67.429-11.429 0-20.571-9.143-20.571-20.571 0-10.286 7.429-18.857 14.286-26.286 46.286-52.571 118.286-80 188-80 145.143 0 254.286 106.857 254.286 252 0 12.571-0.571 25.143-2.286 37.714 21.714-5.714 44-8.571 65.714-8.571z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "skyatlas"
+ ],
+ "defaultCode": 61974,
+ "grid": 14
+ },
+ {
+ "id": 488,
+ "paths": [
+ "M694.857 402.286c0-20-16.571-36.571-36.571-36.571h-73.143v-73.143c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571v73.143h-73.143c-20 0-36.571 16.571-36.571 36.571s16.571 36.571 36.571 36.571h73.143v73.143c0 20 16.571 36.571 36.571 36.571s36.571-16.571 36.571-36.571v-73.143h73.143c20 0 36.571-16.571 36.571-36.571zM365.714 877.714c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM877.714 877.714c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM950.857 256v292.571c0 18.286-13.714 34.286-32.571 36.571l-596.571 69.714c2.286 12.571 7.429 26.857 7.429 40s-8 25.143-13.714 36.571h525.714c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571h-585.143c-20 0-36.571-16.571-36.571-36.571 0-17.714 26.857-61.714 34.857-78.286l-101.143-470.286h-116.571c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571h146.286c38.857 0 39.429 45.714 45.143 73.143h686.286c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cart-plus"
+ ],
+ "defaultCode": 61975,
+ "grid": 14
+ },
+ {
+ "id": 489,
+ "paths": [
+ "M731.429 402.286c0-20-16.571-36.571-36.571-36.571-9.714 0-18.857 4-25.714 10.857l-84 83.429v-167.429c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571v167.429l-84-83.429c-6.857-6.857-16-10.857-25.714-10.857-20 0-36.571 16.571-36.571 36.571 0 9.714 4 18.857 10.857 25.714l146.286 146.286c6.857 6.857 16 10.857 25.714 10.857s18.857-4 25.714-10.857l146.286-146.286c6.857-6.857 10.857-16 10.857-25.714zM365.714 877.714c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM877.714 877.714c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM950.857 256v292.571c0 18.286-13.714 34.286-32.571 36.571l-596.571 69.714c2.286 12.571 7.429 26.857 7.429 40s-8 25.143-13.714 36.571h525.714c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571h-585.143c-20 0-36.571-16.571-36.571-36.571 0-17.714 26.857-61.714 34.857-78.286l-101.143-470.286h-116.571c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571h146.286c38.857 0 39.429 45.714 45.143 73.143h686.286c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cart-arrow-down"
+ ],
+ "defaultCode": 61976,
+ "grid": 14
+ },
+ {
+ "id": 490,
+ "paths": [
+ "M121.143 438.857l356 380-171.429-380h-184.571zM585.143 880l199.429-441.143h-398.857zM307.429 365.714l116.571-219.429h-149.714l-164.571 219.429h197.714zM693.143 818.857l356-380h-184.571zM390.286 365.714h389.714l-116.571-219.429h-156.571zM862.857 365.714h197.714l-164.571-219.429h-149.714zM943.429 88l219.429 292.571c10.857 13.714 9.714 33.714-2.286 46.857l-548.571 585.143c-6.857 7.429-16.571 11.429-26.857 11.429s-20-4-26.857-11.429l-548.571-585.143c-12-13.143-13.143-33.143-2.286-46.857l219.429-292.571c6.857-9.714 17.714-14.857 29.143-14.857h658.286c11.429 0 22.286 5.143 29.143 14.857z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "diamond"
+ ],
+ "defaultCode": 61977,
+ "grid": 14
+ },
+ {
+ "id": 491,
+ "paths": [
+ "M1034.857 888.571c14.286-14.286 37.143-14.286 51.429 0l73.143 73.143-51.429 51.429-47.429-47.429-47.429 47.429c-6.857 7.429-16.571 10.857-25.714 10.857s-18.857-3.429-25.714-10.857l-47.429-47.429-47.429 47.429c-14.286 14.286-37.143 14.286-51.429 0l-47.429-47.429-47.429 47.429c-14.286 14.286-37.143 14.286-51.429 0l-47.429-47.429-47.429 47.429c-14.286 14.286-37.143 14.286-51.429 0l-47.429-47.429-47.429 47.429c-14.286 14.286-37.143 14.286-51.429 0l-47.429-47.429-47.429 47.429c-14.286 14.286-37.143 14.286-51.429 0l-47.429-47.429-47.429 47.429c-14.286 14.286-37.143 14.286-51.429 0l-73.143-73.143 51.429-51.429 47.429 47.429 47.429-47.429c14.286-14.286 37.143-14.286 51.429 0l47.429 47.429 47.429-47.429c14.286-14.286 37.143-14.286 51.429 0l47.429 47.429 47.429-47.429c14.286-14.286 37.143-14.286 51.429 0l47.429 47.429 47.429-47.429c14.286-14.286 37.143-14.286 51.429 0l47.429 47.429 47.429-47.429c14.286-14.286 37.143-14.286 51.429 0l47.429 47.429 47.429-47.429c14.286-14.286 37.143-14.286 51.429 0l47.429 47.429zM135.429 866.857c-14.286 14.286-37.143 14.286-51.429 0l-73.143-73.143 51.429-51.429 47.429 46.857 47.429-46.857c14.286-14.286 37.143-14.286 51.429 0l47.429 46.857 36.571-36.571v-167.429l-120-179.429c-13.143-20-4-47.429 18.857-55.429l101.143-33.143v-170.857h73.143v-73.143h146.286v-73.143h146.286v73.143h146.286v73.143h73.143v170.857l101.143 33.143c22.857 8 32 35.429 18.857 55.429l-120 179.429v167.429l10.857-10.286c14.286-14.286 37.143-14.286 51.429 0l47.429 46.857 47.429-46.857c14.286-14.286 37.143-14.286 51.429 0l73.143 73.143-51.429 51.429-47.429-47.429-47.429 47.429c-6.857 7.429-16.571 10.857-25.714 10.857s-18.857-3.429-25.714-10.857l-47.429-47.429-47.429 47.429c-14.286 14.286-37.143 14.286-51.429 0l-47.429-47.429-47.429 47.429c-14.286 14.286-37.143 14.286-51.429 0l-47.429-47.429-47.429 47.429c-14.286 14.286-37.143 14.286-51.429 0l-47.429-47.429-47.429 47.429c-14.286 14.286-37.143 14.286-51.429 0l-47.429-47.429-47.429 47.429c-14.286 14.286-37.143 14.286-51.429 0l-47.429-47.429zM365.714 219.429v73.143l219.429-73.143 219.429 73.143v-73.143h-73.143v-73.143h-292.571v73.143h-73.143z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "ship"
+ ],
+ "defaultCode": 61978,
+ "grid": 14
+ },
+ {
+ "id": 492,
+ "paths": [
+ "M329.143 877.714l54.857-256-54.857-73.143-73.143-36.571zM475.429 877.714l73.143-365.714-73.143 36.571-54.857 73.143zM566.857 300.571c-0.571-1.143-1.143-2.286-2.286-3.429-5.143-4-46.286-4.571-54.857-4.571-32.571 0-63.429 4.571-95.429 10.857-4 1.143-8 1.143-12 1.143s-8 0-12-1.143c-32-6.286-62.857-10.857-95.429-10.857-8.571 0-49.714 0.571-54.857 4.571-1.143 1.143-1.714 2.286-2.286 3.429 0.571 5.143 1.143 10.286 2.286 15.429 3.429 4.571 6.286 2.857 8.571 9.714 14.857 40.571 21.714 72 73.143 72 73.714 0 53.143-68 77.143-68h6.857c24 0 3.429 68 77.143 68 51.429 0 58.286-31.429 73.143-72 2.286-6.857 5.143-5.143 8.571-9.714 1.143-5.143 1.714-10.286 2.286-15.429zM804.571 802.857c0 93.143-61.143 148-152.571 148h-499.429c-91.429 0-152.571-54.857-152.571-148 0-103.429 18.286-260 124.571-311.429l-51.429-125.714h122.286c-8-23.429-12.571-48-12.571-73.143 0-6.286 0.571-12.571 1.143-18.286-22.286-4.571-110.857-22.857-110.857-54.857 0-33.714 97.143-52 120-56.571 12-42.857 40.571-108 69.714-141.714 11.429-13.143 25.714-21.143 43.429-21.143 34.286 0 61.714 35.429 96 35.429s61.714-35.429 96-35.429c17.714 0 32 8 43.429 21.143 29.143 33.714 57.714 98.857 69.714 141.714 22.857 4.571 120 22.857 120 56.571 0 32-88.571 50.286-110.857 54.857 2.857 30.857-1.143 61.714-11.429 91.429h122.286l-46.857 128.571c102.286 53.143 120 206.857 120 308.571z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "user-secret"
+ ],
+ "defaultCode": 61979,
+ "grid": 14
+ },
+ {
+ "id": 493,
+ "paths": [
+ "M1314.857 592c18.286 160.571-112.571 295.429-272 285.143-122.286-8-224-105.714-236.571-228-9.143-86.857 25.143-165.143 83.429-217.714l-40.571-61.143c-72 60-117.714 149.714-117.714 250.286 0 20.571-16 37.714-36.571 37.714h-185.714c-17.714 124-124 219.429-253.143 219.429-141.143 0-256-114.857-256-256s114.857-256 256-256c30.286 0 59.429 5.714 86.857 15.429l13.714-25.714c-44-39.429-101.714-62.857-173.714-62.857h-36.571c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571h73.143c128 0 193.143 52.571 219.429 73.143h358.286l-48.571-73.143h-126.857c-22.286 0-40-20-36-42.857 2.857-17.714 20-30.286 37.714-30.286h144.571c12 0 23.429 6.286 30.286 16l40 60 65.143-65.143c6.857-6.857 16.571-10.857 26.286-10.857h57.714c20 0 36.571 16.571 36.571 36.571v73.143c0 20-16.571 36.571-36.571 36.571h-102.286l65.714 98.286c46.286-22.286 100-31.429 157.143-20.571 109.143 20 194.286 111.429 206.857 221.714zM256 804.571c88.571 0 162.286-62.857 179.429-146.286h-179.429c-12.571 0-24.571-6.857-31.429-17.714-6.286-10.857-6.857-24.571-0.571-36l84-158.286c-16.571-4.571-33.714-7.429-52-7.429-100.571 0-182.857 82.286-182.857 182.857s82.286 182.857 182.857 182.857zM1060.571 804.571c100.571 0 182.857-82.286 182.857-182.857s-82.286-182.857-182.857-182.857c-24.571 0-47.429 5.143-69.143 13.714l99.429 148.571c11.429 17.143 6.857 40-9.714 50.857-6.286 4.571-13.714 6.286-20.571 6.286-12 0-23.429-5.714-30.286-16.571l-99.429-148.571c-32.571 33.143-53.143 78.286-53.143 128.571 0 100.571 82.286 182.857 182.857 182.857z"
+ ],
+ "width": 1333.174857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "motorcycle"
+ ],
+ "defaultCode": 61980,
+ "grid": 14
+ },
+ {
+ "id": 494,
+ "paths": [
+ "M804.571 877.714c0 100.571-208.571 146.286-402.286 146.286s-402.286-45.714-402.286-146.286c0-77.714 116-114.286 213.143-130.857 20-3.429 38.857 9.714 42.286 29.714s-9.714 38.857-29.714 42.286c-117.714 20.571-150.857 52.571-152.571 59.429 5.714 19.429 115.429 72.571 329.143 72.571s323.429-53.143 329.143-73.714c-1.714-5.714-34.857-37.714-152.571-58.286-20-3.429-33.143-22.286-29.714-42.286s22.286-33.143 42.286-29.714c97.143 16.571 213.143 53.143 213.143 130.857zM585.143 365.714v219.429c0 20-16.571 36.571-36.571 36.571h-36.571v219.429c0 20-16.571 36.571-36.571 36.571h-146.286c-20 0-36.571-16.571-36.571-36.571v-219.429h-36.571c-20 0-36.571-16.571-36.571-36.571v-219.429c0-40.571 32.571-73.143 73.143-73.143h219.429c40.571 0 73.143 32.571 73.143 73.143zM530.286 146.286c0 70.857-57.143 128-128 128s-128-57.143-128-128 57.143-128 128-128 128 57.143 128 128z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "street-view"
+ ],
+ "defaultCode": 61981,
+ "grid": 14
+ },
+ {
+ "id": 495,
+ "paths": [
+ "M731.429 585.143h174.286c-6.857 7.429-11.429 11.429-12.571 12.571l-356 342.857c-6.857 6.857-16 10.286-25.143 10.286s-18.286-3.429-25.143-10.286l-356.571-344c-1.143-0.571-5.714-4.571-12-11.429h210.857c16.571 0 31.429-11.429 35.429-27.429l40-160.571 108.571 381.143c4.571 15.429 18.857 26.286 35.429 26.286v0c16 0 30.286-10.857 34.857-26.286l83.429-277.143 32 64c6.286 12 18.857 20 32.571 20zM1024 340.571c0 65.714-28.571 125.714-58.857 171.429h-210.857l-63.429-126.286c-6.286-13.143-21.143-21.143-35.429-20-15.429 1.714-28 11.429-32 26.286l-73.714 245.714-112-392c-4.571-15.429-18.857-26.286-36-26.286-16.571 0-30.857 11.429-34.857 27.429l-66.286 265.143h-241.714c-30.286-45.714-58.857-105.714-58.857-171.429 0-167.429 102.286-267.429 273.143-267.429 100 0 193.714 78.857 238.857 123.429 45.143-44.571 138.857-123.429 238.857-123.429 170.857 0 273.143 100 273.143 267.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "heartbeat"
+ ],
+ "defaultCode": 61982,
+ "grid": 14
+ },
+ {
+ "id": 496,
+ "paths": [
+ "M658.286 329.143c0 169.143-128 308.571-292.571 326.857v148.571h128c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-128v128c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-128h-128c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h128v-148.571c-173.143-18.857-305.714-172.571-291.429-353.714 12.571-155.429 136-282.857 290.286-300 198.857-22.286 366.857 132.571 366.857 326.857zM73.143 329.143c0 141.143 114.857 256 256 256s256-114.857 256-256-114.857-256-256-256-256 114.857-256 256z"
+ ],
+ "width": 645.12,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "venus"
+ ],
+ "defaultCode": 61985,
+ "grid": 14
+ },
+ {
+ "id": 497,
+ "paths": [
+ "M841.143 73.143c20 0 36.571 16.571 36.571 36.571v237.714c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-149.714l-218.286 218.857c45.143 56 72 127.429 72 205.143 0 181.714-147.429 329.143-329.143 329.143s-329.143-147.429-329.143-329.143 147.429-329.143 329.143-329.143c77.714 0 149.143 26.857 205.143 72l218.286-218.286h-149.143c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h237.714zM329.143 877.714c141.143 0 256-114.857 256-256s-114.857-256-256-256-256 114.857-256 256 114.857 256 256 256z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mars"
+ ],
+ "defaultCode": 61986,
+ "grid": 14
+ },
+ {
+ "id": 498,
+ "paths": [
+ "M474.286 180.571c108.571 53.714 184 165.714 184 294.857 0 169.143-128 308.571-292.571 326.857v75.429h54.857c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-54.857v54.857c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-54.857h-54.857c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h54.857v-75.429c-164.571-18.286-292.571-157.714-292.571-326.857 0-129.143 75.429-241.143 184-294.857-60-34.857-106.857-89.714-130.286-156-4.571-12 4.571-24.571 17.143-24.571h39.429c7.429 0 13.714 4.571 16.571 11.429 33.143 79.429 111.429 134.857 202.286 134.857s169.143-55.429 202.286-134.857c2.857-6.857 9.143-11.429 21.143-11.429h34.857c12.571 0 21.714 12.571 17.143 24.571-23.429 66.286-70.286 121.143-130.286 156zM329.143 731.429c141.143 0 256-114.857 256-256s-114.857-256-256-256-256 114.857-256 256 114.857 256 256 256z"
+ ],
+ "width": 658.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mercury"
+ ],
+ "defaultCode": 61987,
+ "grid": 14
+ },
+ {
+ "id": 499,
+ "paths": [
+ "M585.143 18.286c0-10.286 8-18.286 18.286-18.286h164.571c20 0 36.571 16.571 36.571 36.571v164.571c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-76.571l-145.143 145.714c44.571 56 72 127.429 72 205.143 0 169.143-128 308.571-292.571 326.857v75.429h54.857c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-54.857v54.857c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-54.857h-54.857c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h54.857v-75.429c-172.571-18.857-305.714-172.571-291.429-353.143 12-155.429 135.429-282.857 289.714-300.571 92.571-10.857 178.286 17.714 243.429 69.714l145.714-145.143h-76.571c-10.286 0-18.286-8-18.286-18.286v-36.571zM329.143 731.429c141.143 0 256-114.857 256-256s-114.857-256-256-256-256 114.857-256 256 114.857 256 256 256z"
+ ],
+ "width": 791.4057142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "intersex",
+ "transgender"
+ ],
+ "defaultCode": 61988,
+ "grid": 14
+ },
+ {
+ "id": 500,
+ "paths": [
+ "M731.429 18.286c0-10.286 8-18.286 18.286-18.286h164.571c20 0 36.571 16.571 36.571 36.571v164.571c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-76.571l-145.143 145.714c44.571 56 72 127.429 72 205.143 0 169.143-128 308.571-292.571 326.857v75.429h54.857c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-54.857v54.857c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-54.857h-54.857c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h54.857v-75.429c-164.571-18.286-292.571-157.714-292.571-326.857 0-77.714 27.429-149.143 72-205.143l-29.714-30.286-57.714 63.429c-6.857 7.429-18.286 8-25.714 1.714l-27.429-25.143c-7.429-6.286-8-18.286-1.143-25.714l60-65.714-63.429-64v76.571c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-164.571c0-20 16.571-36.571 36.571-36.571h164.571c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-76l60.571 61.143 49.143-53.714c6.857-7.429 18.286-8 25.714-1.714l27.429 25.143c7.429 6.286 8 18.286 1.143 25.714l-51.429 56.571 32.571 32c56-44.571 127.429-72 205.143-72s149.143 27.429 205.143 72l145.714-145.143h-76.571c-10.286 0-18.286-8-18.286-18.286v-36.571zM475.429 731.429c141.143 0 256-114.857 256-256s-114.857-256-256-256-256 114.857-256 256 114.857 256 256 256z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "transgender-alt"
+ ],
+ "defaultCode": 61989,
+ "grid": 14
+ },
+ {
+ "id": 501,
+ "paths": [
+ "M1022.857 302.286c14.286 181.143-118.286 334.857-291.429 353.714v148.571h128c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-128v128c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-128h-292.571v128c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-128h-128c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h128v-148.571c-173.143-18.857-305.714-172.571-291.429-353.714 12.571-157.143 138.857-285.714 295.429-300.571 80-8 154.857 13.143 215.429 53.714 60.571-40.571 135.429-61.714 215.429-53.714 156.571 14.857 282.857 143.429 295.429 300.571zM512 508c45.143-46.286 73.143-109.143 73.143-178.857s-28-132.571-73.143-178.857c-45.143 46.286-73.143 109.143-73.143 178.857s28 132.571 73.143 178.857zM329.143 585.143c45.143 0 87.429-12 124.571-32.571-54.857-58.857-88-137.143-88-223.429s33.714-164.571 88-223.429c-37.143-20.571-79.429-32.571-124.571-32.571-141.143 0-256 114.857-256 256s114.857 256 256 256zM658.286 804.571v-148.571c-53.714-5.714-103.429-25.143-146.286-53.714-42.857 28.571-92.571 48-146.286 53.714v148.571h292.571zM694.857 585.143c141.143 0 256-114.857 256-256s-114.857-256-256-256c-45.143 0-87.429 12-124.571 32.571 54.286 58.857 88 137.143 88 223.429s-33.143 164.571-88 223.429c37.143 20.571 79.429 32.571 124.571 32.571z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "venus-double"
+ ],
+ "defaultCode": 61990,
+ "grid": 14
+ },
+ {
+ "id": 502,
+ "paths": [
+ "M877.714 237.714c0-10.286 8-18.286 18.286-18.286h164.571c20 0 36.571 16.571 36.571 36.571v164.571c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-76.571l-145.143 145.714c56 70.286 84 163.429 66.857 263.429-24 138.857-137.143 248-276.571 267.429-163.429 22.857-308-74.857-357.714-217.143-180.571-9.143-322.857-164.571-310.857-350.286 10.286-156.571 134.286-286.857 290.286-304.571 92-10.857 177.714 17.714 243.429 69.714l145.714-145.143h-76.571c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h164.571c20 0 36.571 16.571 36.571 36.571v164.571c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-76.571l-145.143 145.714c22.857 28.571 40.571 61.143 53.143 96.571 70.857 3.429 135.429 29.714 187.429 70.857l145.714-145.143h-76.571c-10.286 0-18.286-8-18.286-18.286v-36.571zM585.143 475.429c0-11.429-1.143-22.286-2.286-33.143-122.857 18.857-217.143 124.571-217.143 252.571 0 11.429 1.143 22.286 2.286 33.143 122.857-18.857 217.143-124.571 217.143-252.571zM73.143 475.429c0 129.143 96.571 236 221.143 253.143-1.143-10.857-1.714-22.286-1.714-33.714 0-161.143 116.571-295.429 270.286-323.429-40-89.714-129.714-152-233.714-152-141.143 0-256 114.857-256 256zM621.714 950.857c141.143 0 256-114.857 256-256 0-129.143-96.571-236-221.143-253.143 1.143 10.857 1.714 22.286 1.714 33.714 0 161.143-116.571 295.429-270.286 323.429 40 89.714 129.714 152 233.714 152z"
+ ],
+ "width": 1085.7325714285714,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mars-double"
+ ],
+ "defaultCode": 61991,
+ "grid": 14
+ },
+ {
+ "id": 503,
+ "paths": [
+ "M950.857 18.286c0-10.286 8-18.286 18.286-18.286h164.571c20 0 36.571 16.571 36.571 36.571v164.571c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-76.571l-145.143 145.714c56 70.286 84 163.429 66.857 263.429-24 137.143-135.429 246.286-273.143 266.857-86.857 13.143-168.571-8-233.714-51.429-42.857 28.571-92.571 47.429-146.286 53.143v75.429h54.857c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-54.857v54.857c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-54.857h-54.857c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h54.857v-75.429c-179.429-20-316-184.571-289.143-373.714 19.429-142.286 132.571-256.571 274.286-278.286 87.429-13.143 169.143 8 234.286 51.429 52.571-34.857 115.429-55.429 182.857-55.429 77.714 0 149.143 27.429 205.143 72l145.714-145.143h-76.571c-10.286 0-18.286-8-18.286-18.286v-36.571zM512 654.286c45.143-46.286 73.143-109.143 73.143-178.857s-28-132.571-73.143-178.857c-45.143 46.286-73.143 109.143-73.143 178.857s28 132.571 73.143 178.857zM73.143 475.429c0 141.143 114.857 256 256 256 45.143 0 88-12 124.571-32.571-54.286-58.857-88-137.143-88-223.429s33.714-164.571 88-223.429c-36.571-20.571-79.429-32.571-124.571-32.571-141.143 0-256 114.857-256 256zM694.857 731.429c141.143 0 256-114.857 256-256s-114.857-256-256-256c-45.143 0-88 12-124.571 32.571 54.286 58.857 88 137.143 88 223.429s-33.714 164.571-88 223.429c36.571 20.571 79.429 32.571 124.571 32.571z"
+ ],
+ "width": 1146.8799999999999,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "venus-mars"
+ ],
+ "defaultCode": 61992,
+ "grid": 14
+ },
+ {
+ "id": 504,
+ "paths": [
+ "M841.143 73.143c20 0 36.571 16.571 36.571 36.571v237.714c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-149.714l-121.714 122.286 80 80c6.857 7.429 6.857 18.857 0 25.714l-26.286 26.286c-6.857 6.857-18.286 6.857-25.714 0l-80-80.571-44.571 45.143c45.143 56 72 127.429 72 205.143 0 181.714-147.429 329.143-329.143 329.143s-329.143-147.429-329.143-329.143 147.429-329.143 329.143-329.143c77.714 0 149.143 26.857 205.143 72l44.571-44.571-98.286-98.286c-6.857-7.429-6.857-18.857 0-25.714l26.286-26.286c6.857-6.857 18.286-6.857 25.714 0l98.286 98.286 121.714-121.714h-149.143c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h237.714zM329.143 877.714c141.143 0 256-114.857 256-256s-114.857-256-256-256-256 114.857-256 256 114.857 256 256 256z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mars-stroke"
+ ],
+ "defaultCode": 61993,
+ "grid": 14
+ },
+ {
+ "id": 505,
+ "paths": [
+ "M365.714 368c164.571 18.286 292.571 157.714 292.571 326.857 0 194.286-168 349.143-366.857 326.857-154.286-17.143-277.714-144.571-290.286-300-14.286-181.143 118.286-334.857 291.429-353.714v-75.429h-91.429c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h91.429v-94.286l-52.571 52.571c-7.429 6.857-18.857 6.857-25.714 0l-26.286-26.286c-6.857-6.857-6.857-18.286 0-25.714l115.429-114.857c14.286-14.286 37.143-14.286 51.429 0l115.429 114.857c6.857 7.429 6.857 18.857 0 25.714l-26.286 26.286c-6.857 6.857-18.286 6.857-25.714 0l-52.571-52.571v94.286h91.429c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-91.429v75.429zM329.143 950.857c141.143 0 256-114.857 256-256s-114.857-256-256-256-256 114.857-256 256 114.857 256 256 256z"
+ ],
+ "width": 645.12,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mars-stroke-v"
+ ],
+ "defaultCode": 61994,
+ "grid": 14
+ },
+ {
+ "id": 506,
+ "paths": [
+ "M1086.286 522.857c14.286 14.286 14.286 37.143 0 51.429l-168 168c-6.857 7.429-18.857 7.429-25.714 0l-25.714-25.714c-7.429-6.857-7.429-18.857 0-25.714l105.714-105.714h-168v128c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-128h-75.429c-18.286 164.571-157.714 292.571-326.857 292.571-194.286 0-349.143-168-326.857-366.857 17.143-154.286 144.571-277.714 300-290.286 181.143-14.286 334.857 118.286 353.714 291.429h75.429v-128c0-10.286 8-18.286 18.286-18.286h36.571c10.286 0 18.286 8 18.286 18.286v128h168l-105.714-105.714c-7.429-6.857-7.429-18.857 0-25.714l25.714-25.714c6.857-7.429 18.857-7.429 25.714 0zM329.143 804.571c141.143 0 256-114.857 256-256s-114.857-256-256-256-256 114.857-256 256 114.857 256 256 256z"
+ ],
+ "width": 1080.5394285714285,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mars-stroke-h"
+ ],
+ "defaultCode": 61995,
+ "grid": 14
+ },
+ {
+ "id": 507,
+ "paths": [
+ "M658.286 329.143c0 169.143-128 308.571-292.571 326.857v349.714c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-349.714c-164.571-18.286-292.571-157.714-292.571-326.857 0-181.714 147.429-329.143 329.143-329.143s329.143 147.429 329.143 329.143zM329.143 585.143c141.143 0 256-114.857 256-256s-114.857-256-256-256-256 114.857-256 256 114.857 256 256 256z"
+ ],
+ "width": 658.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "neuter"
+ ],
+ "defaultCode": 61996,
+ "grid": 14
+ },
+ {
+ "id": 508,
+ "paths": [
+ "M585.143 548.571c0-141.143-114.857-256-256-256s-256 114.857-256 256 114.857 256 256 256 256-114.857 256-256zM658.286 548.571c0 181.714-147.429 329.143-329.143 329.143s-329.143-147.429-329.143-329.143 147.429-329.143 329.143-329.143 329.143 147.429 329.143 329.143z"
+ ],
+ "width": 658.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "genderless"
+ ],
+ "defaultCode": 61997,
+ "grid": 14
+ },
+ {
+ "id": 509,
+ "paths": [
+ "M829.143 73.143c26.857 0 48.571 21.714 48.571 48.571v780.571c0 26.857-21.714 48.571-48.571 48.571h-223.429v-340h113.714l17.143-132.571h-130.857v-84.571c0-38.286 10.286-64 65.714-64l69.714-0.571v-118.286c-12-1.714-53.714-5.143-101.714-5.143-101.143 0-170.857 61.714-170.857 174.857v97.714h-114.286v132.571h114.286v340h-420c-26.857 0-48.571-21.714-48.571-48.571v-780.571c0-26.857 21.714-48.571 48.571-48.571h780.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "facebook-official"
+ ],
+ "defaultCode": 62000,
+ "grid": 14
+ },
+ {
+ "id": 510,
+ "paths": [
+ "M0 341.143c0-210.857 193.143-341.143 388.571-341.143 179.429 0 342.857 123.429 342.857 312.571 0 177.714-90.857 374.857-293.143 374.857-48 0-108.571-24-132-68.571-43.429 172-40 197.714-136 329.143l-8 2.857-5.143-5.714c-3.429-36-8.571-71.429-8.571-107.429 0-116.571 53.714-285.143 80-398.286-14.286-29.143-18.286-64.571-18.286-96.571 0-57.714 40-130.857 105.143-130.857 48 0 73.714 36.571 73.714 81.714 0 74.286-50.286 144-50.286 216 0 49.143 40.571 83.429 88 83.429 131.429 0 172-189.714 172-290.857 0-135.429-96-209.143-225.714-209.143-150.857 0-267.429 108.571-267.429 261.714 0 73.714 45.143 111.429 45.143 129.143 0 14.857-10.857 67.429-29.714 67.429-2.857 0-6.857-1.143-9.714-1.714-81.714-24.571-111.429-133.714-111.429-208.571z"
+ ],
+ "width": 731.4285714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pinterest-p"
+ ],
+ "defaultCode": 62001,
+ "grid": 14
+ },
+ {
+ "id": 511,
+ "paths": [
+ "M562.857 556.571c9.714 0 102.857 48.571 106.857 55.429 1.143 2.857 1.143 6.286 1.143 8.571 0 14.286-4.571 30.286-9.714 43.429-13.143 32-66.286 52.571-98.857 52.571-27.429 0-84-24-108.571-35.429-81.714-37.143-132.571-100.571-181.714-173.143-21.714-32-41.143-71.429-40.571-110.857v-4.571c1.143-37.714 14.857-64.571 42.286-90.286 8.571-8 17.714-12.571 29.714-12.571 6.857 0 13.714 1.714 21.143 1.714 15.429 0 18.286 4.571 24 19.429 4 9.714 33.143 87.429 33.143 93.143 0 21.714-39.429 46.286-39.429 59.429 0 2.857 1.143 5.714 2.857 8.571 12.571 26.857 36.571 57.714 58.286 78.286 26.286 25.143 54.286 41.714 86.286 57.714 4 2.286 8 4 12.571 4 17.143 0 45.714-55.429 60.571-55.429zM446.857 859.429c197.714 0 358.857-161.143 358.857-358.857s-161.143-358.857-358.857-358.857-358.857 161.143-358.857 358.857c0 75.429 24 149.143 68.571 210.286l-45.143 133.143 138.286-44c58.286 38.286 127.429 59.429 197.143 59.429zM446.857 69.714c237.714 0 430.857 193.143 430.857 430.857s-193.143 430.857-430.857 430.857c-72.571 0-144.571-18.286-208.571-53.714l-238.286 76.571 77.714-231.429c-40.571-66.857-61.714-144-61.714-222.286 0-237.714 193.143-430.857 430.857-430.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "whatsapp"
+ ],
+ "defaultCode": 62002,
+ "grid": 14
+ },
+ {
+ "id": 512,
+ "paths": [
+ "M73.143 804.571h585.143v-73.143h-585.143v73.143zM73.143 512h585.143v-73.143h-585.143v73.143zM969.143 768c0-30.286-24.571-54.857-54.857-54.857s-54.857 24.571-54.857 54.857 24.571 54.857 54.857 54.857 54.857-24.571 54.857-54.857zM73.143 219.429h585.143v-73.143h-585.143v73.143zM969.143 475.429c0-30.286-24.571-54.857-54.857-54.857s-54.857 24.571-54.857 54.857 24.571 54.857 54.857 54.857 54.857-24.571 54.857-54.857zM969.143 182.857c0-30.286-24.571-54.857-54.857-54.857s-54.857 24.571-54.857 54.857 24.571 54.857 54.857 54.857 54.857-24.571 54.857-54.857zM1024 658.286v219.429h-1024v-219.429h1024zM1024 365.714v219.429h-1024v-219.429h1024zM1024 73.143v219.429h-1024v-219.429h1024z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "server"
+ ],
+ "defaultCode": 62003,
+ "grid": 14
+ },
+ {
+ "id": 513,
+ "paths": [
+ "M402.286 512c-121.143 0-219.429-98.286-219.429-219.429s98.286-219.429 219.429-219.429 219.429 98.286 219.429 219.429-98.286 219.429-219.429 219.429zM950.857 585.143h201.143c9.714 0 18.286 8.571 18.286 18.286v109.714c0 9.714-8.571 18.286-18.286 18.286h-201.143v201.143c0 9.714-8.571 18.286-18.286 18.286h-109.714c-9.714 0-18.286-8.571-18.286-18.286v-201.143h-201.143c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h201.143v-201.143c0-9.714 8.571-18.286 18.286-18.286h109.714c9.714 0 18.286 8.571 18.286 18.286v201.143zM530.286 713.143c0 40 33.143 73.143 73.143 73.143h146.286v136c-28 20.571-63.429 28.571-97.714 28.571h-499.429c-91.429 0-152.571-54.857-152.571-148 0-129.143 30.286-327.429 197.714-327.429 9.143 0 15.429 4 22.286 9.714 56 42.857 110.286 69.714 182.286 69.714s126.286-26.857 182.286-69.714c6.857-5.714 13.143-9.714 22.286-9.714 48.571 0 91.429 18.286 124 54.857h-127.429c-40 0-73.143 33.143-73.143 73.143v109.714z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "user-plus"
+ ],
+ "defaultCode": 62004,
+ "grid": 14
+ },
+ {
+ "id": 514,
+ "paths": [
+ "M402.286 512c-121.143 0-219.429-98.286-219.429-219.429s98.286-219.429 219.429-219.429 219.429 98.286 219.429 219.429-98.286 219.429-219.429 219.429zM1017.714 694.857l142.286 142.286c3.429 3.429 5.143 8 5.143 13.143 0 4.571-1.714 9.143-5.143 12.571l-77.714 77.714c-3.429 3.429-8 5.143-12.571 5.143-5.143 0-9.714-1.714-13.143-5.143l-142.286-142.286-142.286 142.286c-3.429 3.429-8 5.143-13.143 5.143-4.571 0-9.143-1.714-12.571-5.143l-77.714-77.714c-3.429-3.429-5.143-8-5.143-12.571 0-5.143 1.714-9.714 5.143-13.143l142.286-142.286-142.286-142.286c-3.429-3.429-5.143-8-5.143-13.143 0-4.571 1.714-9.143 5.143-12.571l77.714-77.714c3.429-3.429 8-5.143 12.571-5.143 5.143 0 9.714 1.714 13.143 5.143l142.286 142.286 142.286-142.286c3.429-3.429 8-5.143 13.143-5.143 4.571 0 9.143 1.714 12.571 5.143l77.714 77.714c3.429 3.429 5.143 8 5.143 12.571 0 5.143-1.714 9.714-5.143 13.143zM733.143 694.857l-103.429 103.429c-13.714 13.714-21.143 32.571-21.143 52 0 18.857 7.429 37.714 21.143 51.429l47.429 47.429c-8 1.143-16.571 1.714-25.143 1.714h-499.429c-91.429 0-152.571-54.857-152.571-148 0-129.143 30.286-327.429 197.714-327.429 9.143 0 15.429 4 22.286 9.714 54.857 43.429 110.857 69.714 182.286 69.714s127.429-26.286 182.286-69.714c6.857-5.714 13.143-9.714 22.286-9.714 10.857 0 21.714 1.143 32.571 3.429-18.857 18.286-30.857 33.143-30.857 60.571 0 19.429 7.429 38.286 21.143 52z"
+ ],
+ "width": 1165.165714285714,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "user-times"
+ ],
+ "defaultCode": 62005,
+ "grid": 14
+ },
+ {
+ "id": 515,
+ "paths": [
+ "M146.286 585.143h987.429c20 0 36.571 16.571 36.571 36.571v256h-146.286v-146.286h-877.714v146.286h-146.286v-694.857c0-20 16.571-36.571 36.571-36.571h73.143c20 0 36.571 16.571 36.571 36.571v402.286zM475.429 402.286c0-80.571-65.714-146.286-146.286-146.286s-146.286 65.714-146.286 146.286 65.714 146.286 146.286 146.286 146.286-65.714 146.286-146.286zM1170.286 548.571v-36.571c0-121.143-98.286-219.429-219.429-219.429h-402.286c-20 0-36.571 16.571-36.571 36.571v219.429h658.286z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bed",
+ "hotel"
+ ],
+ "defaultCode": 62006,
+ "grid": 14
+ },
+ {
+ "id": 516,
+ "paths": [
+ "M877.714 0l-109.714 256h109.714v109.714h-156.571l-31.429 73.143h188v109.714h-234.857l-204 475.429-204-475.429h-234.857v-109.714h188l-31.429-73.143h-156.571v-109.714h109.714l-109.714-256h146.286l184.571 438.857h216l184.571-438.857h146.286zM438.857 694.857l61.714-146.286h-123.429z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "viacoin"
+ ],
+ "defaultCode": 62007,
+ "grid": 14
+ },
+ {
+ "id": 517,
+ "paths": [
+ "M621.714 0c141.143 0 256 81.714 256 182.857v512c0 98.857-109.143 178.857-246.286 182.286l121.714 115.429c12 11.429 4 31.429-12.571 31.429h-603.429c-16.571 0-24.571-20-12.571-31.429l121.714-115.429c-137.143-3.429-246.286-83.429-246.286-182.286v-512c0-101.143 114.857-182.857 256-182.857h365.714zM438.857 768c60.571 0 109.714-49.143 109.714-109.714s-49.143-109.714-109.714-109.714-109.714 49.143-109.714 109.714 49.143 109.714 109.714 109.714zM768 438.857v-292.571h-658.286v292.571h658.286z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "train"
+ ],
+ "defaultCode": 62008,
+ "grid": 14
+ },
+ {
+ "id": 518,
+ "paths": [
+ "M621.714 0c141.143 0 256 81.714 256 182.857v512c0 98.857-109.143 178.857-246.286 182.286l121.714 115.429c12 11.429 4 31.429-12.571 31.429h-603.429c-16.571 0-24.571-20-12.571-31.429l121.714-115.429c-137.143-3.429-246.286-83.429-246.286-182.286v-512c0-101.143 114.857-182.857 256-182.857h365.714zM164.571 749.714c50.286 0 91.429-41.143 91.429-91.429s-41.143-91.429-91.429-91.429-91.429 41.143-91.429 91.429 41.143 91.429 91.429 91.429zM402.286 438.857v-292.571h-310.857v292.571h310.857zM713.143 749.714c50.286 0 91.429-41.143 91.429-91.429s-41.143-91.429-91.429-91.429-91.429 41.143-91.429 91.429 41.143 91.429 91.429 91.429zM804.571 438.857v-292.571h-329.143v292.571h329.143z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "subway"
+ ],
+ "defaultCode": 62009,
+ "grid": 14
+ },
+ {
+ "id": 519,
+ "paths": [
+ "M341.143 240.571v670.286c0 17.714-8.571 34.286-28 34.286-6.857 0-13.143-1.714-18.857-4.571l-265.714-133.143c-16-8-28.571-28.571-28.571-45.714v-651.429c0-14.286 6.857-27.429 22.286-27.429 9.143 0 17.143 4.571 25.143 8.571l292 146.286c0.571 0.571 1.714 2.286 1.714 2.857zM377.714 298.286l305.143 494.857-305.143-152v-342.857zM1024 308.571v602.286c0 18.857-10.857 32-29.714 32-9.714 0-18.857-2.857-26.857-7.429l-252-125.714zM1022.286 240c0 2.286-295.429 481.714-318.286 518.286l-222.857-362.286 185.143-301.143c6.286-10.286 17.714-16 29.714-16 5.143 0 10.286 1.143 14.857 3.429l309.143 154.286c1.143 0.571 2.286 1.714 2.286 3.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "medium"
+ ],
+ "defaultCode": 62010,
+ "grid": 14
+ },
+ {
+ "id": 520,
+ "paths": [
+ "M462.286 573.714l152-285.143h-64l-89.714 178.286s-13.714 27.429-25.143 52.571c-10.857-26.286-24-52.571-24-52.571l-88.571-178.286h-68.571l150.286 281.714v185.143h57.714v-181.714zM877.714 73.143v877.714h-877.714v-877.714h877.714z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "y-combinator",
+ "yc"
+ ],
+ "defaultCode": 62011,
+ "grid": 14
+ },
+ {
+ "id": 521,
+ "paths": [
+ "M273.143 957.143c-5.714 12-22.286 28.571-36.571 34.286-20 6.857-44.571-6.286-45.714-20-1.143-17.714 42.857-49.714 61.714-53.143 18.286-3.429 26.857 24 20.571 38.857zM1039.429 957.143c5.143 12 21.714 28.571 36.571 34.286 19.429 6.857 44.571-6.286 45.143-20 1.714-17.714-42.857-49.714-61.714-53.143-17.714-3.429-26.286 24-20 38.857zM1066.857 894.857c10.286 20.571 50.857 50.857 76.571 57.714 34.857 9.714 68-6.857 68-31.429 0-37.714-71.429-88-104.571-91.429-31.429-4-52 40.571-40 65.143zM244.571 894.857c-10.286 20.571-50.286 50.857-76 57.714-34.857 9.714-68-6.857-68-31.429 0-37.714 71.429-88 104.571-91.429 31.429-4 52 40.571 39.429 65.143zM661.714 252.571h0.571c-15.429 0-30.286 2.857-43.429 8.571 20 6.286 34.857 24.571 34.857 45.714 0 26.857-23.429 48.571-52.571 48.571-19.429 0-36.571-10.286-45.714-24.571-1.714 8-2.857 15.429-2.857 24 0 56.571 48.571 102.286 109.143 102.286s109.714-45.714 109.714-102.286-49.143-102.286-109.714-102.286zM835.429 128c-75.429-82.857-172-101.143-266.286-49.714 53.143-118.857 258.286-102.857 266.286 49.714zM1264 836c2.857 4-0.571 14.286-6.286 24 2.286 7.429 4 14.857 4 22.857 1.714 66.857-93.714 135.429-155.429 137.714-36.571 1.714-73.143-17.714-90.286-49.714-240 8.571-480 10.286-719.429 0-17.714 32-54.286 50.857-90.857 49.714-61.143-2.286-156.571-70.857-155.429-137.714 0.571-8 1.714-15.429 4-22.857-5.714-9.714-9.143-20-6.286-24 2.286-3.429 9.714-3.429 17.714-0.571 6.857-10.857 14.857-20 23.429-29.143-2.286-9.714-2.286-18.286 1.143-21.714 4-3.429 13.143-2.286 22.286 2.286 9.714-6.857 21.143-13.714 33.714-19.429 0-10.286 2.857-18.286 7.429-21.143 6.857-3.429 18.857-1.143 29.143 9.143 12-1.714 24-1.714 34.857 1.143 7.429 1.714 14.857 5.714 21.714 10.857v-41.714c-3.429 0-6.286 0-10.286-1.143-37.143-6.857-77.714-32.571-86.857-75.429-3.429-14.286-3.429-29.714 0-46.286 6.857-28.571 31.429-45.143 53.143-54.286 1.714-12.571 17.143-29.714 31.429-33.714 16-4 26.286 9.714 29.714 21.714h7.429c10.286 1.143 26.857 3.429 34.286 13.143 1.143 1.143 2.286 2.857 2.857 4 11.429-1.143 23.429-2.857 34.857-4-5.143-4-10.857-7.429-17.143-9.714-10.857-18.857-29.143-23.429-52-24.571 0-1.714 0-3.429 0.571-5.714-41.714-1.143-93.143-12-116-37.714-26.286-29.143-30.857-78.857-25.714-116.571 4.571-37.143 20-80 51.429-102.286 17.714-12 45.714-1.714 48 20.571 1.143 9.714 2.857 42.857 12 48 10.286 5.143 26.857 7.429 43.429 6.857 17.143-16.571 35.429-30.857 56-42.286-31.429-2.857-61.143 3.429-92.571 8l26.857-26.286c26.286-25.143 61.143-46.857 93.143-63.429 49.714-25.143 105.714-44 161.143-49.143-39.429-16.571-84.571-25.143-126.286-34.857 161.714-34.286 369.143-46.857 516.571 79.429 38.286 32.571 68.571 76.571 90.286 126.857 23.429 2.857 53.143 3.429 69.143-5.143h0.571c9.143-5.143 10.857-37.714 12-48 2.286-21.714 30.286-32.571 48-20 31.429 22.286 46.857 65.143 52 101.714 4.571 37.714 0.571 87.429-26.286 116.571-22.857 25.714-72.571 37.143-113.714 38.286v5.714c-23.429 0.571-42.857 5.143-54.286 24.571-6.286 2.286-12 5.714-17.714 9.714 12 1.143 24 2.857 35.429 4 0.571-1.714 1.714-3.429 2.857-4.571 8-9.143 24.571-12 34.286-13.143h7.429c3.429-11.429 14.286-25.143 29.714-21.714s29.714 21.143 31.429 33.714c22.857 9.143 46.857 25.714 53.143 54.286 4 17.143 3.429 32 0.571 46.286-9.714 42.857-50.286 69.143-87.429 75.429-2.857 0.571-6.857 1.143-9.714 1.143 0 14.286 0 28-0.571 41.714 6.857-5.143 13.714-9.143 21.714-10.857 10.857-2.857 22.857-2.857 34.857-1.143 10.286-10.286 22.857-12.571 29.143-9.143 4.571 2.857 8 10.857 8 21.143 12 5.714 24 12.571 33.714 19.429 9.143-4.571 17.714-5.714 21.714-2.286 3.429 3.429 4 12 1.143 21.714 8.571 9.143 17.143 18.857 23.429 29.143 8-2.857 14.857-2.857 17.714 0.571zM1106.857 292c0 13.143-2.857 24.571-5.143 30.857 36.571 14.286 55.429 46.857 64 75.429 2.286-22.286-5.714-83.429-29.143-108-15.429-15.429-29.714-10.857-29.714 1.714zM1062.286 349.143v0c27.429 33.143 36 88 26.857 133.143 22.857-4.571 43.429-13.143 55.429-25.714 4-4.571 8-10.286 10.286-16-2.286-45.143-21.714-90.286-62.857-103.429-6.857 6.857-19.429 10.286-29.714 12v0zM1041.143 351.429c-8 0-17.143 0-25.143-0.571 16 43.429 26.286 90.286 30.286 136.571 7.429 0 16-0.571 24.571-1.714 12.571-51.429-0.571-109.143-29.714-134.286zM147.429 398.286c8.571-28.571 27.429-61.143 64-75.429-2.286-6.286-5.143-17.714-5.143-30.857 0-12.571-14.857-17.143-29.714-1.714-24 24.571-31.429 85.714-29.143 108zM168 456.571c12 13.143 32.571 21.143 55.429 25.714-9.143-45.143-0.571-100 26.857-133.143v0 0 0c-10.286-1.714-22.857-5.143-29.714-12-41.143 13.143-60 58.286-62.857 103.429 2.857 5.714 6.286 11.429 10.286 16zM269.143 487.429c5.143-46.857 19.429-92.571 41.714-134.286-10.857 2.286-21.143 6.286-31.429 10.286l-25.714 10.857v-0.571c-15.429 29.714-21.143 72.571-11.429 112 9.714 1.143 18.286 1.714 26.857 1.714zM819.429 509.714v0c7.429 37.714 10.286 75.429 16 113.143 2.286 13.143 6.286 16 18.857 9.714 33.714-17.143 48-82.857 48.571-120.571-27.429-1.714-55.429-1.714-83.429-2.286zM658.286 143.429c-88.571 0-161.143 72-161.143 160.571 0 89.143 72.571 161.143 161.143 161.143s161.143-72 161.143-161.143c0-88.571-72.571-160.571-161.143-160.571zM788.571 508.571c-40-0.571-80.571-0.571-120.571 0v-0.571c-0.571 10.857 0.571 80.571 9.143 86.857 23.429 11.429 83.429 9.714 108 2.286 11.429-3.429 5.143-78.286 3.429-88.571zM635.429 622.286c9.714-5.143 5.143-96 2.857-113.714v-0.571c-41.143 0.571-81.714 0.571-122.286 1.714-4 19.429-9.714 103.429 4 109.143 27.429 12 88 10.857 115.429 3.429zM410.286 514.286c-11.429 41.714 0.571 95.429 46.857 116 11.429 5.143 18.286 5.143 20.571-9.143 4-18.286 5.143-77.714 10.286-110.286v0c-25.714 0.571-52 1.714-77.714 3.429zM337.714 586.286c1.143 10.286-8 16.571-19.429 20.571 92.571 99.429 196 181.143 329.714 225.143 142.857-40.571 244.571-126.857 345.143-226.286-10.286-4-18.286-10.857-17.143-19.429 0.571-2.286 1.143-3.429 1.714-5.143v0 0c-18.857-1.714-37.714-4-56-5.714-20 69.714-76 112-98.857 66.857-5.714-10.857-7.429-24.571-9.714-35.429-8 17.714-28 17.143-52 18.857-28 2.286-66.857 2.857-93.143-6.286-6.286 27.429-23.429 27.429-56.571 30.286-29.714 2.857-102.857 8.571-116-22.857-2.286 60.571-74.286 21.143-95.429-14.857-6.857-12-11.429-24-14.857-37.143-16.571 1.714-33.143 3.429-49.714 5.714 1.143 1.714 1.714 4 2.286 5.714zM289.714 945.143c1.143-5.143 1.714-10.857 1.714-17.143-12-49.143-39.429-105.143-70.857-114.286-47.429-14.286-145.714 49.714-140 115.429 26.857 41.143 84.571 75.429 125.143 77.143 37.714 1.714 76-23.429 84-61.143zM291.429 847.429c6.857 18.857 13.714 44 15.429 68 70.857-41.143 146.286-75.429 224-99.429-81.714-43.429-144-101.143-205.714-162.857-4.571 2.857-10.857 5.143-16.571 7.429-0.571 1.714-0.571 3.429-1.143 5.143 9.714 5.714 16.571 12.571 12.571 21.143-4.571 8.571-18.286 16-32 19.429-4.571 5.714-10.857 10.286-16.571 13.714h-0.571c-0.571 28.571-0.571 57.143 0.571 85.714 8 14.286 14.857 29.143 20 41.714zM330.857 942.286c218.286 8.571 436.571 7.429 654.286 0-77.714-45.143-156.571-87.429-244.571-112-29.143 13.143-58.857 24-89.143 32.571-4.571 1.714-4.571 1.714-9.143 0-25.143-8-49.143-17.143-73.714-28-85.143 24.571-163.429 61.714-237.714 107.429h-0.571v0.571c0.571 0 0.571 0 0.571-0.571zM1007.429 916c1.714-24 9.143-49.714 16-68.571 4.571-12.571 10.857-26.857 18.857-40.571l-0.571 0.571c1.143-29.143 1.714-58.286 1.714-87.429-6.286-3.429-12-8.571-17.143-14.286-13.714-2.857-27.429-10.857-32-18.857-4-8.571 2.857-16 12.571-21.714-0.571-1.143-1.143-3.429-1.143-5.143-6.286-1.714-11.429-4-16-6.857-66.857 62.286-138.286 120-218.857 162.286 82.286 24.571 160.571 59.429 236.571 100.571zM1231.429 929.143c6.286-65.714-92-129.714-140-115.429-30.857 9.143-58.857 65.143-70.857 114.286 0 6.286 0.571 12 1.714 17.143 8 37.714 46.286 62.857 84 61.143 40.571-1.714 98.286-36 125.143-77.143z"
+ ],
+ "width": 1311.9634285714285,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "optin-monster"
+ ],
+ "defaultCode": 62012,
+ "grid": 14
+ },
+ {
+ "id": 522,
+ "paths": [
+ "M870.857 892c0 52-41.714 93.714-93.714 93.714s-94.286-41.714-94.286-93.714 42.286-94.286 94.286-94.286 93.714 42.286 93.714 94.286zM442.857 892c0 52-42.286 93.714-94.286 93.714s-93.714-41.714-93.714-93.714 41.714-94.286 93.714-94.286 94.286 42.286 94.286 94.286zM0 38.286c168.571 177.714 326.857 204 948.571 204s348.571 138.286-35.429 481.143c121.714-211.429 540-398.857-145.714-388.571-657.714 9.714-696.571-190.286-767.429-296.571z"
+ ],
+ "width": 1570.304,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "opencart"
+ ],
+ "defaultCode": 62013,
+ "grid": 14
+ },
+ {
+ "id": 523,
+ "paths": [
+ "M512 36.571c-262.286 0-475.429 213.143-475.429 475.429s213.143 475.429 475.429 475.429 475.429-213.143 475.429-475.429-213.143-475.429-475.429-475.429zM512 0c282.857 0 512 229.143 512 512s-229.143 512-512 512-512-229.143-512-512 229.143-512 512-512zM283.429 475.429c5.143 0 9.143 4 9.143 9.143v274.286c0 5.143-4 9.143-9.143 9.143h-18.286c-5.143 0-9.143-4-9.143-9.143v-274.286c0-5.143 4-9.143 9.143-9.143h18.286zM512 512c40.571 0 73.143 32.571 73.143 73.143 0 26.857-14.857 50.286-36.571 62.857v65.143c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-65.143c-21.714-12.571-36.571-36-36.571-62.857 0-40.571 32.571-73.143 73.143-73.143zM512 73.143c242.286 0 438.857 196.571 438.857 438.857s-196.571 438.857-438.857 438.857-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857zM310.857 347.429v54.857c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286v-54.857c0-70.857 57.143-128 128-128s128 57.143 128 128v54.857c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286v-54.857c0-110.857-90.286-201.143-201.143-201.143s-201.143 90.286-201.143 201.143zM804.571 768v-292.571c0-20-16.571-36.571-36.571-36.571h-512c-20 0-36.571 16.571-36.571 36.571v292.571c0 20 16.571 36.571 36.571 36.571h512c20 0 36.571-16.571 36.571-36.571z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "expeditedssl"
+ ],
+ "defaultCode": 62014,
+ "grid": 14
+ },
+ {
+ "id": 524,
+ "paths": [
+ "M1097.143 292.571v438.857h-950.857v-438.857h950.857zM1170.286 621.714h73.143v-219.429h-73.143v-164.571c0-10.286-8-18.286-18.286-18.286h-1060.571c-10.286 0-18.286 8-18.286 18.286v548.571c0 10.286 8 18.286 18.286 18.286h1060.571c10.286 0 18.286-8 18.286-18.286v-164.571zM1316.571 402.286v219.429c0 40.571-32.571 73.143-73.143 73.143v91.429c0 50.286-41.143 91.429-91.429 91.429h-1060.571c-50.286 0-91.429-41.143-91.429-91.429v-548.571c0-50.286 41.143-91.429 91.429-91.429h1060.571c50.286 0 91.429 41.143 91.429 91.429v91.429c40.571 0 73.143 32.571 73.143 73.143z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "battery",
+ "battery-4",
+ "battery-full"
+ ],
+ "defaultCode": 62016,
+ "grid": 14
+ },
+ {
+ "id": 525,
+ "paths": [
+ "M146.286 731.429v-438.857h731.429v438.857h-731.429zM1243.429 329.143c40.571 0 73.143 32.571 73.143 73.143v219.429c0 40.571-32.571 73.143-73.143 73.143v91.429c0 50.286-41.143 91.429-91.429 91.429h-1060.571c-50.286 0-91.429-41.143-91.429-91.429v-548.571c0-50.286 41.143-91.429 91.429-91.429h1060.571c50.286 0 91.429 41.143 91.429 91.429v91.429zM1243.429 621.714v-219.429h-73.143v-164.571c0-10.286-8-18.286-18.286-18.286h-1060.571c-10.286 0-18.286 8-18.286 18.286v548.571c0 10.286 8 18.286 18.286 18.286h1060.571c10.286 0 18.286-8 18.286-18.286v-164.571h73.143z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "battery-3",
+ "battery-three-quarters"
+ ],
+ "defaultCode": 62017,
+ "grid": 14
+ },
+ {
+ "id": 526,
+ "paths": [
+ "M146.286 731.429v-438.857h512v438.857h-512zM1243.429 329.143c40.571 0 73.143 32.571 73.143 73.143v219.429c0 40.571-32.571 73.143-73.143 73.143v91.429c0 50.286-41.143 91.429-91.429 91.429h-1060.571c-50.286 0-91.429-41.143-91.429-91.429v-548.571c0-50.286 41.143-91.429 91.429-91.429h1060.571c50.286 0 91.429 41.143 91.429 91.429v91.429zM1243.429 621.714v-219.429h-73.143v-164.571c0-10.286-8-18.286-18.286-18.286h-1060.571c-10.286 0-18.286 8-18.286 18.286v548.571c0 10.286 8 18.286 18.286 18.286h1060.571c10.286 0 18.286-8 18.286-18.286v-164.571h73.143z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "battery-2",
+ "battery-half"
+ ],
+ "defaultCode": 62018,
+ "grid": 14
+ },
+ {
+ "id": 527,
+ "paths": [
+ "M146.286 731.429v-438.857h292.571v438.857h-292.571zM1243.429 329.143c40.571 0 73.143 32.571 73.143 73.143v219.429c0 40.571-32.571 73.143-73.143 73.143v91.429c0 50.286-41.143 91.429-91.429 91.429h-1060.571c-50.286 0-91.429-41.143-91.429-91.429v-548.571c0-50.286 41.143-91.429 91.429-91.429h1060.571c50.286 0 91.429 41.143 91.429 91.429v91.429zM1243.429 621.714v-219.429h-73.143v-164.571c0-10.286-8-18.286-18.286-18.286h-1060.571c-10.286 0-18.286 8-18.286 18.286v548.571c0 10.286 8 18.286 18.286 18.286h1060.571c10.286 0 18.286-8 18.286-18.286v-164.571h73.143z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "battery-1",
+ "battery-quarter"
+ ],
+ "defaultCode": 62019,
+ "grid": 14
+ },
+ {
+ "id": 528,
+ "paths": [
+ "M1243.429 329.143c40.571 0 73.143 32.571 73.143 73.143v219.429c0 40.571-32.571 73.143-73.143 73.143v91.429c0 50.286-41.143 91.429-91.429 91.429h-1060.571c-50.286 0-91.429-41.143-91.429-91.429v-548.571c0-50.286 41.143-91.429 91.429-91.429h1060.571c50.286 0 91.429 41.143 91.429 91.429v91.429zM1243.429 621.714v-219.429h-73.143v-164.571c0-10.286-8-18.286-18.286-18.286h-1060.571c-10.286 0-18.286 8-18.286 18.286v548.571c0 10.286 8 18.286 18.286 18.286h1060.571c10.286 0 18.286-8 18.286-18.286v-164.571h73.143z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "battery-0",
+ "battery-empty"
+ ],
+ "defaultCode": 62020,
+ "grid": 14
+ },
+ {
+ "id": 529,
+ "paths": [
+ "M647.429 596c10.857 10.286 13.714 26.286 8 39.429-5.714 13.714-18.857 22.857-33.714 22.857h-218.286l114.857 272c8 18.857-1.143 40-19.429 48l-101.143 42.857c-18.857 8-40-1.143-48-19.429l-109.143-258.286-178.286 178.286c-6.857 6.857-16 10.857-25.714 10.857-4.571 0-9.714-1.143-13.714-2.857-13.714-5.714-22.857-18.857-22.857-33.714v-859.429c0-14.857 9.143-28 22.857-33.714 4-1.714 9.143-2.857 13.714-2.857 9.714 0 18.857 3.429 25.714 10.857z"
+ ],
+ "width": 661.1382857142856,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mouse-pointer"
+ ],
+ "defaultCode": 62021,
+ "grid": 14
+ },
+ {
+ "id": 530,
+ "paths": [
+ "M475.429 73.143c-121.143 0-182.857 42.857-182.857 128v237.714h73.143v73.143h-73.143v310.857c0 85.143 61.714 128 182.857 128h36.571v73.143h-36.571c-102.857 0-178.286-29.714-219.429-83.429-41.143 53.714-116.571 83.429-219.429 83.429h-36.571v-73.143h36.571c121.143 0 182.857-42.857 182.857-128v-310.857h-73.143v-73.143h73.143v-237.714c0-85.143-61.714-128-182.857-128h-36.571v-73.143h36.571c102.857 0 178.286 29.714 219.429 83.429 41.143-53.714 116.571-83.429 219.429-83.429h36.571v73.143h-36.571z"
+ ],
+ "width": 512,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "i-cursor"
+ ],
+ "defaultCode": 62022,
+ "grid": 14
+ },
+ {
+ "id": 531,
+ "paths": [
+ "M1170.286 219.429h-73.143v585.143h73.143v219.429h-219.429v-73.143h-731.429v73.143h-219.429v-219.429h73.143v-585.143h-73.143v-219.429h219.429v73.143h731.429v-73.143h219.429v219.429zM1024 73.143v73.143h73.143v-73.143h-73.143zM73.143 73.143v73.143h73.143v-73.143h-73.143zM146.286 950.857v-73.143h-73.143v73.143h73.143zM950.857 877.714v-73.143h73.143v-585.143h-73.143v-73.143h-731.429v73.143h-73.143v585.143h73.143v73.143h731.429zM1097.143 950.857v-73.143h-73.143v73.143h73.143zM731.429 365.714h219.429v438.857h-512v-146.286h-219.429v-438.857h512v146.286zM292.571 585.143h365.714v-292.571h-365.714v292.571zM877.714 731.429v-292.571h-146.286v219.429h-219.429v73.143h365.714z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "object-group"
+ ],
+ "defaultCode": 62023,
+ "grid": 14
+ },
+ {
+ "id": 532,
+ "paths": [
+ "M1316.571 438.857h-73.143v365.714h73.143v219.429h-219.429v-73.143h-512v73.143h-219.429v-219.429h73.143v-73.143h-219.429v73.143h-219.429v-219.429h73.143v-365.714h-73.143v-219.429h219.429v73.143h512v-73.143h219.429v219.429h-73.143v73.143h219.429v-73.143h219.429v219.429zM1170.286 292.571v73.143h73.143v-73.143h-73.143zM804.571 73.143v73.143h73.143v-73.143h-73.143zM73.143 73.143v73.143h73.143v-73.143h-73.143zM146.286 731.429v-73.143h-73.143v73.143h73.143zM877.714 658.286h-73.143v73.143h73.143v-73.143zM219.429 658.286h512v-73.143h73.143v-365.714h-73.143v-73.143h-512v73.143h-73.143v365.714h73.143v73.143zM512 950.857v-73.143h-73.143v73.143h73.143zM1243.429 950.857v-73.143h-73.143v73.143h73.143zM1170.286 804.571v-365.714h-73.143v-73.143h-219.429v219.429h73.143v219.429h-219.429v-73.143h-219.429v73.143h73.143v73.143h512v-73.143h73.143z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "object-ungroup"
+ ],
+ "defaultCode": 62024,
+ "grid": 14
+ },
+ {
+ "id": 533,
+ "paths": [
+ "M585.143 713.143v237.714h-530.286c-30.286 0-54.857-24.571-54.857-54.857v-768c0-30.286 24.571-54.857 54.857-54.857h768c30.286 0 54.857 24.571 54.857 54.857v530.286h-237.714c-30.286 0-54.857 24.571-54.857 54.857zM658.286 731.429h217.714c-5.143 27.429-20 58.286-37.143 75.429l-105.143 105.143c-17.143 17.143-48 32-75.429 37.143v-217.714z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sticky-note"
+ ],
+ "defaultCode": 62025,
+ "grid": 14
+ },
+ {
+ "id": 534,
+ "paths": [
+ "M800 731.429h-141.714v141.714c9.714-3.429 19.429-8.571 23.429-12.571l105.714-105.714c4-4 9.143-13.714 12.571-23.429zM640 658.286h164.571v-512h-731.429v731.429h512v-164.571c0-30.286 24.571-54.857 54.857-54.857zM877.714 128v585.143c0 30.286-17.714 72.571-38.857 93.714l-105.143 105.143c-21.143 21.143-63.429 38.857-93.714 38.857h-585.143c-30.286 0-54.857-24.571-54.857-54.857v-768c0-30.286 24.571-54.857 54.857-54.857h768c30.286 0 54.857 24.571 54.857 54.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sticky-note-o"
+ ],
+ "defaultCode": 62026,
+ "grid": 14
+ },
+ {
+ "id": 535,
+ "paths": [
+ "M1114.857 570.286c0 20.571-13.714 35.429-30.857 38.857-2.286 0.571-7.429 1.143-10.286 1.143h-87.429v-80h87.429c2.857 0 8 0.571 10.286 1.143 17.143 3.429 30.857 18.857 30.857 38.857zM1104.571 448.571c0 20-13.714 33.143-30.286 36-1.714 0.571-5.714 0.571-8.571 0.571h-79.429v-73.714h79.429c2.857 0 6.857 0.571 8.571 0.571 16.571 2.857 30.286 16.571 30.286 36.571zM416 542.286v-176h-130.286v176c0 42.857-29.143 74.857-81.714 74.857-44.571 0-88.571-13.143-130.857-33.714v64c68.571 18.857 155.429 18.857 155.429 18.857 145.143 0 187.429-55.429 187.429-124zM824 647.429v-64.571c-29.714 15.429-67.429 30.286-114.286 33.714-82.286 6.286-131.429-33.714-131.429-104.571s49.143-110.857 131.429-104.571c46.857 3.429 84 17.714 114.286 33.143v-64c-61.143-15.429-118.857-17.714-118.857-17.714-201.143-9.143-258.286 70.286-258.286 153.143s57.143 162.286 258.286 153.143c0 0 57.714-2.286 118.857-17.714zM1243.429 581.714c0-42.286-37.714-69.714-86.857-73.143v-1.714c44.571-6.286 69.143-35.429 69.143-69.143 0-43.429-36-68.571-84.571-70.857-3.429 0-9.714-0.571-14.857-0.571h-260v291.429h280.571c55.429 0 96.571-29.714 96.571-76zM1316.571 146.286v731.429c0 40-33.143 73.143-73.143 73.143h-1170.286c-40 0-73.143-33.143-73.143-73.143v-731.429c0-40 33.143-73.143 73.143-73.143h1170.286c40 0 73.143 33.143 73.143 73.143z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cc-jcb"
+ ],
+ "defaultCode": 62027,
+ "grid": 14
+ },
+ {
+ "id": 536,
+ "paths": [
+ "M490.286 709.143v-396c-79.429 30.857-136 108-136 198.286s56.571 167.429 136 197.714zM778.286 511.429c0-90.286-56.571-167.429-136-198.286v396.571c79.429-30.857 136-108 136-198.286zM901.143 511.429c0 184.571-149.714 334.857-334.857 334.857-184.571 0-334.857-150.286-334.857-334.857 0-185.143 150.286-334.857 334.857-334.857 185.143 0 334.857 149.714 334.857 334.857zM1120 515.429c0-218.286-182.286-369.143-382.286-369.143h-172c-202.286 0-369.143 150.857-369.143 369.143 0 199.429 166.857 362.286 369.143 362.286h172c200 0 382.286-162.857 382.286-362.286zM1316.571 146.286v731.429c0 40-33.143 73.143-73.143 73.143h-1170.286c-40 0-73.143-33.143-73.143-73.143v-731.429c0-40 33.143-73.143 73.143-73.143h1170.286c40 0 73.143 33.143 73.143 73.143z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cc-diners-club"
+ ],
+ "defaultCode": 62028,
+ "grid": 14
+ },
+ {
+ "id": 537,
+ "paths": [
+ "M950.857 932.571v-621.714c0-9.714-8.571-18.286-18.286-18.286h-621.714c-9.714 0-18.286 8.571-18.286 18.286v621.714c0 9.714 8.571 18.286 18.286 18.286h621.714c9.714 0 18.286-8.571 18.286-18.286zM1024 310.857v621.714c0 50.286-41.143 91.429-91.429 91.429h-621.714c-50.286 0-91.429-41.143-91.429-91.429v-621.714c0-50.286 41.143-91.429 91.429-91.429h621.714c50.286 0 91.429 41.143 91.429 91.429zM804.571 91.429v91.429h-73.143v-91.429c0-9.714-8.571-18.286-18.286-18.286h-621.714c-9.714 0-18.286 8.571-18.286 18.286v621.714c0 9.714 8.571 18.286 18.286 18.286h91.429v73.143h-91.429c-50.286 0-91.429-41.143-91.429-91.429v-621.714c0-50.286 41.143-91.429 91.429-91.429h621.714c50.286 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "clone"
+ ],
+ "defaultCode": 62029,
+ "grid": 14
+ },
+ {
+ "id": 538,
+ "paths": [
+ "M987.429 256l-219.429 402.286h438.857zM256 256l-219.429 402.286h438.857zM725.143 146.286c-10.857 30.857-36 56-66.857 66.857v737.714h347.429c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-768c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h347.429v-737.714c-30.857-10.857-56-36-66.857-66.857h-280.571c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h280.571c15.429-42.857 55.429-73.143 103.429-73.143s88 30.286 103.429 73.143h280.571c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-280.571zM621.714 155.429c25.143 0 45.714-20.571 45.714-45.714s-20.571-45.714-45.714-45.714-45.714 20.571-45.714 45.714 20.571 45.714 45.714 45.714zM1243.429 658.286c0 117.714-162.857 164.571-256 164.571s-256-46.857-256-164.571v0c0-22.286 199.429-375.429 224-420 6.286-11.429 18.857-18.857 32-18.857s25.714 7.429 32 18.857c24.571 44.571 224 397.714 224 420v0zM512 658.286c0 117.714-162.857 164.571-256 164.571s-256-46.857-256-164.571v0c0-22.286 199.429-375.429 224-420 6.286-11.429 18.857-18.857 32-18.857s25.714 7.429 32 18.857c24.571 44.571 224 397.714 224 420z"
+ ],
+ "width": 1243.4285714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "balance-scale"
+ ],
+ "defaultCode": 62030,
+ "grid": 14
+ },
+ {
+ "id": 539,
+ "paths": [
+ "M804.571 73.143c0 211.429-101.143 364.571-213.143 438.857 112 74.286 213.143 227.429 213.143 438.857h54.857c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-841.143c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h54.857c0-211.429 101.143-364.571 213.143-438.857-112-74.286-213.143-227.429-213.143-438.857h-54.857c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h841.143c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-54.857zM499.429 477.714c115.429-43.429 232-196 232-404.571h-585.143c0 208.571 116.571 361.143 232 404.571 14.286 5.143 24 18.857 24 34.286s-9.714 29.143-24 34.286c-115.429 43.429-232 196-232 404.571h585.143c0-208.571-116.571-361.143-232-404.571-14.286-5.143-24-18.857-24-34.286s9.714-29.143 24-34.286z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hourglass-o"
+ ],
+ "defaultCode": 62032,
+ "grid": 14
+ },
+ {
+ "id": 540,
+ "paths": [
+ "M804.571 73.143c0 211.429-101.143 364.571-213.143 438.857 112 74.286 213.143 227.429 213.143 438.857h54.857c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-841.143c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h54.857c0-211.429 101.143-364.571 213.143-438.857-112-74.286-213.143-227.429-213.143-438.857h-54.857c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h841.143c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-54.857zM731.429 73.143h-585.143c0 25.143 1.714 49.714 5.143 73.143h574.857c3.429-23.429 5.143-48 5.143-73.143zM731.429 950.857c0-205.143-113.143-356.571-226.857-402.286h-131.429c-113.714 45.714-226.857 197.143-226.857 402.286h585.143z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hourglass-1",
+ "hourglass-start"
+ ],
+ "defaultCode": 62033,
+ "grid": 14
+ },
+ {
+ "id": 541,
+ "paths": [
+ "M804.571 73.143c0 211.429-101.143 364.571-213.143 438.857 112 74.286 213.143 227.429 213.143 438.857h54.857c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-841.143c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h54.857c0-211.429 101.143-364.571 213.143-438.857-112-74.286-213.143-227.429-213.143-438.857h-54.857c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h841.143c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-54.857zM731.429 73.143h-585.143c0 83.429 18.857 157.143 48.571 219.429h488c29.714-62.286 48.571-136 48.571-219.429zM698.857 768c-42.286-110.286-118.286-188.571-194.286-219.429h-131.429c-76 30.857-152 109.143-194.286 219.429h520z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hourglass-2",
+ "hourglass-half"
+ ],
+ "defaultCode": 62034,
+ "grid": 14
+ },
+ {
+ "id": 542,
+ "paths": [
+ "M804.571 73.143c0 211.429-101.143 364.571-213.143 438.857 112 74.286 213.143 227.429 213.143 438.857h54.857c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-841.143c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h54.857c0-211.429 101.143-364.571 213.143-438.857-112-74.286-213.143-227.429-213.143-438.857h-54.857c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h841.143c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-54.857zM499.429 477.714c115.429-43.429 232-196 232-404.571h-585.143c0 208.571 116.571 361.143 232 404.571 14.286 5.143 24 18.857 24 34.286s-9.714 29.143-24 34.286c-49.143 18.286-98.857 57.143-139.429 112h400c-40.571-54.857-90.286-93.714-139.429-112-14.286-5.143-24-18.857-24-34.286s9.714-29.143 24-34.286z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hourglass-3",
+ "hourglass-end"
+ ],
+ "defaultCode": 62035,
+ "grid": 14
+ },
+ {
+ "id": 543,
+ "paths": [
+ "M859.429 914.286c10.286 0 18.286 8 18.286 18.286v73.143c0 10.286-8 18.286-18.286 18.286h-841.143c-10.286 0-18.286-8-18.286-18.286v-73.143c0-10.286 8-18.286 18.286-18.286h841.143zM74.286 877.714c10.857-192.571 168-296 273.143-365.714-105.143-69.714-262.286-173.143-273.143-365.714h729.143c-10.857 192.571-168 296-273.143 365.714 105.143 69.714 262.286 173.143 273.143 365.714h-729.143zM859.429 0c10.286 0 18.286 8 18.286 18.286v73.143c0 10.286-8 18.286-18.286 18.286h-841.143c-10.286 0-18.286-8-18.286-18.286v-73.143c0-10.286 8-18.286 18.286-18.286h841.143z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hourglass"
+ ],
+ "defaultCode": 62036,
+ "grid": 14
+ },
+ {
+ "id": 544,
+ "paths": [
+ "M438.857 219.429c-40.571 0-73.143 32.571-73.143 73.143v73.143h-18.286v-53.143c0-36-27.429-65.714-64-65.714-35.429 0-64 28.571-64 64v245.143l-18.286-17.143v-98.286c0-36-27.429-65.714-64-65.714-35.429 0-64 28.571-64 64v128c0 17.714 7.429 34.286 20 46.857l177.143 169.143c16.571 16.571 22.286 35.429 22.286 58.286 0 20 16.571 36.571 36.571 36.571h365.714c20 0 36.571-16.571 36.571-36.571v-14.286c0-14.857 1.714-29.714 5.714-44l61.714-249.143c4-14.286 5.714-29.143 5.714-44v-140.571c0-36-27.429-65.714-64-65.714-35.429 0-64 28.571-64 64v18.286h-18.286v-71.429c0-30.286-20.571-58.286-50.857-64.571-4-0.571-8.571-1.143-13.143-1.143-35.429 0-64 28.571-64 64v73.143h-18.286v-69.714c0-38.286-27.429-72-65.714-76-2.857-0.571-5.143-0.571-7.429-0.571zM438.857 146.286c30.857 0 60.571 9.714 85.143 28.571 21.143-12.571 45.714-19.429 70.286-19.429 45.143 0 86.857 21.714 112.571 58.857 10.857-2.857 22.286-4 33.714-4 76.571 0 137.143 62.857 137.143 138.857v140.571c0 20.571-2.857 41.714-7.429 61.714l-62.286 249.143c-3.429 13.714-3.429 26.857-3.429 40.571 0 60.571-49.143 109.714-109.714 109.714h-365.714c-65.143 0-109.714-52-109.714-114.857l-176-169.143c-26.857-25.714-43.429-62.286-43.429-100v-128c0-75.429 61.714-137.143 137.143-137.143 3.429 0 6.286 0 9.143 0.571 4.571-72.571 65.143-128.571 137.143-128.571 19.429 0 38.286 4 56 12 26.857-25.714 62.286-39.429 99.429-39.429z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hand-grab-o",
+ "hand-rock-o"
+ ],
+ "defaultCode": 62037,
+ "grid": 14
+ },
+ {
+ "id": 545,
+ "paths": [
+ "M502.857 73.143c-35.429 0-64 28.571-64 64v374.857h-18.286v-301.714c0-35.429-28.571-64-64-64s-64 28.571-64 64v448l-88-117.143c-13.714-18.286-35.429-29.143-58.286-29.143-40.571 0-73.143 33.143-73.143 73.143 0 16 5.143 31.429 14.857 44l219.429 292.571c13.714 18.286 35.429 29.143 58.286 29.143h393.143c26.286 0 49.143-18.857 54.286-44.571l43.429-231.429c1.714-10.857 2.857-22.286 2.857-33.714v-284.571c0-35.429-28.571-64-64-64s-64 28.571-64 64v155.429h-18.286v-301.714c0-35.429-28.571-64-64-64s-64 28.571-64 64v301.714h-18.286v-374.857c0-35.429-28.571-64-64-64zM502.857 0c51.429 0 98.857 29.143 122.286 75.429 8-1.714 16-2.286 24-2.286 75.429 0 137.143 61.714 137.143 137.143v9.714c79.429-4.571 146.286 56.571 146.286 136.571v284.571c0 16-1.714 32-4.571 47.429l-43.429 230.857c-10.857 60.571-64 104.571-125.714 104.571h-393.143c-45.714 0-89.714-22.286-117.143-58.286l-219.429-292.571c-18.857-25.143-29.143-56.571-29.143-88 0-80.571 65.143-146.286 146.286-146.286 24 0 53.143 5.714 73.143 19.429v-248c0-75.429 61.714-137.143 137.143-137.143 8 0 16 0.571 24 2.286 23.429-46.286 70.857-75.429 122.286-75.429z"
+ ],
+ "width": 932.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hand-paper-o",
+ "hand-stop-o"
+ ],
+ "defaultCode": 62038,
+ "grid": 14
+ },
+ {
+ "id": 546,
+ "paths": [
+ "M613.143 950.857h-101.143c-59.429 0-104.571-25.714-129.143-80.571-8.571-18.286-13.143-38.286-13.143-58.286v-2.857c-46.857-22.857-77.143-70.857-77.143-123.429 0-6.286 0-21.714 2.857-27.429h-149.143c-80.571 0-146.286-65.714-146.286-146.286s65.714-146.286 146.286-146.286h64.571l-25.143-9.714c-56.571-21.143-94.286-76-94.286-136.571 0-80.571 65.714-146.286 146.286-146.286 17.714 0 35.429 3.429 52 9.714l358.857 136.571h229.143c80.571 0 146.286 65.714 146.286 146.286v381.714c0 67.429-45.714 125.714-110.857 141.714l-193.714 48.571c-34.286 8.571-70.286 13.143-106.286 13.143zM585.143 544.571l-88.571 40.571-93.143 42.286c-22.857 10.286-37.714 33.143-37.714 58.286 0 35.429 28.571 64 64 64 9.143 0 18.286-1.714 26.286-5.714l193.143-88c-37.143-8-64-41.714-64-80v-31.429zM768 722.286c0-35.429-28.571-64-64-64-9.143 0-18.286 1.714-26.286 5.714l-165.714 75.429c-34.286 15.429-69.143 29.143-69.143 72.571 0 37.714 26.286 65.143 64.571 65.143 6.857 0 16-2.286 21.714-5.143l201.143-91.429c22.857-10.286 37.714-33.143 37.714-58.286zM635.429 292.571l-371.429-141.714c-8.571-2.857-17.143-4.571-26.286-4.571-40 0-73.143 32.571-73.143 73.143 0 30.286 18.857 57.714 46.857 68.571l300.571 114.286v36.571h-365.714c-40.571 0-73.143 32.571-73.143 73.143s32.571 73.143 73.143 73.143h305.714l133.143-60.571v-113.143c0-22.857 9.714-45.143 26.286-60.571l63.429-58.286h-39.429zM613.143 877.714c29.714 0 60-3.429 88.571-10.857l193.714-48.571c32.571-8 55.429-37.143 55.429-70.857v-381.714c0-40.571-32.571-73.143-73.143-73.143h-176l-77.714 72c-13.143 12-20.571 29.143-20.571 46.857v169.143c0 35.429 29.143 61.714 64 61.714 35.429 0 64-31.429 64-66.286v-118.857h18.286v118.857c0 25.714-12.571 49.714-32.571 65.143 40 6.286 69.143 41.143 69.143 81.143 0 32-18.857 61.714-48 74.857l-177.143 80.571h52z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hand-scissors-o"
+ ],
+ "defaultCode": 62039,
+ "grid": 14
+ },
+ {
+ "id": 547,
+ "paths": [
+ "M657.714 0c46.286 0 90.857 22.286 118.286 60l326.857 446.286c44 59.429 67.429 130.857 67.429 205.143v202.857c0 60.571-49.143 109.714-109.714 109.714h-219.429c-60.571 0-109.714-49.143-109.714-109.714v-101.143l-163.429-81.714h-312c-60.571 0-109.714-49.143-109.714-109.714v-18.286c0-90.857 73.714-164.571 164.571-164.571h240l24-73.143h-392c-76 0-139.429-58.286-145.714-133.714-24-29.143-37.143-66.286-37.143-104v-18.286c0-60.571 49.143-109.714 109.714-109.714h548zM1097.143 914.286v-202.857c0-57.714-18.857-115.429-53.143-162.286l-327.429-446.286c-13.714-18.286-35.429-29.714-58.857-29.714h-548c-20 0-36.571 16.571-36.571 36.571 0 30.286 0.571 51.429 20.571 76 7.429-23.429 28.571-39.429 52.571-39.429h475.429v18.286h-475.429c-20 0-36.571 16.571-36.571 36.571 0 10.857-0.571 22.286 1.714 33.143 6.286 33.714 37.143 58.286 71.429 58.286h417.714c30.286 0 54.857 24.571 54.857 54.857 0 5.714-1.143 12-2.857 17.143l-36.571 109.714c-7.429 22.286-28.571 37.714-52 37.714h-253.143c-50.286 0-91.429 41.143-91.429 91.429v18.286c0 20 16.571 36.571 36.571 36.571h320.571c5.714 0 11.429 1.143 16.571 4l181.143 90.286c18.286 9.714 30.286 28.571 30.286 49.143v112.571c0 20 16.571 36.571 36.571 36.571h219.429c20 0 36.571-16.571 36.571-36.571z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hand-lizard-o"
+ ],
+ "defaultCode": 62040,
+ "grid": 14
+ },
+ {
+ "id": 548,
+ "paths": [
+ "M262.286 1024c-58.857 0-109.714-40-124-97.143l-57.714-229.143c-4.571-20-7.429-41.143-7.429-61.714 0-13.143 0-25.714-2.857-38.286l-66.286-272.571c-2.857-10.857-4-21.714-4-32.571 0-70.857 53.714-129.143 124-136.571 12.571-64.571 68-110.286 134.286-110.286 63.429 0 118.286 43.429 133.143 105.143l47.429 198.857 58.857-244.571c14.857-61.714 69.714-105.143 133.143-105.143 68 0 124 49.143 134.857 115.429 70.286 8 121.143 67.429 121.143 137.714 0 10.857-1.714 22.286-4 33.714l-70.286 292.571c45.714-34.286 78.857-67.429 138.857-67.429 79.429 0 145.714 64.571 145.714 144.571 0 48-23.429 92.571-61.143 121.143l-289.714 217.143c-25.143 18.857-56 29.143-87.429 29.143h-396.571zM630.857 73.143c-29.143 0-54.857 20.571-61.714 49.143l-93.714 389.714h-72.571l-82.857-344c-6.857-28.571-32.571-49.143-61.714-49.143-36.571 0-64 29.143-64 64.571 0 5.714 0.571 10.857 1.714 16l75.429 312.571h-14.857l-56.571-233.143c-6.857-28-32.571-50.286-62.286-50.286-35.429 0-64.571 28.571-64.571 64 0 5.143 0.571 10.286 1.714 14.857l66.286 273.143c8 33.143 2.286 66.286 10.857 99.429l57.143 229.143c6.286 24.571 28 41.714 53.143 41.714h396.571c15.429 0 30.857-5.143 43.429-14.857l289.714-216.571c19.429-14.857 32-38.286 32-62.857 0-40-33.143-71.429-72.571-71.429-16 0-31.429 5.143-44 14.857l-175.429 131.429v-129.714c0-4.571 73.714-307.429 79.429-332 1.143-5.143 2.286-10.857 2.286-16.571 0-35.429-26.857-65.714-63.429-65.714-29.714 0-55.429 20.571-62.286 49.143l-66.286 275.429h-14.857l85.714-356.571c1.143-5.143 1.714-10.857 1.714-16 0-36-26.286-66.286-63.429-66.286z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hand-spock-o"
+ ],
+ "defaultCode": 62041,
+ "grid": 14
+ },
+ {
+ "id": 549,
+ "paths": [
+ "M365.714 73.143c-40.571 0-73.143 32.571-73.143 73.143v512l-86.286-115.429c-14.286-18.857-37.143-30.857-61.143-30.857-40 0-72 33.714-72 73.143 0 16 5.143 31.429 14.857 44l219.429 292.571c13.714 18.286 35.429 29.143 58.286 29.143h410.286c16.571 0 31.429-11.429 35.429-27.429l52.571-210.286c9.143-36.571 13.714-73.714 13.714-110.857v-124c0-30.286-23.429-57.714-54.857-57.714-30.286 0-54.857 24.571-54.857 54.857h-18.286v-34.857c0-36-27.429-65.714-64-65.714-35.429 0-64 28.571-64 64v36.571h-18.286v-51.429c0-41.143-31.429-76.571-73.143-76.571-40.571 0-73.143 32.571-73.143 73.143v54.857h-18.286v-325.714c0-41.143-31.429-76.571-73.143-76.571zM365.714 0c81.714 0 146.286 68.571 146.286 149.714v125.714c6.286-0.571 12-1.143 18.286-1.143 37.143 0 72 14.286 98.857 39.429 17.714-8 37.143-12 56.571-12 41.143 0 79.429 18.286 105.143 49.714 10.857-2.857 21.143-4 32-4 72 0 128 60 128 130.857v124c0 42.857-5.143 86.286-16 128.571l-52.571 210.286c-12 48.571-56 82.857-106.286 82.857h-410.286c-45.714 0-89.714-22.286-117.143-58.286l-219.429-292.571c-18.857-25.143-29.143-56.571-29.143-88 0-80 65.143-146.286 145.143-146.286 26.286 0 52 6.857 74.286 20v-312.571c0-80.571 65.714-146.286 146.286-146.286zM438.857 804.571v-219.429h-18.286v219.429h18.286zM585.143 804.571v-219.429h-18.286v219.429h18.286zM731.429 804.571v-219.429h-18.286v219.429h18.286z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hand-pointer-o"
+ ],
+ "defaultCode": 62042,
+ "grid": 14
+ },
+ {
+ "id": 550,
+ "paths": [
+ "M736 369.714c21.143 0 42.286 4 61.143 13.143 54.857 24.571 80.571 69.714 80.571 129.143v101.143c0 36-4.571 72-13.143 106.286l-48.571 193.714c-16 65.143-74.286 110.857-141.714 110.857h-381.714c-80.571 0-146.286-65.714-146.286-146.286v-229.143l-136.571-358.857c-6.286-16.571-9.714-34.286-9.714-52 0-80.571 65.714-146.286 146.286-146.286 60.571 0 115.429 37.714 136.571 94.286l9.714 25.143v-64.571c0-80.571 65.714-146.286 146.286-146.286s146.286 65.714 146.286 146.286v149.143c9.143-1.714 18.286-2.857 27.429-2.857 52.571 0 100.571 30.286 123.429 77.143zM612.571 365.714c-25.143 0-48 14.857-58.286 37.714l-42.286 93.143-40.571 88.571h31.429c38.286 0 72 26.857 80 64l88-193.143c4-8 5.714-17.143 5.714-26.286 0-35.429-28.571-64-64-64zM738.857 442.857c-43.429 0-57.143 34.857-72.571 69.143l-75.429 165.714c-4 8-5.714 17.143-5.714 26.286 0 35.429 28.571 64 64 64 25.143 0 48-14.857 58.286-37.714l91.429-201.143c2.857-5.714 5.143-14.857 5.143-21.714 0-38.286-27.429-64.571-65.143-64.571zM73.143 237.714c0 9.143 1.714 17.714 4.571 26.286l141.714 371.429v39.429l58.286-63.429c15.429-16.571 37.714-26.286 60.571-26.286h113.143l60.571-133.143v-305.714c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143v365.714h-36.571l-114.286-300.571c-10.857-28-38.286-46.857-68.571-46.857-40.571 0-73.143 33.143-73.143 73.143zM674.286 950.857c33.714 0 62.857-22.857 70.857-55.429l48.571-193.714c7.429-28.571 10.857-58.857 10.857-88.571v-52l-80.571 177.143c-13.143 29.143-42.857 48-74.857 48-40 0-74.857-29.143-81.143-69.143-15.429 20-39.429 32.571-65.143 32.571h-118.857v-18.286h118.857c34.857 0 66.286-28.571 66.286-64 0-34.857-26.286-64-61.714-64h-169.143c-17.714 0-34.857 7.429-46.857 20.571l-72 77.714v176c0 40.571 32.571 73.143 73.143 73.143h381.714z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hand-peace-o"
+ ],
+ "defaultCode": 62043,
+ "grid": 14
+ },
+ {
+ "id": 551,
+ "paths": [
+ "M489.714 310.857v66.857c0 9.714-8.571 17.714-18.286 17.714h-170.286v464c0 10.286-8 18.286-17.714 18.286h-77.143c-10.286 0-18.286-8-18.286-18.286v-464h-169.714c-10.286 0-18.286-8-18.286-17.714v-66.857c0-10.286 8-18.286 18.286-18.286h453.143c9.714 0 18.286 8 18.286 18.286zM1082.857 309.143l44 549.143c0.571 5.143-1.143 9.714-4.571 13.714-3.429 3.429-8 5.714-13.143 5.714h-76.571c-9.143 0-17.143-7.429-17.714-16.571l-26.286-336-108 242.857c-2.857 6.857-9.143 10.857-16.571 10.857h-68.571c-6.857 0-13.143-4-16.571-10.857l-107.429-244-25.714 337.143c-0.571 9.143-8.571 16.571-17.714 16.571h-77.143c-5.143 0-9.714-2.286-13.143-5.714-3.429-4-5.143-8.571-5.143-13.714l44.571-549.143c0.571-9.143 8.571-16.571 17.714-16.571h81.143c7.429 0 13.714 4.571 16.571 10.857l125.714 297.143c4 9.143 8 19.429 11.429 29.143 4-9.714 7.429-20 11.429-29.143l126.286-297.143c2.857-6.286 9.143-10.857 16.571-10.857h80.571c9.714 0 17.714 7.429 18.286 16.571z"
+ ],
+ "width": 1127.424,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "trademark"
+ ],
+ "defaultCode": 62044,
+ "grid": 14
+ },
+ {
+ "id": 552,
+ "paths": [
+ "M595.429 401.714c0-33.143-11.429-56.571-34.286-69.143-11.429-6.286-27.429-10.286-66.857-10.286h-70.286v160.571h92.571c50.286 0 78.857-29.714 78.857-81.143zM625.143 564.571l117.143 213.143c2.857 5.714 2.857 12.571-0.571 17.714-2.857 5.714-9.143 9.143-15.429 9.143h-86.857c-6.857 0-13.143-3.429-16-9.714l-110.857-208.571h-88.571v200c0 10.286-8 18.286-18.286 18.286h-76.571c-10.286 0-18.286-8-18.286-18.286v-548.571c0-10.286 8-18.286 18.286-18.286h168c60 0 86.286 5.143 108.571 13.714 64.571 24 104.571 87.429 104.571 165.143 0 70.286-34.857 129.714-90.286 157.143 1.714 2.857 3.429 5.714 5.143 9.143zM512 91.429c-232 0-420.571 188.571-420.571 420.571s188.571 420.571 420.571 420.571 420.571-188.571 420.571-420.571-188.571-420.571-420.571-420.571zM1024 512c0 282.857-229.143 512-512 512s-512-229.143-512-512 229.143-512 512-512v0c282.857 0 512 229.143 512 512z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "registered"
+ ],
+ "defaultCode": 62045,
+ "grid": 14
+ },
+ {
+ "id": 553,
+ "paths": [
+ "M345.714 704.571c93.714 0 144.571-57.143 146.857-59.429 4.571-5.714 5.714-14.286 1.714-20.571l-25.714-46.857c-2.286-5.143-8-8.571-13.714-9.714-5.714-0.571-11.429 1.714-15.429 6.286-0.571 0-36.571 38.286-89.143 38.286-57.714 0-99.429-42.286-99.429-101.143 0-58.286 40.571-100 97.143-100 47.429 0 78.857 32 78.857 32 4 4 9.143 6.286 14.857 5.714s10.857-3.429 13.714-8l30.286-44.571c4.571-6.857 4-16-1.143-22.286-1.714-2.286-48-54.857-138.857-54.857-112.571 0-196.571 82.857-196.571 192.571 0 111.429 82.286 192.571 196.571 192.571zM705.714 704.571c94.286 0 144.571-57.143 146.857-59.429 4.571-5.714 5.714-14.286 2.286-20.571l-25.714-46.857c-2.857-5.143-8-8.571-14.286-9.714-5.714-0.571-11.429 1.714-15.429 6.286-0.571 0-36.571 38.286-89.143 38.286-57.714 0-99.429-42.286-99.429-101.143 0-58.286 40.571-100 97.143-100 48 0 78.857 32 78.857 32 4 4 9.143 6.286 14.857 5.714s10.857-3.429 13.714-8l30.286-44.571c4.571-6.857 4-16-1.143-22.286-1.714-2.286-48-54.857-138.857-54.857-112 0-196.571 82.857-196.571 192.571 0 111.429 82.286 192.571 196.571 192.571zM512 91.429c-232 0-420.571 188.571-420.571 420.571s188.571 420.571 420.571 420.571 420.571-188.571 420.571-420.571-188.571-420.571-420.571-420.571zM512 0c282.857 0 512 229.143 512 512s-229.143 512-512 512-512-229.143-512-512 229.143-512 512-512z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "creative-commons"
+ ],
+ "defaultCode": 62046,
+ "grid": 14
+ },
+ {
+ "id": 554,
+ "paths": [
+ "M420.571 457.143l219.429 219.429-219.429 219.429-384-384 384-384 96 96-54.857 54.857-41.143-41.143-274.286 274.286 274.286 274.286 110.286-110.286-165.143-164zM749.714 128l384 384-384 384-96-96 54.857-54.857 41.143 41.143 274.286-274.286-274.286-274.286-110.286 110.286 165.143 164-54.857 54.857-219.429-219.429z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "gg"
+ ],
+ "defaultCode": 62048,
+ "grid": 14
+ },
+ {
+ "id": 555,
+ "paths": [
+ "M409.714 773.714l154.857-154.857-159.429-159.429-50.286 50.286 109.714 109.143-54.857 54.857-159.429-159.429 159.429-159.429 22.857 22.857 49.714-49.714-72.571-73.143-259.429 259.429zM614.286 769.143l259.429-259.429-259.429-259.429-154.857 154.857 159.429 159.429 50.286-50.286-109.714-109.143 54.857-54.857 159.429 159.429-159.429 159.429-22.857-22.857-49.714 50.286zM1024 512c0 282.857-229.143 512-512 512s-512-229.143-512-512 229.143-512 512-512 512 229.143 512 512z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "gg-circle"
+ ],
+ "defaultCode": 62049,
+ "grid": 14
+ },
+ {
+ "id": 556,
+ "paths": [
+ "M372 569.714c0 29.714-24 53.714-53.143 53.714-29.714 0-53.714-24-53.714-53.714 0-29.143 24-53.143 53.714-53.143 29.143 0 53.143 24 53.143 53.143zM1031.429 569.143c0 29.714-24 53.714-53.714 53.714s-53.714-24-53.714-53.714 24-53.143 53.714-53.143 53.714 23.429 53.714 53.143zM437.143 569.714c0-60.571-49.714-110.286-110.286-110.286-61.143 0-110.286 49.714-110.286 110.286 0 61.143 49.143 110.286 110.286 110.286 60.571 0 110.286-49.143 110.286-110.286zM1096 569.143c0-60.571-49.143-110.286-110.286-110.286-60.571 0-110.286 49.714-110.286 110.286 0 61.143 49.714 110.286 110.286 110.286 61.143 0 110.286-49.143 110.286-110.286zM485.714 569.714c0 88-70.857 159.429-158.857 159.429s-159.429-71.429-159.429-159.429c0-87.429 71.429-158.857 159.429-158.857s158.857 71.429 158.857 158.857zM1145.143 569.143c0 88-71.429 158.857-159.429 158.857-87.429 0-158.857-70.857-158.857-158.857s71.429-158.857 158.857-158.857c88 0 159.429 70.857 159.429 158.857zM594.286 570.857c0-145.714-118.286-264-264-264-145.143 0-263.429 118.286-263.429 264s118.286 264 263.429 264c145.714 0 264-118.286 264-264zM976 243.429c-94.286-41.143-200.571-63.429-317.714-63.429s-233.714 22.286-327.429 62.857c181.143 0.571 327.429 146.857 327.429 328 0-177.714 141.143-322.286 317.714-327.429zM1249.714 570.857c0-145.714-117.714-264-263.429-264s-264 118.286-264 264 118.286 264 264 264 263.429-118.286 263.429-264zM1097.714 247.429h218.857c-34.286 40-59.429 93.714-65.714 130.857 39.429 54.286 62.857 120.571 62.857 192.571 0 181.143-146.857 327.429-327.429 327.429-102.857 0-194.286-46.857-254.286-120.571 0 0-26.857 32-73.714 102.286-8-16.571-48.571-74.286-73.143-102.857-60 74.286-152 121.143-254.857 121.143-180.571 0-327.429-146.286-327.429-327.429 0-72 23.429-138.286 62.857-192.571-6.286-37.143-31.429-90.857-65.714-130.857h208.571c112-74.857 274.857-121.714 449.714-121.714s327.429 46.857 439.429 121.714z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tripadvisor"
+ ],
+ "defaultCode": 62050,
+ "grid": 14
+ },
+ {
+ "id": 557,
+ "paths": [
+ "M365.714 518.286c-142.857 0-259.429-116-259.429-258.857 0-143.429 116.571-259.429 259.429-259.429s259.429 116 259.429 259.429c0 142.857-116.571 258.857-259.429 258.857zM365.714 131.429c-70.286 0-127.429 57.143-127.429 128 0 70.286 57.143 127.429 127.429 127.429s127.429-57.143 127.429-127.429c0-70.857-57.143-128-127.429-128zM664.571 549.714c25.143 51.429-3.429 76-68.571 118.286-54.857 34.857-130.286 48.571-180 53.714l41.714 41.143 152.571 152.571c22.857 23.429 22.857 61.143 0 84l-6.857 7.429c-23.429 22.857-61.143 22.857-84.571 0-38.286-38.857-94.286-94.857-152.571-153.143l-152.571 153.143c-23.429 22.857-61.143 22.857-84 0l-6.857-7.429c-23.429-22.857-23.429-60.571 0-84 38.857-38.857 94.286-94.857 152.571-152.571l41.143-41.143c-49.143-5.143-125.714-18.286-181.143-53.714-65.143-42.286-93.714-66.857-68.571-118.286 14.857-29.143 55.429-53.714 109.143-11.429 0 0 72.571 57.714 189.714 57.714s189.714-57.714 189.714-57.714c53.714-42.286 94.286-17.714 109.143 11.429z"
+ ],
+ "width": 731.4285714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "odnoklassniki"
+ ],
+ "defaultCode": 62051,
+ "grid": 14
+ },
+ {
+ "id": 558,
+ "paths": [
+ "M529.714 331.429c0 50.286-40.571 90.857-90.857 90.857s-90.857-40.571-90.857-90.857 40.571-90.857 90.857-90.857 90.857 40.571 90.857 90.857zM652 538.857c-10.286-20.571-39.429-38.286-77.714-8 0 0-52 41.143-135.429 41.143s-135.429-41.143-135.429-41.143c-38.286-30.286-67.429-12.571-77.714 8-18.286 36.571 2.286 54.286 48.571 84.571 39.429 25.143 94.286 34.857 129.143 38.286l-29.143 29.714c-41.143 41.143-81.143 81.143-109.143 108.571-16.571 16.571-16.571 43.429 0 60l5.143 5.143c16.571 16.571 43.429 16.571 60 0l109.143-109.143c41.143 41.714 81.143 81.714 109.143 109.143 16.571 16.571 43.429 16.571 60 0l5.143-5.143c16.571-16.571 16.571-43.429 0-60l-109.143-108.571-29.714-29.714c35.429-3.429 89.143-13.143 128.571-38.286 46.286-30.286 66.857-48 48.571-84.571zM624 331.429c0-102.286-82.857-185.143-185.143-185.143s-185.143 82.857-185.143 185.143 82.857 185.143 185.143 185.143 185.143-82.857 185.143-185.143zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "odnoklassniki-square"
+ ],
+ "defaultCode": 62052,
+ "grid": 14
+ },
+ {
+ "id": 559,
+ "paths": [
+ "M894.286 73.143c49.714 0 88.571 40 88.571 89.143v296.571c0 273.714-218.857 492-490.857 492-273.143 0-492-218.286-492-492v-296.571c0-48.571 40.571-89.143 89.143-89.143h805.143zM492 681.143c17.143 0 34.286-6.857 46.857-18.857l230.857-221.714c13.143-12.571 21.143-30.286 21.143-48.571 0-37.143-30.286-67.429-67.429-67.429-17.714 0-34.286 6.857-46.857 18.857l-184.571 177.143-184.571-177.143c-12.571-12-29.143-18.857-46.286-18.857-37.143 0-67.429 30.286-67.429 67.429 0 18.286 7.429 36 20.571 48.571l231.429 221.714c12 12 29.143 18.857 46.286 18.857z"
+ ],
+ "width": 982.8205714285714,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "get-pocket"
+ ],
+ "defaultCode": 62053,
+ "grid": 14
+ },
+ {
+ "id": 560,
+ "paths": [
+ "M853.714 936.571l-168.571-397.143c-66.857 130.857-140.571 267.429-204 397.143-0.571 0.571-30.857 0-30.857-0.571-96.571-225.714-197.714-449.714-294.286-676-23.429-54.857-101.714-144-155.429-143.429 0-6.286-0.571-20.571-0.571-29.143h333.143v28.571c-39.429 2.286-108.571 27.429-89.143 70.286 45.143 102.286 213.143 494.286 258.286 593.714 30.857-61.143 118.857-224.571 154.857-293.714-28.571-58.286-120.571-275.429-149.714-329.143-20-36.571-74.286-40-114.857-40.571v-28.571l293.143 0.571v26.857c-40 1.143-78.286 16-60.571 53.714 38.857 82.286 62.857 140 98.857 215.429 11.429-22.286 71.429-142.857 98.857-207.429 18.286-42.286-8-58.857-79.429-60.571 0.571-7.429 0-21.143 0.571-28 91.429-0.571 228.571-0.571 253.143-1.143v28c-46.286 1.714-94.286 26.286-119.429 65.143l-121.714 252.571c13.143 33.143 130.286 293.714 142.286 322.286l252-581.143c-17.714-47.429-74.857-57.714-97.143-58.286v-28.571l262.857 2.286 0.571 1.143-0.571 25.143c-57.714 1.714-92.571 32.571-114.857 82.857-51.429 118.857-212.571 493.714-319.429 737.714h-28z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wikipedia-w"
+ ],
+ "defaultCode": 62054,
+ "grid": 14
+ },
+ {
+ "id": 561,
+ "paths": [
+ "M542.286 510.286c0 18.857-13.143 36.571-33.143 36.571-18.857 0-36.571-13.714-36.571-33.143 0-18.857 13.714-36.571 33.714-36.571 18.286 0 36 13.143 36 33.143zM550.857 543.429l200-332c-26.857 25.143-277.143 255.429-284 267.429l-199.429 331.429c26.286-24.571 277.143-256 283.429-266.857zM920.571 512c0 74.857-20.571 148.571-59.429 212-5.714-2.857-29.714-20-34.286-20-4 0-7.429 3.429-7.429 7.429 0 7.429 26.857 21.143 33.714 25.143-56.571 85.714-144 147.429-243.429 172l-9.143-38.286c-0.571-5.143-4-5.714-8.571-5.714-4 0-6.286 5.714-5.714 8.571l9.143 38.857c-27.429 5.714-55.429 8.571-83.429 8.571-74.857 0-148.571-21.143-212.571-60 3.429-5.714 25.143-37.143 25.143-41.714 0-4-3.429-7.429-7.429-7.429-8 0-25.143 34.286-30.286 41.143-86.286-57.143-148.571-145.714-172.571-246.857l39.429-8.571c4.571-1.143 5.714-4.571 5.714-8.571s-5.714-6.286-9.143-5.714l-38.857 8.571c-5.143-26.286-8-52.571-8-79.429 0-76.571 21.714-152 62.286-216.571 5.714 3.429 33.143 22.286 37.714 22.286 4 0 7.429-2.857 7.429-6.857 0-8-30.286-23.429-37.143-28 58.286-85.143 146.857-146.286 247.429-169.143l8.571 38.286c1.143 4.571 4.571 5.714 8.571 5.714s6.286-5.714 5.714-9.143l-8.571-37.714c25.143-4.571 50.857-7.429 76.571-7.429v0c76.571 0 151.429 21.714 216.571 62.286-4 5.714-22.286 32.571-22.286 37.143 0 4 2.857 7.429 6.857 7.429 8 0 23.429-29.714 27.429-36.571 84.571 57.143 145.143 144.571 168.571 244l-32 6.857c-5.143 1.143-5.714 4.571-5.714 9.143 0 4 5.714 6.286 8.571 5.714l32.571-7.429c5.143 26.286 8 53.143 8 80zM969.143 512c0-252.571-204.571-457.143-457.143-457.143s-457.143 204.571-457.143 457.143 204.571 457.143 457.143 457.143 457.143-204.571 457.143-457.143zM1024 512c0 282.857-229.143 512-512 512s-512-229.143-512-512 229.143-512 512-512 512 229.143 512 512z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "safari"
+ ],
+ "defaultCode": 62055,
+ "grid": 14
+ },
+ {
+ "id": 562,
+ "paths": [
+ "M510.286 0c87.429-0.571 176.571 21.714 257.714 68.571 89.714 52 157.714 126.857 201.143 212.571l-424-22.286c-120-6.857-234.286 60.571-273.714 173.714l-157.714-242.286c98.286-122.286 245.714-189.714 396.571-190.286zM83.429 231.429l192.571 378.857c54.286 106.857 169.143 172 288 149.714l-131.429 257.714c-245.143-37.714-432.571-249.714-432.571-505.714 0-103.429 30.857-200 83.429-280.571zM989.714 328c89.714 230.857 0 499.429-221.714 627.429-89.714 52-188.571 73.143-284.571 68l231.429-356c65.714-101.143 64.571-233.143-13.714-324.571zM512 339.429c95.429 0 172.571 77.143 172.571 172.571s-77.143 172.571-172.571 172.571-172.571-77.143-172.571-172.571 77.143-172.571 172.571-172.571z"
+ ],
+ "width": 1079.4422857142856,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chrome"
+ ],
+ "defaultCode": 62056,
+ "grid": 14
+ },
+ {
+ "id": 563,
+ "paths": [
+ "M516 1024c-220.571 0-396-129.143-476.571-313.714-90.286-205.143-18.286-533.714 142.286-678.857l-6.286 160.571c8-10.286 69.143-13.143 78.857 0 33.143-63.429 140-110.857 225.714-112.571-32.571 27.429-108 127.429-101.714 178.286 41.714 13.143 105.714 13.714 139.429 16 10.286 5.714 8.571 40.571-12 69.143 0 0-26.857 37.143-99.429 50.286l8.571 108-79.429-38.286c-25.714 65.143 36 122.857 100 112 70.857-12 96-58.286 145.714-55.429 49.143 2.857 68.571 30.286 62.286 56 0 0-8 30.857-61.143 25.714-45.143 71.429-105.143 102.857-202.286 94.286 147.429 122.286 346.286 11.429 396.571-88.571 50.286-99.429 6.286-247.429-44-289.143 59.429 25.714 100.571 52 122.286 109.714 11.429-128-47.429-273.143-152.571-358.286 197.714 57.714 318.286 210.857 321.714 455.429s-216.571 499.429-508 499.429z"
+ ],
+ "width": 976.6034285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "firefox"
+ ],
+ "defaultCode": 62057,
+ "grid": 14
+ },
+ {
+ "id": 564,
+ "paths": [
+ "M853.143 130.286c-60-40-130.286-62.857-205.143-62.857-121.714 0-229.143 62.286-304.571 156-54.857 68.571-93.143 165.714-96 276.571v24c2.857 110.857 41.143 208 96 276.571 75.429 93.714 182.857 156 304.571 156 74.857 0 145.143-22.857 205.143-62.857-90.286 81.143-210.286 130.286-341.143 130.286-8 0-16.571 0-24.571-0.571-271.429-12.571-487.429-236.571-487.429-511.429 0-282.857 229.143-512 512-512h1.714c130.286 0.571 249.143 49.714 339.429 130.286zM1024 512c0 149.143-64 282.857-165.714 376.571-38.857 23.429-81.714 36-126.857 36-52.571 0-102.286-17.143-145.714-48 116-42.286 201.714-189.143 201.714-364.571 0-174.857-85.143-321.714-201.143-364.571 43.429-30.286 92.571-47.429 145.143-47.429 46.286 0 89.714 13.143 129.143 37.143 100.571 93.714 163.429 226.857 163.429 374.857z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "opera"
+ ],
+ "defaultCode": 62058,
+ "grid": 14
+ },
+ {
+ "id": 565,
+ "paths": [
+ "M1024 535.429c0 20-1.143 40-4 59.429h-657.714c0 113.714 100 196 209.714 196 74.286 0 145.714-36.571 184-101.143h241.714c-65.143 183.429-239.429 306.286-433.714 306.286-70.286 0-140.571-16.571-203.429-47.429-64 32.571-153.714 66.286-225.143 66.286-96 0-135.429-58.857-135.429-150.286 0-53.143 11.429-106.286 25.714-157.143 9.143-33.143 45.714-100.571 62.286-130.857 70.286-127.429 162.857-249.714 271.429-346.286-87.429 37.714-182.286 132.571-244 202.286 48-209.143 234.286-357.143 448.571-357.143 8.571 0 17.143 0 25.714 0.571 70.857-32.571 169.714-66.857 247.429-66.857 92.571 0 172 35.429 172 140 0 54.857-21.143 114.286-42.857 163.429 37.714 68 57.714 145.143 57.714 222.857zM984 169.714c0-64-45.714-103.429-108.571-103.429-48 0-102.286 19.429-145.143 40 92.571 36 172 102.286 224.571 186.857 14.286-37.714 29.143-83.429 29.143-123.429zM73.143 876.571c0 66.286 39.429 102.286 104.571 102.286 50.857 0 107.429-22.857 152-47.429-93.143-54.857-165.143-142.286-200.571-244.571-26.286 54.857-56 128-56 189.714zM361.143 469.143h416c-4-110.286-101.143-189.714-208-189.714-107.429 0-204 79.429-208 189.714z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "internet-explorer"
+ ],
+ "defaultCode": 62059,
+ "grid": 14
+ },
+ {
+ "id": 566,
+ "paths": [
+ "M1024 713.143v-548.571c0-9.714-8.571-18.286-18.286-18.286h-914.286c-9.714 0-18.286 8.571-18.286 18.286v548.571c0 9.714 8.571 18.286 18.286 18.286h914.286c9.714 0 18.286-8.571 18.286-18.286zM1097.143 164.571v548.571c0 50.286-41.143 91.429-91.429 91.429h-420.571v73.143h201.143c10.286 0 18.286 8 18.286 18.286v36.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.286h201.143v-73.143h-420.571c-50.286 0-91.429-41.143-91.429-91.429v-548.571c0-50.286 41.143-91.429 91.429-91.429h914.286c50.286 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "television",
+ "tv"
+ ],
+ "defaultCode": 62060,
+ "grid": 14
+ },
+ {
+ "id": 567,
+ "paths": [
+ "M78.857 73.143h112.571c-26.857 24.571-50.857 53.143-72 85.143-88.571 136.571-52.571 286.286-18.286 447.429 28 130.857 51.429 255.429 133.143 345.143h-155.429c-36.571 0-66.286-29.714-66.286-66.286v-745.143c0-36.571 29.714-66.286 66.286-66.286zM769.143 73.143h176c36.571 0 66.286 29.714 66.286 66.286v745.143c0 36.571-29.714 66.286-66.286 66.286h-101.714c75.429-74.857 118.286-183.429 112-322.857l-268 57.714c-3.429 63.429-25.143 124.571-112 142.857-48.571 10.286-88.571-1.143-113.714-22.857-30.857-26.286-55.429-60.571-96.571-256-41.714-196-33.143-237.143-16-273.714 14.286-29.714 46.286-57.143 94.286-67.429 87.429-18.286 132 29.143 161.143 85.714l267.429-57.143c-26.286-67.429-61.143-122.286-102.857-164z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "contao"
+ ],
+ "defaultCode": 62061,
+ "grid": 14
+ },
+ {
+ "id": 568,
+ "paths": [
+ "M800.571 884l-3.429 3.429c-42.857 42.857-92.571 76.571-148 100-57.714 24-118.286 36.571-181.143 36.571s-124-12.571-181.143-36.571c-55.429-23.429-105.714-57.143-148-100-42.857-42.286-76.571-92-100-147.429-14.286-34.857-25.714-70.857-30.857-108v0c-2.286-16 20-19.429 27.429-20.571 17.714-2.857 29.714-1.714 32 11.429 0.571 0.571 0.571 1.143 0.571 2.286 2.286 11.429 8 45.714 26.286 90.857 18.857 46.857 48 90.286 86.857 129.143 37.143 37.143 80.571 66.286 129.143 86.857 49.714 21.143 102.857 32 157.714 32 54.286 0 107.429-10.857 157.714-32 48-20.571 91.429-49.714 128.571-86.857l3.429-3.429c4-4 8.571-5.143 14.286-3.429 5.143 1.143 11.429 5.714 18.857 12.571v0c18.286 18.857 14.286 28 9.714 33.143zM530.857 532.571l-37.714 37.714 36 36c4 4 11.429 12.571-4 28-6.286 6.286-12.571 9.714-18.286 9.714-4 0-7.429-1.714-10.857-5.714l-35.429-34.857-37.714 37.714c-1.143 1.143-4 2.857-8.571 2.857-5.143 0-11.429-2.857-17.714-9.143l-1.143-1.143c-4-3.429-10.286-9.714-10.286-16.571 0-3.429 1.714-6.286 4.571-9.714l37.714-37.143-37.714-37.714c-6.286-6.286-3.429-14.286 8-25.714 6.857-6.857 12.571-10.286 17.714-10.286 2.857 0 5.143 1.143 7.429 2.857l37.143 37.714 37.143-37.143c6.286-6.286 16.571-3.429 27.429 7.429 6.857 6.857 14.286 16.571 6.286 25.143zM800 565.143c0 45.143-9.143 89.143-26.286 130.286-17.143 40-41.143 75.429-72 106.286s-66.857 54.857-106.857 72c-41.143 17.714-85.143 26.286-130.286 26.286s-89.143-8.571-130.286-26.286c-40-17.143-76-41.143-106.857-72s-54.857-66.286-71.429-106.286c-3.429-7.429-8.571-21.714-8.571-22.857h-0.571c-5.143-16 17.714-22.857 24.571-25.143 16.571-5.143 29.143-7.429 34.286 6.857 13.714 36.571 34.857 72 55.429 95.429h0.571v-194.857c1.143-48 21.143-96.571 58.286-132.571 38.286-37.714 89.714-58.857 144.571-58.857 112 0 202.857 90.286 202.857 201.143 0 112-91.429 202.857-202.857 202.857-22.286 0-38.857-1.714-64-9.143-2.857-1.143-16-6.857-7.429-34.857 2.286-7.429 9.143-29.143 25.143-24.571 1.143 0 29.143 6.857 44 6.857 79.429 0 141.714-61.714 141.714-140.571 0-37.143-14.857-72-41.143-97.714-26.286-26.286-61.714-40.571-100-40.571-39.429 0-75.429 16-101.714 45.714-22.857 25.714-36.571 60-36.571 91.429v236c41.143 25.143 88.571 38.286 138.286 38.286 73.143 0 144-29.143 194.857-80 51.429-51.429 80-120.571 80-193.143 0-73.143-28.571-141.714-80.571-193.714-51.429-51.429-120-80-193.714-80s-142.857 28.571-194.286 80c-0.571 0.571-33.143 34.286-44 49.714l-1.143 1.143c-6.857 9.714-13.143 18.857-41.714 12.571-14.286-3.429-29.714-12-29.714-24.571v-388.571c0-10.286 8-21.714 21.714-21.714h501.143c17.143 0 17.143 24 17.143 31.429 0 8 0 31.429-17.143 31.429h-463.429v276h0.571c32-33.714 87.429-69.143 120-82.857 40.571-17.143 86.286-26.286 132-26.286 45.143 0 89.143 8.571 130.286 26.286 40 17.143 76 41.143 106.857 72s54.857 66.286 72 106.286c17.143 41.714 26.286 85.143 26.286 130.857zM782.286 233.143c10.857 9.714 3.429 20-7.429 32.571-6.857 6.857-14.286 14.857-22.286 14.857-3.429 0-6.286-1.143-9.143-4-41.143-35.429-78.286-59.429-118.286-76-49.714-21.714-102.857-32-157.714-32-48.571 0-101.714 9.714-149.714 28-14.857 5.714-22.857-13.714-25.714-21.143-3.429-9.143-5.143-16.571-4.571-21.714 1.143-5.714 4-9.714 9.143-11.429 46.857-20.571 110.857-32.571 170.857-32.571 62.286 0 123.429 12.571 180.571 36.571 52.571 22.286 95.429 49.714 134.286 86.857z"
+ ],
+ "width": 814.8845714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "500px"
+ ],
+ "defaultCode": 62062,
+ "grid": 14
+ },
+ {
+ "id": 569,
+ "paths": [
+ "M886.286 843.429c17.143-8.571 30.286 4.571 12.571 27.429s-160 153.143-398.857 153.143-421.714-163.429-477.714-230.857c-15.429-17.714 2.286-25.714 12.571-18.857 167.429 101.714 429.143 269.143 851.429 69.143zM1004.571 777.714c8.571 11.429 0 61.714-14.857 98.286-14.857 36-36.571 61.143-48.571 70.857-12.571 10.286-21.714 6.286-14.857-8.571s44-106.286 29.143-125.714c-14.857-18.857-84.571-9.714-109.714-7.429-24.571 2.286-29.714 4.571-32-0.571-5.143-13.143 49.714-35.429 85.714-40 36-4 93.714-1.714 105.143 13.143zM779.429 524.571c0 62.857 73.714 120.571 73.714 120.571l-129.714 128c-50.857-48-89.143-88-89.143-88-5.714-5.714-10.286-12.571-14.286-18.857-103.429 161.714-419.429 151.429-419.429-98.857 0-233.143 276-264.571 387.429-268.571v-72.571c0-15.429 5.714-85.714-81.143-85.714 0 0-86.857 0-124 113.143l-168-15.429c0-112.571 106.857-238.286 308-238.286 200.571 0 256.571 130.286 256.571 188v336.571zM395.429 536.571c0 116 192.571 143.429 192.571-39.429v-92.571c-77.143 2.286-192.571 24-192.571 132z"
+ ],
+ "width": 1019.9771428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "amazon"
+ ],
+ "defaultCode": 62064,
+ "grid": 14
+ },
+ {
+ "id": 570,
+ "paths": [
+ "M877.714 146.286c40 0 73.143 33.143 73.143 73.143v731.429c0 40-33.143 73.143-73.143 73.143h-804.571c-40 0-73.143-33.143-73.143-73.143v-731.429c0-40 33.143-73.143 73.143-73.143h73.143v-54.857c0-50.286 41.143-91.429 91.429-91.429h36.571c50.286 0 91.429 41.143 91.429 91.429v54.857h219.429v-54.857c0-50.286 41.143-91.429 91.429-91.429h36.571c50.286 0 91.429 41.143 91.429 91.429v54.857h73.143zM658.286 91.429v164.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286v-164.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286zM219.429 91.429v164.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286v-164.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286zM877.714 950.857v-585.143h-804.571v585.143h804.571zM512 621.714h128c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-128v128c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-128h-128c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h128v-128c0-10.286 8-18.286 18.286-18.286h36.571c10.286 0 18.286 8 18.286 18.286v128z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "calendar-plus-o"
+ ],
+ "defaultCode": 62065,
+ "grid": 14
+ },
+ {
+ "id": 571,
+ "paths": [
+ "M658.286 640v36.571c0 10.286-8 18.286-18.286 18.286h-329.143c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h329.143c10.286 0 18.286 8 18.286 18.286zM73.143 950.857h804.571v-585.143h-804.571v585.143zM292.571 256v-164.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v164.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM731.429 256v-164.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v164.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM950.857 219.429v731.429c0 40-33.143 73.143-73.143 73.143h-804.571c-40 0-73.143-33.143-73.143-73.143v-731.429c0-40 33.143-73.143 73.143-73.143h73.143v-54.857c0-50.286 41.143-91.429 91.429-91.429h36.571c50.286 0 91.429 41.143 91.429 91.429v54.857h219.429v-54.857c0-50.286 41.143-91.429 91.429-91.429h36.571c50.286 0 91.429 41.143 91.429 91.429v54.857h73.143c40 0 73.143 33.143 73.143 73.143z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "calendar-minus-o"
+ ],
+ "defaultCode": 62066,
+ "grid": 14
+ },
+ {
+ "id": 572,
+ "paths": [
+ "M634.857 791.429l-26.286 26.286c-6.857 6.857-18.286 6.857-25.714 0l-107.429-108-107.429 108c-7.429 6.857-18.857 6.857-25.714 0l-26.286-26.286c-6.857-6.857-6.857-18.286 0-25.714l108-107.429-108-107.429c-6.857-7.429-6.857-18.857 0-25.714l26.286-26.286c6.857-6.857 18.286-6.857 25.714 0l107.429 107.429 107.429-107.429c7.429-6.857 18.857-6.857 25.714 0l26.286 26.286c6.857 6.857 6.857 18.286 0 25.714l-107.429 107.429 107.429 107.429c6.857 7.429 6.857 18.857 0 25.714zM73.143 950.857h804.571v-585.143h-804.571v585.143zM292.571 256v-164.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v164.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM731.429 256v-164.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v164.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM950.857 219.429v731.429c0 40-33.143 73.143-73.143 73.143h-804.571c-40 0-73.143-33.143-73.143-73.143v-731.429c0-40 33.143-73.143 73.143-73.143h73.143v-54.857c0-50.286 41.143-91.429 91.429-91.429h36.571c50.286 0 91.429 41.143 91.429 91.429v54.857h219.429v-54.857c0-50.286 41.143-91.429 91.429-91.429h36.571c50.286 0 91.429 41.143 91.429 91.429v54.857h73.143c40 0 73.143 33.143 73.143 73.143z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "calendar-times-o"
+ ],
+ "defaultCode": 62067,
+ "grid": 14
+ },
+ {
+ "id": 573,
+ "paths": [
+ "M744.571 550.857l-292.571 292.571c-7.429 6.857-18.857 6.857-26.286 0l-164.571-164.571c-6.857-7.429-6.857-18.857 0-25.714l26.286-26.286c6.857-6.857 18.286-6.857 25.714 0l125.714 125.714 253.714-253.714c7.429-6.857 18.857-6.857 25.714 0l26.286 26.286c6.857 6.857 6.857 18.286 0 25.714zM73.143 950.857h804.571v-585.143h-804.571v585.143zM292.571 256v-164.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v164.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM731.429 256v-164.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v164.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM950.857 219.429v731.429c0 40-33.143 73.143-73.143 73.143h-804.571c-40 0-73.143-33.143-73.143-73.143v-731.429c0-40 33.143-73.143 73.143-73.143h73.143v-54.857c0-50.286 41.143-91.429 91.429-91.429h36.571c50.286 0 91.429 41.143 91.429 91.429v54.857h219.429v-54.857c0-50.286 41.143-91.429 91.429-91.429h36.571c50.286 0 91.429 41.143 91.429 91.429v54.857h73.143c40 0 73.143 33.143 73.143 73.143z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "calendar-check-o"
+ ],
+ "defaultCode": 62068,
+ "grid": 14
+ },
+ {
+ "id": 574,
+ "paths": [
+ "M256 0c20 0 36.571 16.571 36.571 36.571v509.143l306.286-245.143c6.286-5.143 14.857-8 22.857-8 20 0 36.571 16.571 36.571 36.571v216.571l306.286-245.143c6.286-5.143 14.857-8 22.857-8 20 0 36.571 16.571 36.571 36.571v658.286c0 20-16.571 36.571-36.571 36.571h-950.857c-20 0-36.571-16.571-36.571-36.571v-950.857c0-20 16.571-36.571 36.571-36.571h219.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "industry"
+ ],
+ "defaultCode": 62069,
+ "grid": 14
+ },
+ {
+ "id": 575,
+ "paths": [
+ "M292.571 621.714c25.143 0 49.714-2.857 73.143-8.571v374.286c0 20-16.571 36.571-36.571 36.571h-73.143c-20 0-36.571-16.571-36.571-36.571v-374.286c23.429 5.714 48 8.571 73.143 8.571zM292.571 0c161.714 0 292.571 130.857 292.571 292.571s-130.857 292.571-292.571 292.571-292.571-130.857-292.571-292.571 130.857-292.571 292.571-292.571zM292.571 128c10.286 0 18.286-8 18.286-18.286s-8-18.286-18.286-18.286c-110.857 0-201.143 90.286-201.143 201.143 0 10.286 8 18.286 18.286 18.286s18.286-8 18.286-18.286c0-90.857 73.714-164.571 164.571-164.571z"
+ ],
+ "width": 585.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "map-pin"
+ ],
+ "defaultCode": 62070,
+ "grid": 14
+ },
+ {
+ "id": 576,
+ "paths": [
+ "M997.143 169.714c7.429 7.429 7.429 18.857 0 26.286l-80.571 80.571c-10.286 10.286-24.571 16-38.857 16h-768c-20 0-36.571-16.571-36.571-36.571v-146.286c0-20 16.571-36.571 36.571-36.571h329.143v-36.571c0-20 16.571-36.571 36.571-36.571h73.143c20 0 36.571 16.571 36.571 36.571v36.571h292.571c14.286 0 28.571 5.714 38.857 16zM438.857 694.857h146.286v292.571c0 20-16.571 36.571-36.571 36.571h-73.143c-20 0-36.571-16.571-36.571-36.571v-292.571zM914.286 438.857c20 0 36.571 16.571 36.571 36.571v146.286c0 20-16.571 36.571-36.571 36.571h-768c-14.286 0-28.571-5.714-38.857-16l-80.571-80.571c-7.429-7.429-7.429-18.857 0-26.286l80.571-80.571c10.286-10.286 24.571-16 38.857-16h292.571v-109.714h146.286v109.714h329.143z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "map-signs"
+ ],
+ "defaultCode": 62071,
+ "grid": 14
+ },
+ {
+ "id": 577,
+ "paths": [
+ "M1154.286 6.286c9.714 6.857 16 18.286 16 30.286v804.571c0 14.857-9.143 28.571-22.857 33.714l-365.714 146.286c-9.143 4-18.286 4-27.429 0l-352-140.571-352 140.571c-4.571 2.286-9.143 2.857-13.714 2.857-7.429 0-14.286-2.286-20.571-6.286-9.714-6.857-16-18.286-16-30.286v-804.571c0-14.857 9.143-28.571 22.857-33.714l365.714-146.286c9.143-4 18.286-4 27.429 0l352 140.571 352-140.571c11.429-4.571 24-3.429 34.286 3.429zM420.571 83.429v725.714l329.143 131.429v-725.714zM73.143 207.429v725.714l310.857-124v-725.714zM1097.143 816.571v-725.714l-310.857 124v725.714z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "map-o"
+ ],
+ "defaultCode": 62072,
+ "grid": 14
+ },
+ {
+ "id": 578,
+ "paths": [
+ "M292.571 0c9.714 0 18.286 8.571 18.286 18.286v841.143c0 6.857-4 13.143-9.714 16l-274.286 146.286c-2.857 1.714-5.714 2.286-8.571 2.286-9.714 0-18.286-8.571-18.286-18.286v-841.143c0-6.857 4-13.143 9.714-16l274.286-146.286c2.857-1.714 5.714-2.286 8.571-2.286zM1005.714 0c9.714 0 18.286 8.571 18.286 18.286v841.143c0 6.857-4 13.143-9.714 16l-274.286 146.286c-2.857 1.714-5.714 2.286-8.571 2.286-9.714 0-18.286-8.571-18.286-18.286v-841.143c0-6.857 4-13.143 9.714-16l274.286-146.286c2.857-1.714 5.714-2.286 8.571-2.286zM365.714 0c2.857 0 5.714 0.571 8 1.714l292.571 146.286c6.286 3.429 10.286 9.714 10.286 16.571v841.143c0 9.714-8.571 18.286-18.286 18.286-2.857 0-5.714-0.571-8-1.714l-292.571-146.286c-6.286-3.429-10.286-9.714-10.286-16.571v-841.143c0-9.714 8.571-18.286 18.286-18.286z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "map"
+ ],
+ "defaultCode": 62073,
+ "grid": 14
+ },
+ {
+ "id": 579,
+ "paths": [
+ "M365.714 512c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM585.143 512c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM804.571 512c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM1024 512c0 202.286-229.143 365.714-512 365.714-41.714 0-82.286-3.429-120.571-10.286-65.143 65.143-150.286 109.714-248.571 130.857-15.429 2.857-32 5.714-49.143 7.429-9.143 1.143-17.714-5.143-20-13.714v0c-2.286-9.143 4.571-14.857 11.429-21.143 36-33.714 78.857-60.571 93.714-181.143-109.143-66.857-178.857-166.286-178.857-277.714 0-202.286 229.143-365.714 512-365.714s512 163.429 512 365.714z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "commenting"
+ ],
+ "defaultCode": 62074,
+ "grid": 14
+ },
+ {
+ "id": 580,
+ "paths": [
+ "M365.714 512c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM585.143 512c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM804.571 512c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM512 219.429c-237.714 0-438.857 133.714-438.857 292.571 0 85.143 57.143 166.286 156 222.286l49.714 28.571-15.429 54.857c-10.857 40.571-25.143 72-40 98.286 57.714-24 110.286-56.571 157.143-97.714l24.571-21.714 32.571 3.429c24.571 2.857 49.714 4.571 74.286 4.571 237.714 0 438.857-133.714 438.857-292.571s-201.143-292.571-438.857-292.571zM1024 512c0 202.286-229.143 365.714-512 365.714-28 0-56-1.714-82.857-4.571-74.857 66.286-164 113.143-262.857 138.286-20.571 5.714-42.857 9.714-65.143 12.571h-2.857c-11.429 0-21.714-9.143-24.571-21.714v-0.571c-2.857-14.286 6.857-22.857 15.429-33.143 36-40.571 77.143-74.857 104-170.286-117.714-66.857-193.143-170.286-193.143-286.286 0-201.714 229.143-365.714 512-365.714v0c282.857 0 512 164 512 365.714z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "commenting-o"
+ ],
+ "defaultCode": 62075,
+ "grid": 14
+ },
+ {
+ "id": 581,
+ "paths": [
+ "M292.571 680.571l292.571-168.571v337.714l-292.571 169.143v-338.286zM0 512v337.714l292.571-169.143-292.571-168.571zM292.571 5.143v337.714l-292.571 169.143v-337.714zM292.571 342.857l292.571-168.571v337.714z"
+ ],
+ "width": 585.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "houzz"
+ ],
+ "defaultCode": 62076,
+ "grid": 14
+ },
+ {
+ "id": 582,
+ "paths": [
+ "M976.571 296c-4 90.286-67.429 214.286-189.714 372-126.857 164-233.143 246.286-321.143 246.286-54.286 0-100-50.286-137.143-150.286-25.143-91.429-50.286-183.429-75.429-275.429-27.429-100-57.714-149.714-89.714-149.714-6.857 0-30.857 14.286-72.571 43.429l-44-56c45.714-40.571 90.857-81.714 136-121.143 60.571-53.714 106.857-80.571 137.714-83.429 72.571-6.857 116.571 42.286 133.714 148 17.714 114.286 30.857 185.714 37.714 213.143 21.143 94.857 43.429 142.286 68.571 142.286 19.429 0 48.571-30.286 88-92 38.857-61.714 59.429-108.571 62.286-140.571 5.143-53.143-15.429-79.429-62.286-79.429-22.286 0-45.143 5.143-69.143 14.857 45.714-149.714 133.143-222.286 262.286-218.286 95.429 2.857 140.571 65.143 134.857 186.286z"
+ ],
+ "width": 1029.12,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "vimeo"
+ ],
+ "defaultCode": 62077,
+ "grid": 14
+ },
+ {
+ "id": 583,
+ "paths": [
+ "M0 73.143h877.714v877.714h-877.714v-877.714zM620 710.286l-126.286-360.571 126.286-169.714h-362.286l126.286 169.714-126.286 360.571 181.143 173.714z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "black-tie"
+ ],
+ "defaultCode": 62078,
+ "grid": 14
+ },
+ {
+ "id": 584,
+ "paths": [
+ "M0 73.143h877.714v877.714h-877.714v-877.714zM518.857 256l-6.857 18.857 42.857 47.429-17.714 65.143 14.286 14.286 61.143-32.571 61.143 32.571 14.286-14.286-17.714-65.143 42.857-47.429-6.857-18.857h-54.286l-30.286-54.857h-18.286l-30.286 54.857h-54.286zM366.286 349.143c23.429 0 32.571 8.571 32 45.143l99.429-12c0-87.429-60-103.429-126.857-103.429-99.429 0-151.429 40-151.429 137.143v41.143h-54.857v73.143h43.429c5.714 0 11.429 0 11.429 4.571v218.286c0 10.857-2.857 14.286-13.143 15.429l-41.714 4v50.286h256v-49.143l-85.143-8c-10.286-1.143-6.286-2.857-6.286-14.286v-221.143h109.143l21.714-73.143h-132c-5.714 0 1.143-4 1.143-8.571v-45.714c0-34.286 1.143-53.714 37.143-53.714zM713.143 822.857v-49.143l-30.857-5.143c-10.857-1.714-5.714-2.857-5.714-14.286v-297.143h-157.143l-13.143 57.714 47.429 12.571c7.429 2.286 13.143 7.429 13.143 15.429v211.429c0 10.857-4.571 13.143-14.857 14.286l-40 5.143v49.143h201.143z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fonticons"
+ ],
+ "defaultCode": 62080,
+ "grid": 14
+ },
+ {
+ "id": 585,
+ "paths": [
+ "M1024 483.429c0 44.571-25.143 82.857-62.286 101.714 4.571 17.714 6.857 36 6.857 54.857 0 180.571-204 326.857-455.429 326.857-250.857 0-454.857-146.286-454.857-326.857 0-18.286 2.286-36.571 6.286-53.714-38.286-18.857-64.571-57.714-64.571-102.857 0-62.857 50.857-113.714 113.714-113.714 32.571 0 61.714 13.714 82.857 36 77.143-53.714 180-88.571 294.286-92.571l66.286-297.714c2.286-10.286 13.143-17.143 23.429-14.857l210.857 46.286c13.714-27.429 42.857-46.857 76-46.857 47.429 0 85.714 38.286 85.714 85.143 0 47.429-38.286 85.714-85.714 85.714-46.857 0-85.143-38.286-85.143-85.143l-190.857-42.286-59.429 269.714c114.857 3.429 218.857 37.714 296.571 91.429 20.571-21.714 49.714-34.857 81.714-34.857 62.857 0 113.714 50.857 113.714 113.714zM238.857 597.143c0 47.429 38.286 85.714 85.143 85.714 47.429 0 85.714-38.286 85.714-85.714 0-46.857-38.286-85.143-85.714-85.143-46.857 0-85.143 38.286-85.143 85.143zM701.714 800c8.571-8.571 8.571-21.143 0-29.714-8-8-21.143-8-29.143 0-34.286 34.857-108 46.857-160.571 46.857s-126.286-12-160.571-46.857c-8-8-21.143-8-29.143 0-8.571 8-8.571 21.143 0 29.714 54.286 54.286 158.857 58.286 189.714 58.286s135.429-4 189.714-58.286zM700 682.857c46.857 0 85.143-38.286 85.143-85.714 0-46.857-38.286-85.143-85.143-85.143-47.429 0-85.714 38.286-85.714 85.143 0 47.429 38.286 85.714 85.714 85.714z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "reddit-alien"
+ ],
+ "defaultCode": 62081,
+ "grid": 14
+ },
+ {
+ "id": 586,
+ "paths": [
+ "M39.429 454.286h0.571c29.714-236.571 191.429-454.857 480.571-454.286 175.429 0 320 82.286 404.571 233.714 43.429 78.286 59.429 161.714 59.429 252.571v107.429h-642.857c2.857 265.143 389.714 256 556.571 139.429v215.429c-97.714 58.857-318.286 109.714-490.286 44-145.714-56-247.429-207.429-249.143-354.857-2.286-190.286 94.286-316.571 249.143-388.571-32.571 41.143-57.714 85.714-70.857 162.857h362.857c21.143-216.571-205.143-216.571-205.143-216.571-213.714 7.429-368 132-455.429 258.857z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "edge"
+ ],
+ "defaultCode": 62082,
+ "grid": 14
+ },
+ {
+ "id": 587,
+ "paths": [
+ "M0 859.429v-347.429h1316.571v347.429c0 50.286-41.143 91.429-91.429 91.429h-1133.714c-50.286 0-91.429-41.143-91.429-91.429zM365.714 731.429v73.143h219.429v-73.143h-219.429zM146.286 731.429v73.143h146.286v-73.143h-146.286zM1225.143 73.143c50.286 0 91.429 41.143 91.429 91.429v128h-1316.571v-128c0-50.286 41.143-91.429 91.429-91.429h1133.714z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "credit-card-alt"
+ ],
+ "defaultCode": 62083,
+ "grid": 14
+ },
+ {
+ "id": 588,
+ "paths": [
+ "M905.143 737.143l-124.571-63.429c-56 91.429-155.429 147.429-262.857 147.429-170.286 0-308-137.714-308-307.429 0-170.286 137.714-308 308-308 100 0 193.714 48.571 251.429 130.857l122.857-71.429c-84-129.143-226.286-206.286-380-206.286-250.286 0-453.143 202.857-453.143 453.143s202.857 453.143 453.143 453.143c162.286 0 312.571-86.857 393.143-228zM588.571 510.286l396 201.143c-86.857 189.714-261.143 312.571-472.571 312.571-282.857 0-512-229.143-512-512s229.143-512 512-512c201.143 0 366.857 110.857 460.571 285.714zM881.714 512h-22.286v91.429h-54.857v-201.143h77.714c63.429 0 69.143 109.714-0.571 109.714z"
+ ],
+ "width": 984.576,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "codiepie"
+ ],
+ "defaultCode": 62084,
+ "grid": 14
+ },
+ {
+ "id": 589,
+ "paths": [
+ "M815.429 405.143l-350.857-220.571 52.571-86.286h488.571zM231.429 556.571l-105.143-66.286v-490.286l676 424.571zM813.714 479.429l84 54.286v490.286l-304-191.429zM792.571 467.429l-285.714 458.286h-488.571l203.429-326.286z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "modx"
+ ],
+ "defaultCode": 62085,
+ "grid": 14
+ },
+ {
+ "id": 590,
+ "paths": [
+ "M365.714 576v-128c0-5.143-4-9.143-9.143-9.143h-54.857c-5.143 0-9.143 4-9.143 9.143v128c0 5.143 4 9.143 9.143 9.143h54.857c5.143 0 9.143-4 9.143-9.143zM658.286 576v-128c0-5.143-4-9.143-9.143-9.143h-54.857c-5.143 0-9.143 4-9.143 9.143v128c0 5.143 4 9.143 9.143 9.143h54.857c5.143 0 9.143-4 9.143-9.143zM950.857 594.286v429.714h-365.714v-182.857c0-60.571-49.143-109.714-109.714-109.714s-109.714 49.143-109.714 109.714v182.857h-365.714v-429.714c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143v64h73.143v-356.571c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143v64h73.143v-64c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143v64h73.143v-64c0-12 16-9.143 23.429-9.143v-223.429c-10.857-5.143-18.286-16.571-18.286-28.571 0-17.143 14.286-31.429 31.429-31.429s31.429 14.286 31.429 31.429c0 12-7.429 23.429-18.286 28.571v9.714c15.429-3.429 31.429-5.714 47.429-5.714 23.429 0 45.714 8.571 65.143 8.571 17.714 0 37.714-8.571 48-8.571 5.143 0 9.143 4 9.143 9.143v120c0 13.714-46.286 16-55.429 16-21.143 0-41.143-8.571-62.857-8.571-17.143 0-34.857 2.857-51.429 6.857v76c7.429 0 23.429-2.857 23.429 9.143v64h73.143v-64c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143v64h73.143v-64c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143v356.571h73.143v-64c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fort-awesome"
+ ],
+ "defaultCode": 62086,
+ "grid": 14
+ },
+ {
+ "id": 591,
+ "paths": [
+ "M1307.429 460c5.714 2.857 9.143 9.143 9.143 15.429s-3.429 12.571-9.143 15.429l-182.857 109.714c-2.857 1.714-5.714 2.857-9.143 2.857-2.857 0-6.286-0.571-9.143-2.286-5.714-3.429-9.143-9.143-9.143-16v-73.143h-490.286c18.286 28.571 33.714 62.286 47.429 94.286 27.429 61.714 55.429 125.143 95.429 125.143h54.857v-54.857c0-10.286 8-18.286 18.286-18.286h182.857c10.286 0 18.286 8 18.286 18.286v182.857c0 10.286-8 18.286-18.286 18.286h-182.857c-10.286 0-18.286-8-18.286-18.286v-54.857h-54.857c-87.429 0-126.857-89.714-162.286-168.571-26.857-61.143-54.857-124-93.714-124h-205.714c-16.571 62.857-73.714 109.714-141.714 109.714-80.571 0-146.286-65.714-146.286-146.286s65.714-146.286 146.286-146.286c68 0 125.143 46.857 141.714 109.714h59.429c38.857 0 66.857-62.857 93.714-124 35.429-78.857 74.857-168.571 162.286-168.571h61.143c15.429-42.857 55.429-73.143 103.429-73.143 60.571 0 109.714 49.143 109.714 109.714s-49.143 109.714-109.714 109.714c-48 0-88-30.286-103.429-73.143h-61.143c-40 0-68 63.429-95.429 125.143-13.714 32-29.143 65.714-47.429 94.286h636.571v-73.143c0-6.857 3.429-12.571 9.143-16s13.143-2.857 18.286 0.571z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "usb"
+ ],
+ "defaultCode": 62087,
+ "grid": 14
+ },
+ {
+ "id": 592,
+ "paths": [
+ "M657.143 435.429c0 42.286-34.286 76.571-77.143 76.571v0h-144.571v-153.714h144.571c42.857 0 77.143 34.286 77.143 77.143zM759.429 435.429c0-99.429-80-179.429-179.429-179.429v0h-247.429v512h102.857v-153.714h144.571c99.429 0 179.429-80 179.429-178.857zM1024 512c0 282.857-229.143 512-512 512s-512-229.143-512-512 229.143-512 512-512 512 229.143 512 512z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "product-hunt"
+ ],
+ "defaultCode": 62088,
+ "grid": 14
+ },
+ {
+ "id": 593,
+ "paths": [
+ "M940 627.429c0-45.714-29.143-84.571-69.143-100-2.857 17.714-7.429 35.429-13.143 52.571-5.714 18.286-22.857 29.714-41.143 29.714-4.571 0-9.143-0.571-13.714-1.714-23.429-8-35.429-32.571-28-55.429 8.571-26.286 13.143-53.714 13.143-81.714 0-142.857-116.571-259.429-260-259.429-102.857 0-195.429 61.143-236.571 152.571 40 10.286 77.143 30.857 107.429 60.571 17.143 17.143 17.143 45.143 0 62.286s-45.143 17.143-62.286 0c-27.429-27.429-64-42.857-102.857-42.857-80.571 0-146.286 65.143-146.286 145.714s65.714 145.714 146.286 145.714h597.714c60 0 108.571-48.571 108.571-108zM1027.429 627.429c0 108-88 195.429-196 195.429h-597.714c-129.143 0-233.714-104.571-233.714-233.143 0-117.143 86.857-213.714 199.429-230.286 47.429-139.429 179.429-235.429 328.571-235.429 180 0 328.571 137.714 345.714 313.143 87.429 18.857 153.714 97.143 153.714 190.286zM1170.286 627.429c0 65.143-18.857 128-55.429 182.286-8.571 12.571-22.286 18.857-36.571 18.857v0c-8.571 0-17.143-2.286-24.571-7.429-20-13.143-25.143-40.571-11.429-60.571 26.857-39.429 40.571-85.143 40.571-133.143 0-47.429-13.714-93.714-40.571-133.143-13.714-20-8.571-46.857 11.429-60.571s47.429-8 61.143 12c36.571 53.714 55.429 116.571 55.429 181.714zM1316.571 627.429c0 90.857-26.286 178.286-76.571 253.143-8.571 12.571-22.286 19.429-36.571 19.429v0c-8 0-16.571-2.286-24-7.429-20-13.714-25.714-40.571-12-60.571 40-60.571 61.714-131.429 61.714-204.571s-21.714-144-61.714-204c-13.714-20-8-47.429 12-60.571 20-13.714 46.857-8.571 60.571 12 50.286 74.286 76.571 161.714 76.571 252.571z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mixcloud"
+ ],
+ "defaultCode": 62089,
+ "grid": 14
+ },
+ {
+ "id": 594,
+ "paths": [
+ "M857.143 885.143c0 68-54.857 123.429-123.429 123.429s-124-55.429-124-123.429c0-68.571 55.429-124 124-124s123.429 55.429 123.429 124zM724 724.571c-86.857 11.429-154.286 85.714-154.286 176 0 28 6.857 55.429 18.857 78.857-51.429 27.429-121.143 44.571-216.571 44.571-304 0-351.429-214.857-351.429-243.429 0-29.143 17.143-124.571 124.571-124.571s122.286 92 122.286 110.857c0 0 0 19.429-13.143 46.286 36.571 34.286 122.857 34.286 122.857 34.286 86.286 0 151.429-42.286 151.429-105.143 0-63.429-73.143-94.286-240-172.571-166.857-78.857-229.714-136.571-229.714-280 0-144 96-289.714 335.429-289.714s329.714 134.286 329.714 226.286-78.286 114.857-107.429 114.857c-28.571 0-134.286 9.714-134.286-149.143-18.857-21.143-101.143-21.143-101.143-21.143-82.857 0-119.429 62.857-119.429 101.143 0 38.857 15.429 86.857 188 144 264.571 88 274.286 202.857 274.286 308.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "scribd"
+ ],
+ "defaultCode": 62090,
+ "grid": 14
+ },
+ {
+ "id": 595,
+ "paths": [
+ "M402.286 676.571v-329.143c0-10.286-8-18.286-18.286-18.286h-146.286c-10.286 0-18.286 8-18.286 18.286v329.143c0 10.286 8 18.286 18.286 18.286h146.286c10.286 0 18.286-8 18.286-18.286zM658.286 676.571v-329.143c0-10.286-8-18.286-18.286-18.286h-146.286c-10.286 0-18.286 8-18.286 18.286v329.143c0 10.286 8 18.286 18.286 18.286h146.286c10.286 0 18.286-8 18.286-18.286zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pause-circle"
+ ],
+ "defaultCode": 62091,
+ "grid": 14
+ },
+ {
+ "id": 596,
+ "paths": [
+ "M438.857 73.143c242.286 0 438.857 196.571 438.857 438.857s-196.571 438.857-438.857 438.857-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857zM438.857 822.857c171.429 0 310.857-139.429 310.857-310.857s-139.429-310.857-310.857-310.857-310.857 139.429-310.857 310.857 139.429 310.857 310.857 310.857zM493.714 694.857c-10.286 0-18.286-8-18.286-18.286v-329.143c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286v329.143c0 10.286-8 18.286-18.286 18.286h-109.714zM274.286 694.857c-10.286 0-18.286-8-18.286-18.286v-329.143c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286v329.143c0 10.286-8 18.286-18.286 18.286h-109.714z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pause-circle-o"
+ ],
+ "defaultCode": 62092,
+ "grid": 14
+ },
+ {
+ "id": 597,
+ "paths": [
+ "M621.714 676.571v-329.143c0-10.286-8-18.286-18.286-18.286h-329.143c-10.286 0-18.286 8-18.286 18.286v329.143c0 10.286 8 18.286 18.286 18.286h329.143c10.286 0 18.286-8 18.286-18.286zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "stop-circle"
+ ],
+ "defaultCode": 62093,
+ "grid": 14
+ },
+ {
+ "id": 598,
+ "paths": [
+ "M438.857 73.143c242.286 0 438.857 196.571 438.857 438.857s-196.571 438.857-438.857 438.857-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857zM438.857 822.857c171.429 0 310.857-139.429 310.857-310.857s-139.429-310.857-310.857-310.857-310.857 139.429-310.857 310.857 139.429 310.857 310.857 310.857zM274.286 694.857c-10.286 0-18.286-8-18.286-18.286v-329.143c0-10.286 8-18.286 18.286-18.286h329.143c10.286 0 18.286 8 18.286 18.286v329.143c0 10.286-8 18.286-18.286 18.286h-329.143z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "stop-circle-o"
+ ],
+ "defaultCode": 62094,
+ "grid": 14
+ },
+ {
+ "id": 599,
+ "paths": [
+ "M1004 804.571l20 178.857c1.143 10.286-2.286 20.571-9.143 28.571-6.857 7.429-17.143 12-27.429 12h-950.857c-10.286 0-20.571-4.571-27.429-12-6.857-8-10.286-18.286-9.143-28.571l20-178.857h984zM950.857 325.143l49.143 442.857h-976l49.143-442.857c2.286-18.286 17.714-32.571 36.571-32.571h146.286v73.143c0 40.571 32.571 73.143 73.143 73.143s73.143-32.571 73.143-73.143v-73.143h219.429v73.143c0 40.571 32.571 73.143 73.143 73.143s73.143-32.571 73.143-73.143v-73.143h146.286c18.857 0 34.286 14.286 36.571 32.571zM731.429 219.429v146.286c0 20-16.571 36.571-36.571 36.571s-36.571-16.571-36.571-36.571v-146.286c0-80.571-65.714-146.286-146.286-146.286s-146.286 65.714-146.286 146.286v146.286c0 20-16.571 36.571-36.571 36.571s-36.571-16.571-36.571-36.571v-146.286c0-121.143 98.286-219.429 219.429-219.429s219.429 98.286 219.429 219.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "shopping-bag"
+ ],
+ "defaultCode": 62096,
+ "grid": 14
+ },
+ {
+ "id": 600,
+ "paths": [
+ "M1097.143 438.857c40.571 0 73.143 32.571 73.143 73.143s-32.571 73.143-73.143 73.143h-8.571l-65.714 378.286c-6.286 34.857-36.571 60.571-72 60.571h-731.429c-35.429 0-65.714-25.714-72-60.571l-65.714-378.286h-8.571c-40.571 0-73.143-32.571-73.143-73.143s32.571-73.143 73.143-73.143h1024zM277.143 896c20-1.714 35.429-19.429 33.714-39.429l-18.286-237.714c-1.714-20-19.429-35.429-39.429-33.714s-35.429 19.429-33.714 39.429l18.286 237.714c1.714 18.857 17.714 33.714 36.571 33.714h2.857zM512 859.429v-237.714c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571v237.714c0 20 16.571 36.571 36.571 36.571s36.571-16.571 36.571-36.571zM731.429 859.429v-237.714c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571v237.714c0 20 16.571 36.571 36.571 36.571s36.571-16.571 36.571-36.571zM932.571 862.286l18.286-237.714c1.714-20-13.714-37.714-33.714-39.429s-37.714 13.714-39.429 33.714l-18.286 237.714c-1.714 20 13.714 37.714 33.714 39.429h2.857c18.857 0 34.857-14.857 36.571-33.714zM272 166.857l-53.143 235.429h-75.429l57.714-252c14.857-66.857 73.714-113.714 142.286-113.714h95.429c0-20 16.571-36.571 36.571-36.571h219.429c20 0 36.571 16.571 36.571 36.571h95.429c68.571 0 127.429 46.857 142.286 113.714l57.714 252h-75.429l-53.143-235.429c-8-33.714-37.143-57.143-71.429-57.143h-95.429c0 20-16.571 36.571-36.571 36.571h-219.429c-20 0-36.571-16.571-36.571-36.571h-95.429c-34.286 0-63.429 23.429-71.429 57.143z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "shopping-basket"
+ ],
+ "defaultCode": 62097,
+ "grid": 14
+ },
+ {
+ "id": 601,
+ "paths": [
+ "M566.286 585.143l36.571-146.286h-145.143l-36.571 146.286h145.143zM1005.143 297.143l-32 128c-2.286 8-9.143 13.714-17.714 13.714h-186.857l-36.571 146.286h177.714c5.714 0 10.857 2.857 14.286 6.857 3.429 4.571 5.143 10.286 3.429 16l-32 128c-1.714 8-9.143 13.714-17.714 13.714h-186.857l-46.286 187.429c-2.286 8-9.714 13.714-17.714 13.714h-128c-5.714 0-11.429-2.857-14.857-6.857-3.429-4.571-4.571-10.286-3.429-16l44.571-178.286h-145.143l-46.286 187.429c-2.286 8-9.714 13.714-17.714 13.714h-128.571c-5.143 0-10.857-2.857-14.286-6.857-3.429-4.571-4.571-10.286-3.429-16l44.571-178.286h-177.714c-5.714 0-10.857-2.857-14.286-6.857-3.429-4.571-4.571-10.286-3.429-16l32-128c2.286-8 9.143-13.714 17.714-13.714h186.857l36.571-146.286h-177.714c-5.714 0-10.857-2.857-14.286-6.857-3.429-4.571-5.143-10.286-3.429-16l32-128c1.714-8 9.143-13.714 17.714-13.714h186.857l46.286-187.429c2.286-8 9.714-13.714 18.286-13.714h128c5.143 0 10.857 2.857 14.286 6.857 3.429 4.571 4.571 10.286 3.429 16l-44.571 178.286h145.143l46.286-187.429c2.286-8 9.714-13.714 18.286-13.714h128c5.143 0 10.857 2.857 14.286 6.857 3.429 4.571 4.571 10.286 3.429 16l-44.571 178.286h177.714c5.714 0 10.857 2.857 14.286 6.857 3.429 4.571 4.571 10.286 3.429 16z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hashtag"
+ ],
+ "defaultCode": 62098,
+ "grid": 14
+ },
+ {
+ "id": 602,
+ "paths": [
+ "M480.571 601.714l84.571 84.571-85.143 85.143zM480 252.571l85.143 85.143-84.571 84.571-0.571-169.714zM405.714 952l265.143-265.143-174.857-174.857 174.857-174.857-265.143-265.143v349.143l-145.714-145.714-53.143 53.143 182.857 183.429-182.857 183.429 53.143 53.143 145.714-145.714v349.143zM816.571 512c0 405.714-154.286 512-377.714 512v0c-223.429 0-377.714-106.286-377.714-512s154.286-512 377.714-512 377.714 106.286 377.714 512z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bluetooth"
+ ],
+ "defaultCode": 62099,
+ "grid": 14
+ },
+ {
+ "id": 603,
+ "paths": [
+ "M340.571 813.143l98.857-98.286-98.857-98.286v196.571zM340.571 407.429l98.857-98.286-98.857-98.286v196.571zM358.857 512l203.429 203.429-308 308.571v-406.286l-169.714 169.143-61.714-61.714 212.571-213.143-212.571-213.143 61.714-61.714 169.714 169.143v-406.286l308 308.571z"
+ ],
+ "width": 585.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bluetooth-b"
+ ],
+ "defaultCode": 62100,
+ "grid": 14
+ },
+ {
+ "id": 604,
+ "paths": [
+ "M731.429 731.429c0-40-33.143-73.143-73.143-73.143s-73.143 33.143-73.143 73.143 33.143 73.143 73.143 73.143 73.143-33.143 73.143-73.143zM292.571 292.571c0-40-33.143-73.143-73.143-73.143s-73.143 33.143-73.143 73.143 33.143 73.143 73.143 73.143 73.143-33.143 73.143-73.143zM877.714 731.429c0 121.143-98.286 219.429-219.429 219.429s-219.429-98.286-219.429-219.429 98.286-219.429 219.429-219.429 219.429 98.286 219.429 219.429zM822.857 109.714c0 8-2.857 15.429-7.429 21.714l-603.429 804.571c-6.857 9.143-17.714 14.857-29.143 14.857h-91.429c-20 0-36.571-16.571-36.571-36.571 0-8 2.857-15.429 7.429-21.714l603.429-804.571c6.857-9.143 17.714-14.857 29.143-14.857h91.429c20 0 36.571 16.571 36.571 36.571zM438.857 292.571c0 121.143-98.286 219.429-219.429 219.429s-219.429-98.286-219.429-219.429 98.286-219.429 219.429-219.429 219.429 98.286 219.429 219.429z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "percent"
+ ],
+ "defaultCode": 62101,
+ "grid": 14
+ },
+ {
+ "id": 605,
+ "paths": [
+ "M59.429 403.429l452.571 580-496-360c-13.714-10.286-19.429-28-14.286-44l57.714-176zM323.429 403.429h377.143l-188.571 580zM210.286 53.714l113.143 349.714h-264l113.143-349.714c6.286-17.714 31.429-17.714 37.714 0zM964.571 403.429l57.714 176c5.143 16-0.571 33.714-14.286 44l-496 360 452.571-580zM964.571 403.429h-264l113.143-349.714c6.286-17.714 31.429-17.714 37.714 0z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "gitlab"
+ ],
+ "defaultCode": 62102,
+ "grid": 14
+ },
+ {
+ "id": 606,
+ "paths": [
+ "M219.429 475.429h91.429v-128h-91.429v128zM697.714 665.143v-52.571c-49.143 17.143-89.714 21.143-138.857 21.714-110.286 0.571-208-45.143-274.286-96.571l0.571 54.857c62.286 56.571 157.714 101.143 276.571 100.571 49.714 0 96.571-10.286 136-28zM365.714 475.429h365.714v-128h-365.714v128zM1024 457.143c0 72.571-20.571 141.143-56.571 201.143 32 36.571 50.857 81.714 50.857 130.857 0 119.429-113.143 216.571-253.143 216.571-94.857 0-177.143-44.571-220.571-110.286-10.857 0.571-21.714 0.571-32.571 0.571s-21.714 0-32.571-0.571c-43.429 65.714-125.714 110.286-220.571 110.286-140 0-253.143-97.143-253.143-216.571 0-49.143 18.857-94.286 50.857-130.857-36-60-56.571-128.571-56.571-201.143 0-242.286 229.143-438.857 512-438.857s512 196.571 512 438.857z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wpbeginner"
+ ],
+ "defaultCode": 62103,
+ "grid": 14
+ },
+ {
+ "id": 607,
+ "paths": [
+ "M294.286 520.571v73.143h-144v-73.143h144zM294.286 374.857v72.571h-144v-72.571h144zM727.429 666.857v73.143h-194.857v-73.143h194.857zM727.429 520.571v73.143h-384v-73.143h384zM727.429 374.857v72.571h-384v-72.571h384zM804.571 866.286v-708.571c0-6.286-5.143-11.429-11.429-11.429h-18.286l-216 146.286-120-97.714-120 97.714-216-146.286h-18.286c-6.286 0-11.429 5.143-11.429 11.429v708.571c0 6.286 5.143 11.429 11.429 11.429h708.571c6.286 0 11.429-5.143 11.429-11.429zM316 232l105.714-85.714h-232zM561.714 232l126.286-85.714h-232zM877.714 157.714v708.571c0 46.857-37.714 84.571-84.571 84.571h-708.571c-46.857 0-84.571-37.714-84.571-84.571v-708.571c0-46.857 37.714-84.571 84.571-84.571h708.571c46.857 0 84.571 37.714 84.571 84.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wpforms"
+ ],
+ "defaultCode": 62104,
+ "grid": 14
+ },
+ {
+ "id": 608,
+ "paths": [
+ "M512 466.286c-72.571-137.143-139.429-270.857-329.714-361.143-113.714-53.714-12 21.143-12 21.143 103.429 71.429 150.857 168 206.286 273.714 72 137.714 180.571 319.429 329.714 383.429 148.571 64 78.286 28.571 13.714-19.429-64.571-48.571-156-198.857-208-297.714zM313.714 776.571c-206.286-163.429-194.857-358.857-313.714-776.571 1092 0 838.286 725.143 839.429 837.143l184.571 186.857h-59.429l-160.571-162.857c-89.143 9.714-284.571 78.857-490.286-84.571z"
+ ],
+ "width": 1092.022857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "envira"
+ ],
+ "defaultCode": 62105,
+ "grid": 14
+ },
+ {
+ "id": 609,
+ "paths": [
+ "M785.143 375.429c-4.571-19.429-24-31.429-44-26.857-81.714 19.429-156 35.429-229.143 35.429s-147.429-16-229.143-35.429c-20-4.571-39.429 7.429-44 26.857-4.571 20 7.429 39.429 26.857 44 60.571 14.286 117.143 26.857 173.143 33.143-2.286 193.143-23.429 246.857-47.429 308.571l-5.143 12c-7.429 18.857 2.286 40 21.143 47.429 4 1.714 8.571 2.286 13.143 2.286 14.857 0 28.571-8.571 34.286-23.429l4.571-11.429c16-41.143 30.857-79.429 40.571-148h24c9.714 68.571 24.571 106.857 40.571 148l4.571 11.429c5.714 14.857 19.429 23.429 34.286 23.429 4.571 0 9.143-0.571 13.143-2.286 18.857-7.429 28.571-28.571 21.143-47.429l-5.143-12c-24-61.714-45.143-115.429-47.429-308.571 56-6.286 112.571-18.857 173.143-33.143 19.429-4.571 31.429-24 26.857-44zM585.143 292.571c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM914.286 512c0 222.286-180 402.286-402.286 402.286s-402.286-180-402.286-402.286 180-402.286 402.286-402.286 402.286 180 402.286 402.286zM512 73.143c-241.714 0-438.857 197.143-438.857 438.857s197.143 438.857 438.857 438.857 438.857-197.143 438.857-438.857-197.143-438.857-438.857-438.857zM1024 512c0 282.857-229.143 512-512 512s-512-229.143-512-512 229.143-512 512-512v0c282.857 0 512 229.143 512 512z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "universal-access"
+ ],
+ "defaultCode": 62106,
+ "grid": 14
+ },
+ {
+ "id": 610,
+ "paths": [
+ "M821.714 464.571c12 12.571 18.286 29.714 16.571 46.857l-25.143 314.857c-2.857 32-29.143 56-60.571 56-1.714 0-3.429 0-5.143-0.571-33.714-2.286-58.286-32-56-65.143l20-245.143-81.714 4.571c20 41.143 31.429 88 31.429 137.143 0 82.286-32 157.143-84.571 212.571l-78.286-78.286c32-35.429 52-82.857 52-134.286 0-110.857-89.714-200.571-200-200.571-52 0-98.857 20-134.857 52.571l-78.286-78.857c44-41.714 100-70.286 162.286-80.571l150.857-171.429-85.143-49.714-103.429 92c-25.143 22.857-63.429 20.571-85.714-4.571s-20-63.429 4.571-85.714l136.571-121.714c19.429-17.714 48-20.571 70.857-6.857 278.286 161.714 278.857 161.714 278.857 161.714 14.857 8.571 23.429 23.429 27.429 38.857 5.714 22.286 1.714 47.429-14.857 66.857l-117.143 132.571 212-11.429c17.714-1.143 34.857 5.143 47.429 18.286zM708.571 203.429c-56 0-101.714-45.143-101.714-101.714 0-56 45.714-101.714 101.714-101.714 56.571 0 102.286 45.714 102.286 101.714 0 56.571-45.714 101.714-102.286 101.714zM350.286 913.143c41.143 0 80-13.143 112-34.857l79.429 79.429c-52.571 41.714-119.429 66.286-191.429 66.286-172 0-311.429-139.429-311.429-310.857 0-72.571 24.571-138.857 66.286-192l79.429 79.429c-21.714 32-34.286 70.857-34.286 112.571 0 110.286 89.714 200 200 200z"
+ ],
+ "width": 878.8845714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wheelchair-alt"
+ ],
+ "defaultCode": 62107,
+ "grid": 14
+ },
+ {
+ "id": 611,
+ "paths": [
+ "M502.857 685.714v91.429c0 10.286-8 18.286-18.286 18.286h-91.429c-10.286 0-18.286-8-18.286-18.286v-91.429c0-10.286 8-18.286 18.286-18.286h91.429c10.286 0 18.286 8 18.286 18.286zM649.143 402.286c0 81.143-56.571 113.143-98.286 136.571-29.714 17.143-48 28-48 46.286v18.286c0 10.286-8 18.286-18.286 18.286h-91.429c-10.286 0-18.286-8-18.286-18.286v-38.857c0-70.286 50.286-92.571 90.857-110.857 34.286-16 55.429-26.857 55.429-52.571 0-33.143-41.714-57.714-79.429-57.714-20 0-41.143 6.286-54.286 15.429-12.571 8.571-24.571 21.143-45.714 47.429-3.429 4.571-8.571 6.857-14.286 6.857-4 0-8-1.143-10.857-3.429l-61.714-46.857c-7.429-5.714-9.143-16.571-4-24.571 46.857-73.714 112.571-109.714 199.429-109.714v0c93.714 0 198.857 74.286 198.857 173.714zM438.857 146.286c-201.714 0-365.714 164-365.714 365.714s164 365.714 365.714 365.714 365.714-164 365.714-365.714-164-365.714-365.714-365.714zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857v0c242.286 0 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "question-circle-o"
+ ],
+ "defaultCode": 62108,
+ "grid": 14
+ },
+ {
+ "id": 612,
+ "paths": [
+ "M209.143 177.714c-49.143 0-89.143-40-89.143-89.143 0-48.571 40-88.571 89.143-88.571s88.571 40 88.571 88.571c0 49.143-39.429 89.143-88.571 89.143zM524 544.571c0 61.714-65.714 48-80.571 22.857l-209.714-250.286c-9.143-14.857-16-8-16-8s-4 4.571 2.286 12l69.714 79.429 0.571 202.286c-49.143 142.857-92 261.143-92 261.143-26.857 76.571-49.143 142.857-68.571 152-23.429 12-40.571 9.143-58.857 0.571-24-10.857-30.857-40-29.143-57.143 0 0 1.143-9.143 112.571-353.143l2.857-237.714-48.571 93.714 20 126.857c7.429 48-33.143 54.286-33.143 54.286-38.857 6.286-46.857-38.857-46.857-40l-26.286-170.857c120-216.571 120.571-217.714 120.571-217.714v0c9.143-13.714 29.714-19.429 64.571-19.429 30.857 0 50.286 9.143 61.143 22.857v0l242.286 297.714c3.429 2.286 5.714 5.714 8 9.714l1.714 1.714-0.571 0.571c2.857 5.143 4 10.857 4 16.571zM293.714 630.286c54.857 145.714 104 256 104 256 16.571 42.286 45.143 102.857 3.429 126.857-41.143 24-74.286-4-83.429-23.429v0h-0.571c-1.714-4.571-3.429-9.143-4.571-14.286l-70.857-200.571zM764.571 968.571c12 18.857 22.286 32.571 16 36.571-10.857 6.857-14.286-13.143-26.286-32.571 0 0-64.571-97.714-241.714-377.714 3.429 1.143 9.714-4 9.714-4s6.286-5.143 6.286-9.714c176 287.429 236 387.429 236 387.429z"
+ ],
+ "width": 809.1794285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "blind"
+ ],
+ "defaultCode": 62109,
+ "grid": 14
+ },
+ {
+ "id": 613,
+ "paths": [
+ "M288 568h97.714l-0.571-151.429zM874.286 511.429c0-63.429-36.571-110.286-112.571-110.286h-30.857v221.714h29.714c71.429 0 113.714-52 113.714-111.429zM546.286 296l0.571 432c0 10.857-8.571 19.429-18.857 19.429h-123.429c-10.286 0-18.857-8.571-18.857-19.429v-35.429h-166.286l-31.429 46.286c-3.429 5.143-9.714 8.571-16 8.571h-152.571c-16 0-25.143-17.714-15.429-30.286l317.714-432.571c3.429-5.143 9.143-8 15.429-8h189.714c10.857 0 19.429 8.571 19.429 19.429zM1018.857 511.429c0 150.286-109.714 236-257.143 236h-154.286c-10.857 0-19.429-8.571-19.429-19.429v-432c0-10.857 8.571-19.429 19.429-19.429h153.143c148.571 0 258.286 84.571 258.286 234.857zM1108 512c0 0 2.286 148.571-84.571 236h-29.143c77.714-92.571 79.429-236.571 79.429-236.571s1.143-113.143-77.143-234.286h24.571c84.571 96.571 86.857 234.857 86.857 234.857zM1213.143 512c0 0 2.286 148.571-85.143 236h-29.143c77.714-92.571 79.429-236.571 79.429-236.571s1.143-113.143-76.571-234.286h24.571c84.571 96.571 86.857 234.857 86.857 234.857zM1316.571 512c0 0 2.286 148.571-84.571 236h-29.143c77.143-92.571 78.857-236.571 78.857-236.571s1.143-113.143-76.571-234.286h24.571c84.571 96.571 86.857 234.857 86.857 234.857z"
+ ],
+ "width": 1313.1337142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "audio-description"
+ ],
+ "defaultCode": 62110,
+ "grid": 14
+ },
+ {
+ "id": 614,
+ "paths": [
+ "M352.571 965.143c0-13.714-30.286-110.857-36.571-133.714-3.429-14.286-4.571-37.714-15.429-48-7.429-6.857-19.429-8-29.143-8-26.857 0-53.714 6.286-80.571 6.286-8 0-20-0.571-26.857-6.286-9.143-7.429-13.714-33.143-17.143-44.571-13.714-47.429-21.143-96-21.143-145.714s7.429-98.286 21.143-145.714c3.429-11.429 8-37.143 17.143-44.571 6.857-5.714 18.857-6.286 26.857-6.286 26.857 0 53.714 6.286 80.571 6.286 9.714 0 21.714-1.143 29.143-8 10.857-10.286 12-33.714 15.429-48 6.286-22.857 36.571-120 36.571-133.714 0-19.429-51.429-48-68-54.286-8.571-3.429-17.143-4.571-25.714-4.571-18.857 0-37.714 5.143-56 10.286-93.714 28-116 85.143-153.143 165.714-40 86.286-49.714 168.571-49.714 262.857s9.714 176.571 49.714 262.857c37.143 80.571 59.429 137.714 153.143 165.714 18.286 5.143 37.143 10.286 56 10.286 8.571 0 17.143-1.143 25.714-4.571 16.571-6.286 68-34.857 68-54.286zM443.429 443.429c-9.714 0-18.857-4-25.714-10.857-14.286-14.286-14.857-37.714 0-52 13.714-13.714 21.143-32 21.143-51.429s-7.429-37.714-21.143-52c-14.857-14.286-14.286-37.143 0-51.429s37.143-14.286 51.429 0c27.429 27.429 42.857 64.571 42.857 103.429s-15.429 76-42.857 103.429c-7.429 6.857-16.571 10.857-25.714 10.857zM546.857 546.857c-9.714 0-18.857-3.429-25.714-10.857-14.286-14.286-14.286-37.143 0-51.429 41.143-41.714 64-96.571 64-155.429s-22.857-113.714-64-155.429c-14.286-14.286-14.286-37.143 0-51.429s37.143-14.286 51.429 0c55.429 55.429 85.714 128.571 85.714 206.857s-30.286 151.429-85.714 206.857c-6.857 7.429-16.571 10.857-25.714 10.857zM650.286 650.286c-9.714 0-18.857-3.429-25.714-10.857-14.286-14.286-14.286-37.143 0-51.429 68.571-69.143 106.857-161.143 106.857-258.857s-38.286-189.714-106.857-258.857c-14.286-14.286-14.286-37.143 0-51.429s37.143-14.286 51.429 0c82.857 82.857 128.571 193.143 128.571 310.286s-45.714 227.429-128.571 310.286c-6.857 7.429-16.571 10.857-25.714 10.857z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "volume-control-phone"
+ ],
+ "defaultCode": 62112,
+ "grid": 14
+ },
+ {
+ "id": 615,
+ "paths": [
+ "M109.714 676.571c-50.286 0-91.429 41.143-91.429 91.429s41.143 91.429 91.429 91.429 91.429-41.143 91.429-91.429-41.143-91.429-91.429-91.429zM402.286 676.571c-50.286 0-91.429 41.143-91.429 91.429s41.143 91.429 91.429 91.429 91.429-41.143 91.429-91.429-41.143-91.429-91.429-91.429zM402.286 384c-50.286 0-91.429 41.143-91.429 91.429s41.143 91.429 91.429 91.429 91.429-41.143 91.429-91.429-41.143-91.429-91.429-91.429zM841.143 676.571c-50.286 0-91.429 41.143-91.429 91.429s41.143 91.429 91.429 91.429 91.429-41.143 91.429-91.429-41.143-91.429-91.429-91.429zM1133.714 676.571c-50.286 0-91.429 41.143-91.429 91.429s41.143 91.429 91.429 91.429 91.429-41.143 91.429-91.429-41.143-91.429-91.429-91.429zM841.143 384c-50.286 0-91.429 41.143-91.429 91.429s41.143 91.429 91.429 91.429 91.429-41.143 91.429-91.429-41.143-91.429-91.429-91.429zM1133.714 384c-50.286 0-91.429 41.143-91.429 91.429s41.143 91.429 91.429 91.429 91.429-41.143 91.429-91.429-41.143-91.429-91.429-91.429zM1133.714 91.429c-50.286 0-91.429 41.143-91.429 91.429s41.143 91.429 91.429 91.429 91.429-41.143 91.429-91.429-41.143-91.429-91.429-91.429zM219.429 768c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714v0c60.571 0 109.714 49.143 109.714 109.714zM512 768c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714v0c60.571 0 109.714 49.143 109.714 109.714zM219.429 475.429c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714 109.714 49.143 109.714 109.714zM512 475.429c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714v0c60.571 0 109.714 49.143 109.714 109.714zM219.429 182.857c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714 109.714 49.143 109.714 109.714zM950.857 768c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714v0c60.571 0 109.714 49.143 109.714 109.714zM512 182.857c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714 109.714 49.143 109.714 109.714zM1243.429 768c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714v0c60.571 0 109.714 49.143 109.714 109.714zM950.857 475.429c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714v0c60.571 0 109.714 49.143 109.714 109.714zM1243.429 475.429c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714v0c60.571 0 109.714 49.143 109.714 109.714zM950.857 182.857c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714 109.714 49.143 109.714 109.714zM1243.429 182.857c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714v0c60.571 0 109.714 49.143 109.714 109.714z"
+ ],
+ "width": 1243.4285714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "braille"
+ ],
+ "defaultCode": 62113,
+ "grid": 14
+ },
+ {
+ "id": 616,
+ "paths": [
+ "M73.143 987.429c0 20-16.571 36.571-36.571 36.571s-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571 36.571 16.571 36.571 36.571zM182.857 877.714c0 20-16.571 36.571-36.571 36.571s-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571 36.571 16.571 36.571 36.571zM208.571 669.143l146.286 146.286-51.429 51.429-146.286-146.286zM402.286 658.286c0 20-16.571 36.571-36.571 36.571s-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571 36.571 16.571 36.571 36.571zM806.286 475.429c0 94.857-44.571 145.714-83.429 190.857-36 41.143-64.571 73.714-64.571 138.286 0 121.143-98.286 219.429-219.429 219.429-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571c80.571 0 146.286-65.714 146.286-146.286 0-92 44-142.286 82.286-186.286 35.429-40.571 65.714-75.429 65.714-142.857 0-141.143-114.857-256-256-256s-256 114.857-256 256c0 20-16.571 36.571-36.571 36.571s-36.571-16.571-36.571-36.571c0-181.714 147.429-329.143 329.143-329.143s329.143 147.429 329.143 329.143zM512 548.571c0 20-16.571 36.571-36.571 36.571s-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571 36.571 16.571 36.571 36.571zM676.571 475.429c0 20-16.571 36.571-36.571 36.571s-36.571-16.571-36.571-36.571c0-70.857-57.143-128-128-128-70.286 0-128 57.143-128 128 0 20-16.571 36.571-36.571 36.571s-36.571-16.571-36.571-36.571c0-110.857 90.286-201.143 201.143-201.143s201.143 90.286 201.143 201.143zM901.714 310.286c7.429 18.857-2.286 40-21.143 47.429-4 1.714-8.571 2.286-13.143 2.286-14.286 0-28.571-8.571-33.714-23.429-25.714-66.857-70.286-125.143-128-168.571-16-12-19.429-34.857-7.429-50.857 12.571-16 35.429-19.429 51.429-7.429 68.571 51.429 121.143 121.143 152 200.571zM1021.714 264c6.857 18.857-2.286 40-21.143 47.429-4.571 1.714-8.571 2.286-13.143 2.286-14.857 0-28.571-8.571-34.286-23.429-34.286-89.143-93.143-166.857-169.714-224.571-16.571-12-19.429-34.857-7.429-50.857 12-16.571 34.857-19.429 50.857-7.429 88 65.714 155.429 154.857 194.857 256.571z"
+ ],
+ "width": 1028.608,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "assistive-listening-systems"
+ ],
+ "defaultCode": 62114,
+ "grid": 14
+ },
+ {
+ "id": 617,
+ "paths": [
+ "M589.714 548.571c-20-0.571-38.857-12-48-31.429-12.571-25.714-37.714-41.714-66.286-41.714-40.571 0-73.143 32.571-73.143 73.143 0 19.429 6.857 38.286 20.571 50.857l5.714 4.571c12.571 11.429 29.143 17.714 46.857 17.714 28.571 0 53.714-16 66.286-41.714 9.143-19.429 28-30.857 48-31.429zM914.286 475.429c0-19.429-6.857-38.286-20.571-50.857l-5.714-4.571c-12.571-11.429-29.143-17.714-46.857-17.714-28.571 0-53.714 16-66.286 41.714-9.143 19.429-28 30.857-48 31.429 20 0.571 38.857 12 48 31.429 12.571 25.714 37.714 41.714 66.286 41.714 40.571 0 73.143-32.571 73.143-73.143zM670.857 349.143c-13.143 26.857-46.286 38.286-73.143 25.143-24-12-49.714-17.714-76.571-17.714-20 0-38.857 3.429-56.571 9.714 3.429 0 7.429-0.571 10.857-0.571 70.286 0 134.857 41.143 165.143 104.571 13.143 27.429 1.143 60-26.286 73.143-6.857 3.429-14.286 5.143-22.286 5.143 8 0 15.429 1.714 22.286 5.143 27.429 13.143 39.429 45.714 26.286 73.143-30.286 63.429-94.857 104.571-165.143 104.571v0h-3.429c-8.571-1.143-16.571-1.714-25.143-2.286l-165.714-15.429-136.571 68.571c-5.714 2.857-10.857 4-16.571 4-13.143 0-26.286-7.429-32.571-20l-91.429-182.857c-8.571-17.714-2.286-38.857 14.286-48.571l119.429-68 84.571-152.571c13.143-117.714 71.429-225.714 164-301.714 23.429-19.429 58.286-16 77.143 7.429 19.429 23.429 16 57.714-7.429 77.143-25.714 21.714-48.571 46.286-66.857 73.143 44.571-30.286 96-50.857 152.571-57.714 30.286-4 57.714 17.143 61.143 47.429 4 30.286-17.143 57.714-47.429 61.143-33.143 4-64 15.429-90.857 31.429 18.286-4 37.143-5.714 56.571-5.714 43.429 0 85.714 9.714 124.571 28.571 27.429 13.714 38.857 46.286 25.143 73.714zM1221.143 257.714l91.429 182.857c8.571 17.714 2.286 38.857-14.286 48.571l-119.429 68-84.571 152.571c-13.143 117.714-71.429 225.714-164 301.714-10.286 8.571-22.857 12.571-34.857 12.571-16 0-31.429-6.857-42.286-20-19.429-23.429-16-57.714 7.429-77.143 25.714-21.714 48.571-46.286 66.857-73.143-44.571 30.286-96 50.857-152.571 57.714-2.286 0.571-4.571 0.571-6.857 0.571-27.429 0-50.857-20.571-54.286-48-4-30.286 17.143-57.714 47.429-61.143 33.143-4 64-15.429 90.857-31.429-18.286 4-37.143 5.714-56.571 5.714-43.429 0-85.714-9.714-124.571-28.571-27.429-13.714-38.857-46.286-25.143-73.714 13.143-26.857 46.286-38.286 73.143-25.143 24 12 49.714 17.714 76.571 17.714 20 0 38.857-3.429 56.571-9.714-3.429 0-7.429 0.571-10.857 0.571-70.286 0-134.857-41.143-165.143-104.571-13.143-27.429-1.143-60 26.286-73.143 6.857-3.429 14.286-5.143 22.286-5.143-8 0-15.429-1.714-22.286-5.143-27.429-13.143-39.429-45.714-26.286-73.143 30.286-63.429 94.857-104.571 165.143-104.571v0h4c8 1.143 16 1.714 24 2.286l166.286 15.429 136.571-68.571c5.714-2.857 10.857-4 16.571-4 13.143 0 26.286 7.429 32.571 20z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "american-sign-language-interpreting",
+ "asl-interpreting"
+ ],
+ "defaultCode": 62115,
+ "grid": 14
+ },
+ {
+ "id": 618,
+ "paths": [
+ "M603.429 475.429c0 20 16.571 36.571 36.571 36.571s36.571-16.571 36.571-36.571c0-110.857-90.286-201.143-201.143-201.143s-201.143 90.286-201.143 201.143c0 20 16.571 36.571 36.571 36.571s36.571-16.571 36.571-36.571c0-70.857 57.714-128 128-128s128 57.143 128 128zM477.143 146.286c-181.714 0-329.143 147.429-329.143 329.143 0 20 16.571 36.571 36.571 36.571s36.571-16.571 36.571-36.571c0-141.143 114.857-256 256-256s256 114.857 256 256c0 67.429-30.286 102.286-65.714 142.857-38.286 44-82.286 94.286-82.286 186.286 0 80.571-65.714 146.286-146.286 146.286-20 0-36.571 16.571-36.571 36.571s16.571 36.571 36.571 36.571c121.143 0 219.429-98.286 219.429-219.429 0-64.571 28.571-97.143 64.571-138.286 38.857-45.143 83.429-96 83.429-190.857 0-181.714-147.429-329.143-329.143-329.143zM337.714 557.143l129.143 129.143-330.857 330.857c-9.143 9.143-24 9.143-33.143 0l-96-96c-9.143-9.143-9.143-24 0-33.143zM921.143 6.857l96 96c9.143 9.143 9.143 24 0 33.714l-133.143 133.143-14.857 14.286-40.571 40.571c-24.571-57.143-62.286-107.429-111.429-147.429l170.286-170.286c9.714-9.143 24.571-9.143 33.714 0z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "deaf",
+ "deafness",
+ "hard-of-hearing"
+ ],
+ "defaultCode": 62116,
+ "grid": 14
+ },
+ {
+ "id": 619,
+ "paths": [
+ "M494.857 294.286c0 18.286-4 36-7.429 53.714-12 57.143-23.429 114.286-35.429 171.429-1.714 8-1.714 8-10.286 8.571-5.714 0.571-12 1.143-17.714 1.143-49.143 0-62.857-53.143-62.857-93.143 0-59.429 23.429-138.857 78.857-170.286 9.143-4.571 18.857-8 29.143-8 23.429 0 25.714 17.143 25.714 36.571zM772.571 536.571c0-10.286-42.286-77.143-52-81.143-4.571-1.714-14.286-4.571-19.429-4.571-46.857 0-89.143 21.143-129.143 44l-1.143-1.143c9.143-61.143 29.714-115.429 29.714-178.857 0-90.857-48.571-133.143-138.286-133.143-13.143 0-26.286 1.714-38.857 3.429-112.571 20-181.143 148.571-181.143 254.286 0 112 64.571 173.714 176 173.714 2.286 0 14.286-1.143 14.286 1.714 0 1.143 0 1.714-0.571 2.857-2.286 21.714-9.143 45.714-14.857 66.857-8.571 31.429-38.286 85.714-76.571 85.714-16.571 0-24-11.429-24-26.857 0-49.714 57.143-79.429 58.286-82.286 0-2.286-2.857-4.571-4-5.714-17.714-16-46.857-29.143-70.857-29.143-43.429 0-66.857 69.714-66.857 105.143 0 66.286 41.714 112 108.571 112 98.857 0 170.857-104 193.143-189.714 6.286-25.143 10.857-50.857 17.143-76 1.143-5.143 2.857-7.429 8-10.286 40.571-20.571 83.429-34.286 129.714-34.286 25.143 0 47.429 4.571 72.571 10.286 0.571 0.571 1.714 0.571 2.286 0.571 3.429 0 8-4 8-7.429zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "glide"
+ ],
+ "defaultCode": 62117,
+ "grid": 14
+ },
+ {
+ "id": 620,
+ "paths": [
+ "M425.143 174.286c0-30.286-2.857-56.571-39.429-56.571-15.429 0-30.857 5.143-44.571 13.143-86.286 47.429-121.714 170.286-121.714 262.857 0 61.714 21.143 144 96.571 144 17.143 0 38.857 4.571 43.429-15.429 18.286-88 36.571-176.571 54.857-264.571 5.714-27.429 10.857-55.429 10.857-83.429zM856 549.143c0 5.714-7.429 11.429-13.143 11.429l-3.429-0.571c-38.857-5.714-73.143-16-112.571-16-71.429 0-137.143 21.143-200.571 53.143-8 4-9.714 7.429-12 15.429-10.286 38.857-17.143 78.857-26.857 117.714-34.286 133.143-145.714 293.714-298.286 293.714-104 0-168-70.857-168-173.143 0-55.429 36-163.429 102.857-163.429 23.429 0 115.429 30.286 116 54.286-1.143 4.571-89.714 50.286-89.714 127.429 0 23.429 11.429 41.714 37.143 41.714 90.857 0 132.571-165.714 141.714-235.429v-5.143c0-4.571-18.286-2.286-21.714-2.286-172 0-272.571-96-272.571-269.143 0-163.429 106.286-362.857 280.571-393.143 20-3.429 40-5.143 60.571-5.143 138.286 0 213.714 64.571 213.714 205.714 0 95.429-32.571 183.429-46.286 276.571l1.714 1.714c61.714-34.857 126.857-68 200-68 7.429 0 23.429 4.571 30.286 7.429 14.857 5.714 80.571 109.143 80.571 125.143z"
+ ],
+ "width": 877.1291428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "glide-g"
+ ],
+ "defaultCode": 62118,
+ "grid": 14
+ },
+ {
+ "id": 621,
+ "paths": [
+ "M474.857 384.571c12 0 23.429 3.429 33.714 10.286l126.857 84.571c23.429 15.429 44.571 34.286 62.857 55.429l83.429 97.143c14.286 16.571 20.571 38.857 16.571 60.571l-41.143 236c-4.571 24-24 42.286-48.571 45.143l-301.143 32-201.143 18.286h-5.143c-29.714 0-54.857-24-54.857-54.857 0-28.571 24-51.429 52.571-54.857l148.571-18.286h-256c-31.429 0-56.571-26.286-54.857-57.714 1.714-29.714 28-52 57.714-52l252.571-0.571-297.714-36.571c-30.857-3.429-53.143-31.429-48.571-62.857 4.571-27.429 29.714-45.714 57.143-45.714h5.714l274.857 34.286-200.571-53.714c-28.571-7.429-50.286-33.714-45.714-62.857 4.571-27.429 28-46.286 54.286-46.286 4 0 7.429 0.571 11.429 1.143l256 54.857 124 21.143c1.143 0 2.286 0.571 3.429 0.571 17.143 0 25.714-23.429 10.286-33.714l-106.286-71.429c-26.286-17.714-32.571-53.143-13.714-78.286 10.286-14.286 26.857-21.714 43.429-21.714zM434.857 500l106.286 71.429-124.571-21.143-2.857-1.143-20.571-21.714-136-149.714c-1.143-1.143-1.714-2.857-2.857-4-17.714-23.429-13.714-57.714 10.857-76.571 22.857-17.714 55.429-12 75.429 9.143l81.143 84c-1.714 1.714-3.429 2.857-5.143 4.571-12 16.571-16.571 36.571-13.143 56.571 3.429 19.429 14.857 37.143 31.429 48.571zM941.714 240.571l8.571 152c1.714 28-0.571 56.571-6.286 84l-27.429 125.143c-4.571 21.714-18.286 39.429-38.286 49.714l-60.571 30.857c0.571-22.857-6.857-44.571-22.286-62.286l-83.429-97.143c-19.429-22.286-41.714-42.286-66.857-58.857l-126.857-84.571c-12.571-8.571-27.429-13.143-43.429-13.143-19.429 0-37.143 8-50.286 21.143l-134.286-178.286c-18.857-25.143-13.143-60.571 13.143-78.286 24.571-17.143 58.286-9.143 76.571 14.857l152 201.143-149.714-260c-16-26.857-6.857-61.714 21.143-76.571 26.286-13.714 59.429-2.857 74.286 22.857l137.714 240-77.714-192.571c-10.857-27.429-3.429-60.571 22.857-74.286 28-14.857 62.286-2.857 75.429 25.714l110.286 237.143 57.714 112c9.143 17.714 36 10.286 34.857-9.143l-6.857-128c-1.714-31.429 22.857-57.714 54.286-58.286 29.714 0 53.714 25.143 55.429 54.857z"
+ ],
+ "width": 948.0045714285714,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sign-language",
+ "signing"
+ ],
+ "defaultCode": 62119,
+ "grid": 14
+ },
+ {
+ "id": 622,
+ "paths": [
+ "M191.429 774.857c-1.143 0-2.286-0.571-3.429-1.143-66.857-44.571-133.714-117.714-176-185.714-8-11.429-12-25.143-12-39.429 0-29.714 20.571-53.714 37.143-76 66.286-90.286 154.857-164.571 258.286-208.571-8.571-15.429-62.857-110.286-62.857-120.571 0-6.857 4-13.143 9.714-16.571 11.429-6.286 62.857-36.571 73.143-36.571 6.286 0 12.571 3.429 16 9.143l70.857 130.857c36-7.429 73.143-10.857 109.714-10.857 206.857 0 390.857 117.143 500.571 289.714 7.429 11.429 11.429 25.143 11.429 39.429s-4 28-11.429 39.429c-68 106.857-167.429 195.429-284 245.143 8.571 15.429 62.857 110.286 62.857 120.571 0 6.857-3.429 13.143-9.714 16.571-11.429 6.286-62.857 36.571-72.571 36.571-6.857 0-13.143-3.429-16.571-9.143l-70.857-130.857-36.571-68-253.714-468.571 4-4c-19.429 8-38.286 16.571-56.571 26.857 6.857 13.143 279.429 513.714 279.429 517.714 0 2.857-2.286 4.571-5.143 5.143-12.571 2.857-28.571 1.714-41.143 1.714-6.286 0-32 1.143-34.286-4l-260.571-480.571c-16.571 12-32 25.143-46.857 38.857 12.571 22.286 230.857 424 230.857 427.429 0 4.571-2.857 5.714-6.286 5.714-9.714 0-85.714-23.429-88.571-28.571l-60.571-112.571-128-236c-16 19.429-30.857 39.429-44.571 60.571 7.429 10.857 17.143 22.286 23.429 33.714 8 14.857 100.571 183.429 100.571 186.857 0 2.857-2.857 5.714-5.714 5.714zM665.714 716.571l28 52c106.857-43.429 194.857-123.429 257.143-220-63.429-97.714-153.714-178.857-262.286-222.286 50.857 48.571 79.429 115.429 79.429 185.714 0 80.571-37.714 156.571-102.286 204.571zM484.571 365.714c0 14.857 12.571 27.429 27.429 27.429 31.429 0 61.714 12.571 84 34.857s34.857 52.571 34.857 84c0 14.857 12.571 27.429 27.429 27.429s27.429-12.571 27.429-27.429c0-96-77.714-173.714-173.714-173.714-14.857 0-27.429 12.571-27.429 27.429zM693.714 328.571l-5.143-2.286 4 4z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "low-vision"
+ ],
+ "defaultCode": 62120,
+ "grid": 14
+ },
+ {
+ "id": 623,
+ "paths": [
+ "M600 632c0 81.714-28.571 153.714-84 213.714-57.714 62.857-130.857 92-216 92-84.571 0-158.286-28.571-216-92-55.429-60-84-132-84-213.714 0-169.714 128-308.571 300-308.571 35.429 0 70.857 5.714 104 17.714-11.429 22.286-19.429 46.857-22.286 72-25.714-10.857-53.714-16-81.714-16-129.714 0-225.143 110.857-225.143 236.571 0 128 94.857 232.571 225.143 232.571s224.571-104.571 224.571-232.571c0-32.571-5.714-64.571-18.286-94.857 25.143-5.143 49.143-14.857 70.286-28 16 38.286 23.429 80 23.429 121.143zM483.429 524c0 144-58.286 264-181.714 341.714l-8 0.571c-12 0-24-1.143-35.429-2.857 165.143-62.857 195.429-313.714 195.429-466.857 0-19.429 0-39.429-1.714-58.857 20.571 60 31.429 122.857 31.429 186.286zM452 336.571v1.143c-29.714-87.429-70.857-172-117.714-251.429 72 48.571 111.429 166.286 117.714 250.286zM591.429 452.571c-35.429 0-66.857-18.857-91.429-42.857 58.286-32 132-81.714 165.714-141.143 4-8 10.857-22.857 12-32-33.143 74.286-117.714 132.571-196.571 150.857-12.571-19.429-20-41.143-20-64.571 0-27.429 13.714-64 34.286-84 23.429-22.286 58.286-33.714 89.714-42.286 45.714-12.571 82.857-48 102.857-90.857 29.714 42.286 42.286 93.714 42.286 144.571 0 25.714-4 72.571-13.714 97.143-21.143 51.429-64 105.143-125.143 105.143z"
+ ],
+ "width": 730.2582857142856,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "viadeo"
+ ],
+ "defaultCode": 62121,
+ "grid": 14
+ },
+ {
+ "id": 624,
+ "paths": [
+ "M600 594.857c0-28.571-5.143-57.143-16-84-14.857 9.143-31.429 16-48.571 19.429 9.143 20.571 12.571 42.857 12.571 65.143 0 88-65.143 160-154.286 160-89.714 0-154.857-72-154.857-160 0-86.286 65.714-162.286 154.857-162.286 19.429 0 38.286 3.429 56 10.857 1.714-17.143 7.429-34.286 15.429-49.714-22.857-8-46.857-12-71.429-12-118.286 0-206.286 95.429-206.286 212.571s88.571 209.714 206.286 209.714 206.286-93.143 206.286-209.714zM498.286 392c1.143 13.714 1.143 27.429 1.143 40.571 0 105.714-20.571 277.714-134.286 321.143 8 1.143 16 1.714 24 1.714h5.714c84.571-53.714 125.143-136 125.143-234.857 0-44-7.429-87.429-21.714-128.571zM498.286 392c-2.857-55.429-34.286-141.143-81.143-172.571 32 54.286 60.571 112.571 81.143 172.571zM689.714 332c0-34.857-8.571-70.286-29.143-99.429-13.714 29.143-39.429 53.714-70.857 62.286-45.143 12.571-85.143 33.714-85.143 87.429 0 15.429 5.143 30.857 13.714 44 54.286-12.571 112-52.571 134.857-104-3.429 45.714-88.571 101.143-121.714 119.429 16.571 16.571 38.286 29.714 62.857 29.714 41.714 0 71.429-37.143 85.714-72.571 6.857-17.143 9.714-49.143 9.714-66.857zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "viadeo-square"
+ ],
+ "defaultCode": 62122,
+ "grid": 14
+ },
+ {
+ "id": 625,
+ "paths": [
+ "M730.857 656c0-8-4.571-13.714-12.571-15.429-52-11.429-91.429-47.429-113.143-95.429-1.714-4.571-4-9.143-4-14.286 0-25.714 71.429-20.571 71.429-57.143 0-15.429-18.857-25.143-32.571-25.143-13.143 0-23.429 9.143-36 9.143-2.286 0-4.571-0.571-6.857-1.143 1.143-21.714 2.857-43.429 2.857-65.143 0-20-1.143-47.429-9.714-65.143-27.429-59.429-80.571-94.286-145.714-94.286-71.429 0-125.714 26.286-157.143 94.286-8.571 17.714-9.714 45.143-9.714 65.143 0 21.714 1.714 43.429 2.857 65.143-2.286 1.143-5.143 1.143-8 1.143-13.143 0-23.429-8.571-35.429-8.571-14.286 0-32 9.143-32 25.143 0 35.429 71.429 30.857 71.429 56.571 0 5.143-2.286 9.714-4 14.286-22.286 48-60.571 84-113.143 95.429-8 1.714-12.571 7.429-12.571 15.429 0 26.286 60.571 36 78.286 38.857 5.143 13.714 2.857 37.714 23.429 37.714 14.286 0 28.571-5.143 44-5.143 60 0 76 54.286 145.714 54.286 72.571 0 86.286-54.286 146.857-54.286 15.429 0 29.714 4.571 44.571 4.571 20 0 17.714-24 22.857-37.143 17.714-2.857 78.286-12.571 78.286-38.857zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "snapchat"
+ ],
+ "defaultCode": 62123,
+ "grid": 14
+ },
+ {
+ "id": 626,
+ "paths": [
+ "M484.571 73.143c102.857-1.143 188 56.571 230.857 149.143 13.143 28 15.429 71.429 15.429 102.286 0 36.571-2.857 72.571-5.143 109.143 4.571 2.286 10.857 4 16 4 20.571 0 37.714-15.429 58.286-15.429 19.429 0 47.429 13.714 47.429 36.571 0 54.857-114.857 44.571-114.857 92.571 0 8.571 3.429 16.571 6.857 24.571 27.429 60 79.429 117.714 141.143 143.429 14.857 6.286 29.714 9.714 45.714 13.143 10.286 2.286 16 9.714 16 20 0 38.857-98.857 54.857-125.143 58.857-11.429 17.714-2.857 59.429-33.143 59.429-23.429 0-46.857-7.429-72-7.429-12 0-24 0.571-35.429 2.857-68 11.429-90.857 84.571-202.286 84.571-107.429 0-133.143-73.143-199.429-84.571-12-2.286-24-2.857-36-2.857-25.714 0-50.286 8.571-70.857 8.571-32 0-22.286-42.286-34.286-60.571-26.286-4-125.143-20-125.143-58.857 0-10.286 5.714-17.714 16-20 16-3.429 30.857-6.857 45.714-13.143 61.143-25.143 114.286-83.429 141.143-143.429 3.429-8 6.857-16 6.857-24.571 0-48-115.429-38.857-115.429-92 0-22.286 26.286-36.571 46.286-36.571 17.714 0 35.429 14.857 57.714 14.857 6.286 0 12.571-1.143 18.286-4-2.286-36-5.143-72-5.143-108.571 0-30.857 2.286-74.857 15.429-102.857 50.286-108.571 135.429-148 249.143-149.143z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "snapchat-ghost"
+ ],
+ "defaultCode": 62124,
+ "grid": 14
+ },
+ {
+ "id": 627,
+ "paths": [
+ "M731.429 656c0-8-4.571-13.714-12.571-15.429-52-10.857-91.429-47.429-113.143-95.429-2.286-4.571-4-9.143-4-14.286 0-25.714 70.857-20.571 70.857-57.143 0-15.429-18.857-25.143-32.571-25.143-12.571 0-22.857 9.143-36 9.143-2.286 0-4.571-0.571-6.857-1.143 1.714-21.714 2.857-44 2.857-65.714 0-19.429-1.143-46.857-9.714-65.143-27.429-59.429-80-94.286-145.714-94.286-71.429 0-125.714 26.857-157.143 94.286-8.571 18.286-10.286 45.714-10.286 65.714 0 21.714 1.714 43.429 3.429 65.143-2.857 0.571-5.714 1.143-8.571 1.143-12.571 0-23.429-9.143-35.429-9.143-14.286 0-31.429 9.714-31.429 25.714 0 35.429 70.857 30.857 70.857 56.571 0 5.143-1.714 9.714-4 14.286-22.286 48-60.571 84-113.143 95.429-8 1.714-12.571 7.429-12.571 15.429 0 26.857 60.571 36.571 78.857 39.429 5.143 13.714 2.857 37.714 22.857 37.714 14.857 0 29.143-5.714 44-5.714 60.571 0 76.571 54.286 146.286 54.286 72.571 0 86.286-54.286 147.429-54.286 14.857 0 29.714 5.143 44.571 5.143 19.429 0 17.714-24 22.286-37.143 18.286-2.857 78.857-12.571 78.857-39.429zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "snapchat-square"
+ ],
+ "defaultCode": 62125,
+ "grid": 14
+ },
+ {
+ "id": 628,
+ "paths": [
+ "M1316.571 0c-166.286 110.286-184 190.286-198.286 214.857-13.714 25.143-24 124-48 172-24 48.571-111.429 86.857-136 102.857-24 16-58.286 78.286-86.286 132-126.286-5.143-251.429 25.714-360 90.286 0 0-52.571 30.286-173.143 102.286 60.571-20 89.143-34.286 89.143-34.286 150.857-57.714 190.857-85.143 312.571-105.143 93.714-15.429 214.857-2.857 265.714 4 2.286 0 4 1.143 5.714 1.714 8 4.571 10.857 14.286 6.286 22.286l-110.857 197.143c-5.143 9.714-16 14.857-26.857 12.571-27.429-5.143-90.286-13.714-202.286-13.714-162.286 0-294.286 49.714-453.714 52-134.286 1.714-186.857-53.143-200-70.857 0-0.571-0.571-1.143-0.571-1.714 0-2.286 1.143-3.429 3.429-3.429 0 0 78.857 0 212-31.429 151.429-288.571 286.286-389.714 433.143-389.714 0 0 147.429 0 186.286 127.429 46.857-81.714 58.286-101.143 58.286-101.143 10.857-19.429 72-158.857 177.714-290.857v0c106.286-132 186.286-164.571 245.714-189.143z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pied-piper"
+ ],
+ "defaultCode": 62126,
+ "grid": 14
+ },
+ {
+ "id": 629,
+ "paths": [
+ "M755.429 512c0 14.857-0.571 29.143-2.857 43.429l-134.857-8 128 44.571c-7.429 29.143-18.857 56-33.143 80.571l-122.286-58.857 101.143 90.286c-17.143 23.429-37.714 44-61.143 61.714l-89.714-101.714 58.857 122.857c-24.571 14.857-51.429 25.714-80 33.714l-45.143-130.286 8 137.143c-14.286 2.286-28.571 3.429-43.429 3.429-14.286 0-29.143-1.143-43.429-3.429l8-136-44.571 129.143c-28.571-7.429-55.429-18.857-80-33.714l58.857-122.857-89.714 101.714c-23.429-17.143-44-38.286-61.714-61.714l101.714-90.286-122.286 59.429c-14.286-25.143-25.714-52-33.143-80.571l128-45.143-135.429 8c-1.714-14.286-2.857-28.571-2.857-43.429s1.143-29.714 2.857-44l136 8-128.571-45.143c7.429-28.571 18.857-55.429 33.143-80l122.286 59.429-101.143-90.857c17.714-23.429 38.286-44 61.143-61.714l90.286 101.714-58.857-122.857c24.571-14.286 51.429-25.714 80-33.143l44 128-7.429-134.857c13.714-2.286 28.571-3.429 42.857-3.429 14.857 0 29.143 1.143 43.429 3.429l-8 135.429 44.571-128.571c28.571 7.429 55.429 18.857 80 33.714l-58.857 122.286 90.286-101.714c22.857 17.714 43.429 38.286 61.143 61.714l-101.143 90.857 121.714-59.429c14.857 24.571 25.714 52 33.143 80.571l-128 44.571 135.429-8c2.286 14.286 2.857 29.143 2.857 44zM772.571 512c0-185.714-149.714-336-333.714-336-184.571 0-333.714 150.286-333.714 336 0 185.143 149.143 335.429 333.714 335.429 184 0 333.714-150.286 333.714-335.429zM814.286 293.143v437.714l-375.429 218.857-375.429-218.857v-437.714l375.429-218.857zM438.857 982.286l404.571-235.429v-470.286l-404.571-234.857-404.571 234.857v470.286zM877.714 256v512l-438.857 256-438.857-256v-512l438.857-256z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "first-order"
+ ],
+ "defaultCode": 62128,
+ "grid": 14
+ },
+ {
+ "id": 630,
+ "paths": [
+ "M193.714 124.571h394.857l-14.857 41.143h-380c-84 0-152.571 69.143-152.571 153.143v440.571c0 72 51.429 135.429 122.286 150.286 18.286 4 37.143 2.857 56 2.857v41.143h-25.714c-106.857 0-193.714-87.429-193.714-194.286v-440.571c0-106.857 86.857-194.286 193.714-194.286zM680 0h141.143l-275.429 739.429c-51.429 137.143-113.714 280-282.857 284.571v-111.429c63.429-10.286 104-45.143 125.714-104 7.429-19.429 11.429-39.429 11.429-60s-4-41.143-11.429-60.571l-162.857-418.857h130.286l106.857 334.286zM950.857 318.857v634.857h-454.286c9.143-13.714 18.857-26.857 25.714-41.714h387.429v-593.143c0-65.143-41.143-123.429-102.286-145.143l14.286-38.286c77.714 26.286 129.143 101.714 129.143 183.429z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "yoast"
+ ],
+ "defaultCode": 62129,
+ "grid": 14
+ },
+ {
+ "id": 631,
+ "paths": [
+ "M486.857 176.571c0 20.571-13.143 43.429-35.429 43.429-22.857 0-35.429-22.857-35.429-43.429 0-20 12.571-43.429 35.429-43.429 22.286 0 35.429 23.429 35.429 43.429zM393.143 962.857v-65.143c0-22.286-17.714-41.714-40.571-41.714s-40 19.429-40 41.714v65.143c0 22.286 17.143 42.286 40 42.286s40.571-19.429 40.571-42.286zM491.429 962.857v-65.143c0-22.286-17.143-41.714-40-41.714s-40.571 19.429-40.571 41.714v65.143c0 22.286 17.714 42.286 40.571 42.286s40-20 40-42.286zM590.857 962.857v-65.143c0-22.286-17.714-41.714-40.571-41.714s-40.571 19.429-40.571 41.714v65.143c0 22.286 17.714 42.286 40.571 42.286s40.571-19.429 40.571-42.286zM690.286 962.857v-65.143c0-22.286-17.714-41.714-40.571-41.714s-40.571 19.429-40.571 41.714v65.143c0 22.286 17.714 42.286 40.571 42.286s40.571-20 40.571-42.286zM843.429 572c-61.714 118.286-180.571 205.143-317.143 205.143-193.143 0-321.143-169.143-321.143-353.143 0-33.714 4-66.857 12-99.429-40 67.429-59.429 145.143-59.429 222.857 0 120.571 49.714 243.429 142.857 321.714 10.286-19.429 29.714-32.571 52-32.571 20 0 38.857 11.429 49.143 28.571 10.857-17.143 29.143-28.571 49.714-28.571 20 0 38.857 11.429 49.143 28.571 10.857-17.143 29.714-28.571 49.714-28.571s38.857 11.429 49.714 28.571c10.286-17.143 29.143-28.571 49.143-28.571 21.714 0 41.714 13.143 51.429 32 86.857-72.571 137.143-184 142.857-296.571zM757.714 555.429c0-28.571-12.571-42.857-41.143-42.857-9.143 0-18.286 1.714-26.857 3.429-28.571 5.714-56.571 10.857-85.143 10.857-90.286 0-129.143-52.571-129.143-138.857 0-39.429 7.429-78.286 17.143-116.571-30.286 46.286-47.429 101.714-47.429 157.143 0 108 68.571 212 185.143 212 42.857 0 85.143-15.429 120-40 4-14.857 7.429-29.714 7.429-45.143zM505.143 178.857c0-36-25.143-73.714-64.571-73.714s-64.571 37.714-64.571 73.714c0 36.571 25.143 74.286 64.571 74.286s64.571-37.714 64.571-74.286zM864.571 372.571c0-107.429-69.143-211.429-185.143-211.429-60.571 0-117.143 30.286-157.714 73.714-14.286 47.429-27.429 102.857-27.429 153.143 0 76 30.286 120 110.286 120 27.429 0 54.286-5.143 81.143-10.857 10.286-1.714 20-3.429 30.286-3.429 39.429 0 59.429 22.857 59.429 61.714 0 8.571-0.571 17.714-2.286 26.286 57.714-52 91.429-131.429 91.429-209.143zM1024 496.571c0 72-22.857 204.571-72.571 259.429-45.714 49.714-174.857 122.286-241.714 141.143l-2.286 0.571v65.143c0 32.571-25.143 61.143-58.286 61.143-20 0-38.857-11.429-49.143-28.571-10.857 17.143-29.714 28.571-49.714 28.571s-38.857-11.429-49.714-28.571c-10.286 17.143-29.143 28.571-49.143 28.571-20.571 0-38.857-11.429-49.714-28.571-10.286 17.143-29.143 28.571-49.143 28.571-37.714 0-58.857-31.429-58.857-65.714-32.571 24.571-71.429 38.857-113.143 38.857-44 0-86.857-16.571-120.571-45.714 20.571-0.571 41.143-4.571 60.571-11.429-41.714-11.429-78.857-37.714-104-72.571 13.143 2.857 26.857 4 40.571 4 33.143 0 65.714-9.143 93.714-26.286-44-44-113.143-117.714-137.143-174.857-11.429-26.857-13.714-62.857-13.714-91.429 0-99.429 40.571-320 172.571-320 21.143 0 37.714 9.714 46.286 29.714 7.429-10.857 15.429-21.143 24-30.857 4-5.143 11.429-10.857 14.286-16.571 16-25.143 23.429-42.286 43.429-68 64.571-82.286 163.429-138.857 269.714-138.857 12 0 24 0.571 35.429 2.286 21.714-23.429 52-36.571 83.429-36.571 29.143 0 59.429 12 80 32.571 1.714 1.714 2.857 4.571 2.857 6.857 0 7.429-20.571 26.857-25.714 32.571 8.571 2.857 31.429 13.714 31.429 24 0 5.714-5.714 10.286-9.143 14.286 62.857 55.429 98.857 134.286 112.571 216 8.571-10.286 20.571-17.143 34.286-17.143 21.143 0 41.714 14.286 57.143 28 41.714 37.143 51.429 106.286 51.429 159.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "themeisle"
+ ],
+ "defaultCode": 62130,
+ "grid": 14
+ },
+ {
+ "id": 632,
+ "paths": [
+ "M524 517.143c0-12.571-1.143-24.571-3.429-36.571h-206.857v75.429h124c-9.143 60.571-66.286 94.286-124 94.286-76 0-136.571-62.857-136.571-138.286s60.571-138.286 136.571-138.286c32 0 64 10.857 87.429 33.714l59.429-57.714c-40.571-37.714-91.429-57.143-146.857-57.143-121.714 0-219.429 98.286-219.429 219.429s97.714 219.429 219.429 219.429c126.286 0 210.286-89.143 210.286-214.286zM721.143 543.429h62.286v-62.857h-62.286v-62.857h-62.857v62.857h-62.857v62.857h62.857v62.857h62.857v-62.857zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "google-plus-circle",
+ "google-plus-official"
+ ],
+ "defaultCode": 62131,
+ "grid": 14
+ },
+ {
+ "id": 633,
+ "paths": [
+ "M877.714 292.571v479.429c0 17.714-11.429 30.857-28 35.429-61.143 18.286-129.714 29.714-193.143 29.714-85.714 0-158.286-33.714-253.143-33.714-70.286 0-142.857 11.429-211.429 27.429v193.143h-91.429v-781.714c-48-18.857-79.429-65.714-79.429-117.143 0-69.143 56-125.143 125.143-125.143s125.143 56 125.143 125.143c0 51.429-31.429 98.286-79.429 117.143v38.857c64-14.857 130.286-25.143 196-25.143 37.714 0 75.429 2.857 113.143 8.571 49.143 7.429 98.857 24.571 149.143 24.571 31.429 0 63.429-4 94.286-10.286 23.429-4.571 77.143-22.857 96.571-22.857 20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 898.8525714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fa",
+ "font-awesome"
+ ],
+ "defaultCode": 62132,
+ "grid": 14
+ },
+ {
+ "id": 634,
+ "paths": [
+ "M109.714 658.286c48 0 48-73.143 0-73.143s-48 73.143 0 73.143zM951.429 625.143c-45.143-58.857-89.143-118.857-140.571-172.571l-71.429 80c-62.857 71.429-175.429 69.714-236.571-3.429-43.429-52.571-43.429-128 1.143-180l101.143-117.714c-35.429-18.286-78.286-12-116.571-12-33.714 0-66.286 13.714-90.286 37.714l-90.286 90.286h-88.571v310.857c25.143 0 48-3.429 68 16l169.714 166.857c34.857 33.714 80 63.429 129.714 63.429 25.714 0 53.143-8.571 71.429-26.857 42.857 14.857 92.571-9.143 105.714-53.143 27.429 2.286 52.571-6.286 72.571-25.143 13.143-12 30.286-36 28.571-54.857 5.143 5.143 17.714 5.714 24.571 5.714 68 0 103.429-71.429 61.714-125.143zM1042.286 658.286h54.857v-292.571h-53.143l-89.714-102.857c-24-27.429-60-43.429-96.571-43.429h-95.429c-32 0-62.857 14.286-83.429 38.286l-119.429 138.857c-21.143 25.143-21.143 60.571-0.571 85.714 32.571 38.857 92.571 39.429 126.286 1.714l110.286-124.571c26.286-29.143 74.286-1.714 62.286 35.429 21.714 25.143 45.143 49.714 66.286 74.857 28.571 35.429 56 72.571 84 108.571 17.714 22.857 30.857 50.286 34.286 80zM1206.857 658.286c48 0 48-73.143 0-73.143s-48 73.143 0 73.143zM1316.571 329.143v365.714c0 20-16.571 36.571-36.571 36.571h-248c-20.571 49.714-65.714 82.857-118.286 90.286-24.571 36-62.286 63.429-104.571 72.571-31.429 40-82.286 64-133.143 60.571-94.286 53.143-200.571 6.857-270.857-62.286l-164-161.143h-204.571c-20 0-36.571-16.571-36.571-36.571v-384c0-20 16.571-36.571 36.571-36.571h240.571c66.286-66.286 112-128 211.429-128h66.857c37.143 0 73.143 11.429 103.429 32 30.286-20.571 66.286-32 103.429-32h95.429c108.571 0 153.714 70.857 219.429 146.286h202.857c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "handshake-o"
+ ],
+ "defaultCode": 62133,
+ "grid": 14
+ },
+ {
+ "id": 635,
+ "paths": [
+ "M1024 373.714v558.857c0 50.286-41.143 91.429-91.429 91.429h-841.143c-50.286 0-91.429-41.143-91.429-91.429v-558.857c0-5.143 2.286-10.286 6.286-13.714 60-52.571 60.571-58.857 358.857-276.571 36-26.286 99.429-83.429 146.857-83.429s111.429 57.714 146.857 83.429c298.286 217.714 298.857 224 358.857 276.571 4 3.429 6.286 8.571 6.286 13.714zM701.714 708c89.143-64.571 151.429-109.714 197.143-144 8-5.714 9.714-17.143 3.429-25.143l-21.714-29.714c-6.286-8-17.714-9.714-25.714-3.429-45.143 33.143-106.857 78.857-196 142.857-35.429 25.714-99.429 82.857-146.857 82.857s-111.429-57.143-146.857-82.857c-89.143-64.571-150.857-109.714-196-142.857-8-6.286-19.429-4.571-25.714 3.429l-21.714 29.714c-6.286 8-4.571 19.429 3.429 25.143 45.714 34.286 108 79.429 197.143 144 44.571 32 114.857 96.571 189.714 96.571 75.429 0 147.429-65.714 189.714-96.571z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "envelope-open"
+ ],
+ "defaultCode": 62134,
+ "grid": 14
+ },
+ {
+ "id": 636,
+ "paths": [
+ "M842.286 521.714l22.286 29.143c6.286 8 4.571 18.857-2.857 25.143-57.143 44.571-188.571 145.714-194.286 150.286-40.571 33.143-95.429 78.857-154.857 78.286h-1.143c-59.429 0-114.286-45.143-154.857-78.286-6.286-5.143-133.143-102.857-189.143-146.286-8-6.286-9.714-17.143-3.429-25.143l21.143-29.714c6.286-8.571 18.286-10.286 26.286-3.429 38.857 30.286 93.714 72.571 174.857 134.857 28.571 21.714 85.143 74.857 125.143 74.857h1.143c40 0 96.571-53.143 125.143-74.857 84-64.571 140-107.429 178.857-138.286 8-6.286 19.429-4.571 25.714 3.429zM950.857 932.571v-530.286c-57.143-53.143-48.571-48.571-313.143-253.143-28.571-22.286-85.143-76-125.143-76h-1.143c-40 0-96.571 53.714-125.143 76-264.571 204.571-256 200-313.143 253.143v530.286c0 9.714 8.571 18.286 18.286 18.286h841.143c9.714 0 18.286-8.571 18.286-18.286zM1024 402.286v530.286c0 50.286-41.143 91.429-91.429 91.429h-841.143c-50.286 0-91.429-41.143-91.429-91.429v-530.286c0-20.571 8.571-40 23.429-53.714 117.143-108.571 252-202.857 333.143-269.714 40-33.143 95.429-78.857 154.857-78.857h1.143c59.429 0 114.857 45.714 154.857 78.857 75.429 62.286 218.857 163.429 333.143 269.714 14.857 13.714 23.429 33.143 23.429 53.714z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "envelope-open-o"
+ ],
+ "defaultCode": 62135,
+ "grid": 14
+ },
+ {
+ "id": 637,
+ "paths": [
+ "M188.571 877.143l115.429 122.286-19.429-134.857-123.429-121.714zM317.714 1006.286l156.571-124.571-6.286-140-171.429 122.857zM140 641.714l129.714 121.714-27.429-186.857-140-116.571zM282.857 769.714l181.143-122.286-8-185.143-201.143 114.286zM481.714 776l54.286 45.714-1.143-136.571-58.857-45.143c0 4.571 2.286 12.571-2.286 16l-44.571 29.714 48.571 40c5.714 4.571 4 43.429 4 50.286zM78.857 346.286l146.286 114.286-38.857-265.714-159.429-98.857zM670.286 725.143l8.571-133.714-131.429 93.714 1.143 137.143zM238.286 465.143l213.143-110.857-10.857-252-241.714 93.143zM725.714 673.714l11.429-133.143-129.143-81.143-1.143 60 82.286 54.286c1.714 1.143 2.857 3.429 2.286 5.143l-4 68zM834.857 594.286l17.143-126.857-102.286 73.143-11.429 130.286zM727.429 689.714l-40.571-28-4.571 66.857c0 1.714-0.571 3.429-2.286 4.571l-133.714 106.857c-2.286 1.714-5.714 1.714-8 0l-56-47.429 4 92c0 1.714-0.571 3.429-2.286 4.571l-167.429 133.714c-1.143 0.571-2.286 1.143-3.429 1.143-1.714-0.571-3.429-0.571-4.571-1.714l-130.286-138.286c-2.857-2.857-30.857-144-33.714-158.286-0.571-2.286 1.143-5.143 2.857-6.286l34.857-21.143c-6.857-6.286-53.143-46.857-54.286-52.571l-41.143-200.571c-0.571-2.286 0.571-5.143 3.429-6.857l53.714-25.714c-9.143-6.857-75.429-54.857-77.143-61.714l-54.857-266.286c-0.571-3.429 1.143-6.286 4-7.429l247.429-77.143c1.143 0 2.857 0 4.571 0.571l181.143 87.429c1.714 1.143 3.429 3.429 3.429 5.143l11.429 264.571c0 2.286-1.143 4.571-3.429 5.714l-67.429 34.857 72 48.571c1.714 0.571 2.857 2.857 2.857 4.571l2.857 70.286 69.143-42.286c1.714-1.143 4.571-1.143 6.286 0l48 32 1.714-62.857c0-1.714 1.143-4 2.857-5.143l117.714-72c2.286-1.143 4.571-1.143 6.286 0l140 77.143c1.143 1.143 2.286 2.286 2.857 4 1.143 4-17.714 132.571-19.429 145.714 0 1.714-1.143 3.429-2.286 4l-109.143 87.429c-2.286 1.714-5.143 1.714-7.429 0z"
+ ],
+ "width": 878.2994285714285,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "linode"
+ ],
+ "defaultCode": 62136,
+ "grid": 14
+ },
+ {
+ "id": 638,
+ "paths": [
+ "M686.286 707.429c0-101.143-24.571-213.714-126.286-213.714-31.429 18.286-74.286 49.714-121.143 49.714s-89.714-31.429-121.143-49.714c-101.714 0-126.286 112.571-126.286 213.714 0 56.571 37.143 97.143 82.857 97.143h329.143c45.714 0 82.857-40.571 82.857-97.143zM587.429 368c0-82.286-66.857-148.571-148.571-148.571s-148.571 66.286-148.571 148.571c0 81.714 66.857 148 148.571 148s148.571-66.286 148.571-148zM950.857 676.571v109.714c0 10.286-8 18.286-18.286 18.286h-54.857v128c0 50.286-41.143 91.429-91.429 91.429h-694.857c-50.286 0-91.429-41.143-91.429-91.429v-841.143c0-50.286 41.143-91.429 91.429-91.429h694.857c50.286 0 91.429 41.143 91.429 91.429v128h54.857c10.286 0 18.286 8 18.286 18.286v109.714c0 10.286-8 18.286-18.286 18.286h-54.857v73.143h54.857c10.286 0 18.286 8 18.286 18.286v109.714c0 10.286-8 18.286-18.286 18.286h-54.857v73.143h54.857c10.286 0 18.286 8 18.286 18.286z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "address-book"
+ ],
+ "defaultCode": 62137,
+ "grid": 14
+ },
+ {
+ "id": 639,
+ "paths": [
+ "M587.429 368c0 81.714-66.857 148-148.571 148s-148.571-66.286-148.571-148c0-82.286 66.857-148.571 148.571-148.571s148.571 66.286 148.571 148.571zM560 493.714c109.143 0 126.286 129.714 126.286 213.714 0 48-30.286 97.143-82.857 97.143h-329.143c-52.571 0-82.857-49.143-82.857-97.143 0-80.571 17.143-213.714 123.429-213.714h2.857c37.714 22.286 76 49.714 121.143 49.714s83.429-27.429 121.143-49.714zM950.857 347.429c0 9.714-8.571 18.286-18.286 18.286h-54.857v73.143h54.857c9.714 0 18.286 8.571 18.286 18.286v109.714c0 9.714-8.571 18.286-18.286 18.286h-54.857v73.143h54.857c9.714 0 18.286 8.571 18.286 18.286v109.714c0 9.714-8.571 18.286-18.286 18.286h-54.857v128c0 50.286-41.143 91.429-91.429 91.429h-694.857c-50.286 0-91.429-41.143-91.429-91.429v-841.143c0-50.286 41.143-91.429 91.429-91.429h694.857c50.286 0 91.429 41.143 91.429 91.429v128h54.857c9.714 0 18.286 8.5711 18.286 18.286v109.714zM804.571 932.571v-841.143c0-9.714-8.571-18.286-18.286-18.286h-694.857c-9.714 0-18.286 8.571-18.286 18.286v841.143c0 9.714 8.571 18.286 18.286 18.286h694.857c9.714 0 18.286-8.571 18.286-18.286z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "address-book-o"
+ ],
+ "defaultCode": 62138,
+ "grid": 14
+ },
+ {
+ "id": 640,
+ "paths": [
+ "M585.143 646.286c0-88.571-21.714-186.857-112-186.857-28 16-65.714 43.429-107.429 43.429s-79.429-27.429-107.429-43.429c-90.286 0-112 98.286-112 186.857 0 49.714 32.571 85.143 73.143 85.143h292.571c40.571 0 73.143-35.429 73.143-85.143zM495.429 349.143c0-71.429-58.286-129.714-129.714-129.714s-129.714 58.286-129.714 129.714c0 72 58.286 129.714 129.714 129.714s129.714-57.714 129.714-129.714zM1024 640v-36.571c0-10.286-8-18.286-18.286-18.286h-329.143c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h329.143c10.286 0 18.286-8 18.286-18.286zM1024 491.429v-32c0-11.429-9.143-20.571-20.571-20.571h-324.571c-11.429 0-20.571 9.143-20.571 20.571v32c0 11.429 9.143 20.571 20.571 20.571h324.571c11.429 0 20.571-9.143 20.571-20.571zM1024 347.429v-36.571c0-10.286-8-18.286-18.286-18.286h-329.143c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h329.143c10.286 0 18.286-8 18.286-18.286zM1170.286 164.571v694.857c0 50.286-41.143 91.429-91.429 91.429h-201.143v-54.857c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v54.857h-438.857v-54.857c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v54.857h-201.143c-50.286 0-91.429-41.143-91.429-91.429v-694.857c0-50.286 41.143-91.429 91.429-91.429h987.429c50.286 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "address-card",
+ "vcard"
+ ],
+ "defaultCode": 62139,
+ "grid": 14
+ },
+ {
+ "id": 641,
+ "paths": [
+ "M585.143 646.286c0 49.714-32.571 85.143-73.143 85.143h-292.571c-40.571 0-73.143-35.429-73.143-85.143 0-88.571 21.714-186.857 112-186.857 28 16 65.714 43.429 107.429 43.429s79.429-27.429 107.429-43.429c90.286 0 112 98.286 112 186.857zM495.429 349.143c0 72-58.286 129.714-129.714 129.714s-129.714-57.714-129.714-129.714c0-71.429 58.286-129.714 129.714-129.714s129.714 58.286 129.714 129.714zM1024 603.429v36.571c0 10.286-8 18.286-18.286 18.286h-329.143c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h329.143c10.286 0 18.286 8 18.286 18.286zM1024 459.429v32c0 11.429-9.143 20.571-20.571 20.571h-324.571c-11.429 0-20.571-9.143-20.571-20.571v-32c0-11.429 9.143-20.571 20.571-20.571h324.571c11.429 0 20.571 9.143 20.571 20.571zM1024 310.857v36.571c0 10.286-8 18.286-18.286 18.286h-329.143c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h329.143c10.286 0 18.286 8 18.286 18.286zM1097.143 859.429v-694.857c0-9.714-8.571-18.286-18.286-18.286h-987.429c-9.714 0-18.286 8.571-18.286 18.286v694.857c0 9.714 8.571 18.286 18.286 18.286h201.143v-54.857c0-10.286 8-18.286 18.286-18.286h36.571c10.286 0 18.286 8 18.286 18.286v54.857h438.857v-54.857c0-10.286 8-18.286 18.286-18.286h36.571c10.286 0 18.286 8 18.286 18.286v54.857h201.143c9.714 0 18.286-8.571 18.286-18.286zM1170.286 164.571v694.857c0 50.286-41.143 91.429-91.429 91.429h-987.429c-50.286 0-91.429-41.143-91.429-91.429v-694.857c0-50.286 41.143-91.429 91.429-91.429h987.429c50.286 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "address-card-o",
+ "vcard-o"
+ ],
+ "defaultCode": 62140,
+ "grid": 14
+ },
+ {
+ "id": 642,
+ "paths": [
+ "M870.286 765.143c-14.857-106.857-58.286-201.714-155.429-214.857-50.286 54.857-122.857 89.714-202.857 89.714s-152.571-34.857-202.857-89.714c-97.143 13.143-140.571 108-155.429 214.857 79.429 112 210.286 185.714 358.286 185.714s278.857-73.714 358.286-185.714zM731.429 365.714c0-121.143-98.286-219.429-219.429-219.429s-219.429 98.286-219.429 219.429 98.286 219.429 219.429 219.429 219.429-98.286 219.429-219.429zM1024 512c0 281.714-228.571 512-512 512-282.857 0-512-229.714-512-512 0-282.857 229.143-512 512-512s512 229.143 512 512z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "user-circle"
+ ],
+ "defaultCode": 62141,
+ "grid": 14
+ },
+ {
+ "id": 643,
+ "paths": [
+ "M512 0c282.857 0 512 229.143 512 512 0 281.143-228 512-512 512-283.429 0-512-230.286-512-512 0-282.857 229.143-512 512-512zM865.714 772c53.143-73.143 85.143-162.857 85.143-260 0-241.714-197.143-438.857-438.857-438.857s-438.857 197.143-438.857 438.857c0 97.143 32 186.857 85.143 260 20.571-102.286 70.286-186.857 174.857-186.857 46.286 45.143 109.143 73.143 178.857 73.143s132.571-28 178.857-73.143c104.571 0 154.286 84.571 174.857 186.857zM731.429 402.286c0-121.143-98.286-219.429-219.429-219.429s-219.429 98.286-219.429 219.429 98.286 219.429 219.429 219.429 219.429-98.286 219.429-219.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "user-circle-o"
+ ],
+ "defaultCode": 62142,
+ "grid": 14
+ },
+ {
+ "id": 644,
+ "paths": [
+ "M686.286 448c80.571 23.429 191.429 102.857 191.429 362.857 0 117.714-87.429 213.143-194.857 213.143h-488c-107.429 0-194.857-95.429-194.857-213.143 0-260 110.857-339.429 191.429-362.857-28.571-45.143-45.143-98.286-45.143-155.429 0-161.143 131.429-292.571 292.571-292.571s292.571 131.429 292.571 292.571c0 57.143-16.571 110.286-45.143 155.429zM438.857 73.143c-121.143 0-219.429 98.286-219.429 219.429s98.286 219.429 219.429 219.429 219.429-98.286 219.429-219.429-98.286-219.429-219.429-219.429zM682.857 950.857c66.857 0 121.714-62.286 121.714-140 0-180-60.571-292.571-173.714-298.286-51.429 45.143-118.286 72.571-192 72.571s-140.571-27.429-192-72.571c-113.143 5.714-173.714 118.286-173.714 298.286 0 77.714 54.857 140 121.714 140h488z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "user-o"
+ ],
+ "defaultCode": 62144,
+ "grid": 14
+ },
+ {
+ "id": 645,
+ "paths": [
+ "M585.143 718.857c0 49.143-32.571 85.714-73.143 85.714h-292.571c-40.571 0-73.143-36.571-73.143-85.714 0-89.143 22.286-188 112-188 28 26.286 65.714 42.857 107.429 42.857s79.429-16.571 107.429-42.857c89.714 0 112 98.857 112 188zM497.143 422.286c0 72-58.857 129.714-131.429 129.714s-131.429-57.714-131.429-129.714c0-71.429 58.857-129.714 131.429-129.714s131.429 58.286 131.429 129.714zM658.286 932.571v-786.286h-585.143v786.286c0 9.714 8.571 18.286 18.286 18.286h548.571c9.714 0 18.286-8.571 18.286-18.286zM731.429 91.429v841.143c0 50.286-41.143 91.429-91.429 91.429h-548.571c-50.286 0-91.429-41.143-91.429-91.429v-841.143c0-50.286 41.143-91.429 91.429-91.429h201.143v54.857c0 10.286 8 18.286 18.286 18.286h109.714c10.286 0 18.286-8 18.286-18.286v-54.857h201.143c50.286 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 731.4285714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "id-badge"
+ ],
+ "defaultCode": 62145,
+ "grid": 14
+ },
+ {
+ "id": 646,
+ "paths": [
+ "M512 692.571c0-75.429-18.286-162.286-93.714-162.286-22.857 22.857-54.286 36.571-89.143 36.571s-66.286-13.714-89.143-36.571c-75.429 0-93.714 86.857-93.714 162.286 0 41.714 27.429 75.429 61.143 75.429h243.429c33.714 0 61.143-33.714 61.143-75.429zM438.857 438.857c0-60.571-49.143-109.714-109.714-109.714s-109.714 49.143-109.714 109.714 49.143 109.714 109.714 109.714 109.714-49.143 109.714-109.714zM1024 713.143v-36.571c0-10.286-8-18.286-18.286-18.286h-402.286c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h402.286c10.286 0 18.286-8 18.286-18.286zM804.571 566.857v-36.571c0-10.286-8-18.286-18.286-18.286h-182.857c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h182.857c10.286 0 18.286-8 18.286-18.286zM1024 566.857v-36.571c0-10.286-8-18.286-18.286-18.286h-109.714c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h109.714c10.286 0 18.286-8 18.286-18.286zM1024 420.571v-36.571c0-10.286-8-18.286-18.286-18.286h-402.286c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h402.286c10.286 0 18.286-8 18.286-18.286zM73.143 219.429h1024v-54.857c0-10.286-8-18.286-18.286-18.286h-987.429c-10.286 0-18.286 8-18.286 18.286v54.857zM1170.286 164.571v694.857c0 50.286-41.143 91.429-91.429 91.429h-987.429c-50.286 0-91.429-41.143-91.429-91.429v-694.857c0-50.286 41.143-91.429 91.429-91.429h987.429c50.286 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "drivers-license",
+ "id-card"
+ ],
+ "defaultCode": 62146,
+ "grid": 14
+ },
+ {
+ "id": 647,
+ "paths": [
+ "M512 692.571c0 41.714-27.429 75.429-61.143 75.429h-243.429c-33.714 0-61.143-33.714-61.143-75.429 0-75.429 18.286-162.286 93.714-162.286 22.857 22.857 54.286 36.571 89.143 36.571s66.286-13.714 89.143-36.571c75.429 0 93.714 86.857 93.714 162.286zM438.857 438.857c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714 109.714 49.143 109.714 109.714zM1024 676.571v36.571c0 10.286-8 18.286-18.286 18.286h-402.286c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h402.286c10.286 0 18.286 8 18.286 18.286zM804.571 530.286v36.571c0 10.286-8 18.286-18.286 18.286h-182.857c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h182.857c10.286 0 18.286 8 18.286 18.286zM1024 530.286v36.571c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286zM1024 384v36.571c0 10.286-8 18.286-18.286 18.286h-402.286c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h402.286c10.286 0 18.286 8 18.286 18.286zM1097.143 859.429v-640h-1024v640c0 9.714 8.571 18.286 18.286 18.286h987.429c9.714 0 18.286-8.571 18.286-18.286zM1170.286 164.571v694.857c0 50.286-41.143 91.429-91.429 91.429h-987.429c-50.286 0-91.429-41.143-91.429-91.429v-694.857c0-50.286 41.143-91.429 91.429-91.429h987.429c50.286 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "drivers-license-o",
+ "id-card-o"
+ ],
+ "defaultCode": 62147,
+ "grid": 14
+ },
+ {
+ "id": 648,
+ "paths": [
+ "M717.143 449.714c0-238.286-74.286-360.571-248.571-360.571-171.429 0-245.714 122.286-245.714 360.571 0 237.143 74.286 358.286 245.714 358.286 27.429 0 52-2.857 74.857-9.714v0c-35.429-69.714-77.143-140-158.286-140-15.429 0-30.857 2.286-45.143 9.143l-28-55.429c33.714-29.143 88-52 157.714-52 109.143 0 164.571 52.571 209.143 119.429 25.714-57.143 38.286-134.286 38.286-229.714zM940 810.857h66.857c4 41.143-16.571 213.143-203.429 213.143-113.143 0-172.571-65.714-217.714-142.286v0c-37.143 10.286-77.143 15.429-117.143 15.429-228.571 0-452-182.286-452-447.429 0-267.429 224-449.714 452-449.714 232.571 0 453.714 181.143 453.714 449.714 0 149.714-69.714 271.429-170.857 349.714 32.571 49.143 66.286 81.714 113.143 81.714 51.429 0 72-39.429 75.429-70.286z"
+ ],
+ "width": 1027.4377142857143,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "quora"
+ ],
+ "defaultCode": 62148,
+ "grid": 14
+ },
+ {
+ "id": 649,
+ "paths": [
+ "M258.857 935.429c0 16-14.286 30.857-30.286 30.857-2.286 0-5.143-1.143-7.429-1.714v0c-32-7.429-73.143-55.429-92.571-80-89.143-112.571-128.571-244-128.571-386.286 0-132.571 40-246.286 121.714-350.857 18.857-24.571 74.857-89.143 108-89.143 14.286 0 29.143 11.429 29.143 26.286 0 17.143-25.143 40.571-36 51.429-31.429 32.571-60.571 65.714-84 105.143-48.571 81.143-68 162.286-68 256.571 0 101.143 18.857 192.571 70.286 280.571 21.714 37.143 47.429 68 77.714 98.857 12 13.143 40 38.857 40 58.286zM1026.286 858.857c0 21.143-14.286 38.857-36.571 38.857h-617.714c-20 0-36.571-16.571-36.571-36.571 0-21.143 14.286-38.857 36.571-38.857h617.714c20 0 36.571 16.571 36.571 36.571zM903.429 509.714c0 48-10.857 92.571-38.286 133.143-18.857 28-57.143 64-87.429 79.429-4.571 2.857-10.286 5.714-15.429 5.714-4.571 0-13.143-5.143-13.143-10.286 0-16.571 69.714-56 69.714-132.571 0-25.143-6.286-53.143-20-74.286-4-5.714-18.286-24-26.286-24-1.714 0-1.714 1.143-1.714 2.857 0 13.714 8.571 26.857 8.571 41.143 0 18.286-22.286 27.429-37.714 27.429-26.857 0-37.714-18.857-37.714-43.429 0-16.571 1.714-33.714 1.714-50.286 0-12-0.571-15.429-5.714-26.286-8-15.429-34.286-46.857-53.143-46.857-5.143 0-6.857 0-6.857 5.143 0 8 18.286 16.571 18.286 45.714 0 76-104.571 89.714-104.571 165.714 0 34.286 4.571 62.857 24 91.429 12 17.714 25.143 28 45.143 36 5.143 1.714 10.286 2.286 10.286 8.571s-5.143 9.143-10.286 9.143c-2.857 0-16-5.143-18.857-6.286v0c-88-32-154.857-108.571-154.857-204.571 0-113.714 136.571-213.143 136.571-322.286 0-21.143-3.429-36-14.286-53.714-6.286-10.286-21.714-30.286-32-36.571-4.571-2.286-10.857-6.286-10.857-12 0-9.714 16.571-11.429 23.429-11.429 20.571 0 44 7.429 62.857 16.571 79.429 37.714 96 95.429 109.714 175.429 3.429 18.857 10.286 78.857 37.714 78.857 17.714 0 29.143-12 29.143-29.143 0-25.714-22.857-53.714-22.857-68 0-4 2.286-5.714 5.714-5.714 14.286 0 44 30.286 53.143 40 55.429 58.857 76 116 76 195.429zM1316.571 526.286c0 100.571-26.857 201.143-78.857 287.429-24 40-102.857 152-154.857 152-12 0-26.286-14.857-26.286-26.857 0-19.429 66.857-81.714 83.429-102.857 70.857-89.143 104.571-189.714 104.571-303.429 0-93.714-11.429-169.714-53.143-254.857-25.714-52.571-52.571-88-93.143-130.286-13.143-13.714-41.714-39.429-41.714-60 0-14.286 14.857-29.714 29.143-29.714 37.714 0 92 69.714 112 96.571 76.571 102.857 109.143 208.571 117.714 335.429 0.571 12 1.143 24.571 1.143 36.571z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "free-code-camp"
+ ],
+ "defaultCode": 62149,
+ "grid": 14
+ },
+ {
+ "id": 650,
+ "paths": [
+ "M679.429 746.857l84-396c7.429-34.857-12.571-48.571-35.429-40l-493.714 190.286c-33.714 13.143-33.143 32-5.714 40.571l126.286 39.429 293.143-184.571c13.714-9.143 26.286-4 16 5.143l-237.143 214.286-9.143 130.286c13.143 0 18.857-5.714 25.714-12.571l61.714-59.429 128 94.286c23.429 13.143 40 6.286 46.286-21.714zM1024 512c0 282.857-229.143 512-512 512s-512-229.143-512-512 229.143-512 512-512 512 229.143 512 512z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "telegram"
+ ],
+ "defaultCode": 62150,
+ "grid": 14
+ },
+ {
+ "id": 651,
+ "paths": [
+ "M365.714 768c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714c0-45.714 28.571-87.429 73.143-103.429v-518.286h73.143v518.286c44.571 16 73.143 57.714 73.143 103.429zM438.857 768c0-60-28.571-112.571-73.143-146.286v-438.857c0-60.571-49.143-109.714-109.714-109.714s-109.714 49.143-109.714 109.714v438.857c-44.571 33.714-73.143 86.286-73.143 146.286 0 101.143 81.714 182.857 182.857 182.857s182.857-81.714 182.857-182.857zM512 768c0 141.143-114.857 256-256 256s-256-114.857-256-256c0-69.714 28-132.571 73.143-178.857v-406.286c0-101.143 81.714-182.857 182.857-182.857s182.857 81.714 182.857 182.857v406.286c45.143 46.286 73.143 109.143 73.143 178.857zM585.143 438.857v73.143h-109.714v-73.143h109.714zM585.143 292.571v73.143h-109.714v-73.143h109.714zM585.143 146.286v73.143h-109.714v-73.143h109.714z"
+ ],
+ "width": 585.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "thermometer",
+ "thermometer-4",
+ "thermometer-full"
+ ],
+ "defaultCode": 62151,
+ "grid": 14
+ },
+ {
+ "id": 652,
+ "paths": [
+ "M365.714 768c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714c0-45.714 28.571-87.429 73.143-103.429v-372h73.143v372c44.571 16 73.143 57.714 73.143 103.429zM438.857 768c0-60-28.571-112.571-73.143-146.286v-438.857c0-60.571-49.143-109.714-109.714-109.714s-109.714 49.143-109.714 109.714v438.857c-44.571 33.714-73.143 86.286-73.143 146.286 0 101.143 81.714 182.857 182.857 182.857s182.857-81.714 182.857-182.857zM512 768c0 141.143-114.857 256-256 256s-256-114.857-256-256c0-69.714 28-132.571 73.143-178.857v-406.286c0-101.143 81.714-182.857 182.857-182.857s182.857 81.714 182.857 182.857v406.286c45.143 46.286 73.143 109.143 73.143 178.857zM585.143 438.857v73.143h-109.714v-73.143h109.714zM585.143 292.571v73.143h-109.714v-73.143h109.714zM585.143 146.286v73.143h-109.714v-73.143h109.714z"
+ ],
+ "width": 585.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "thermometer-3",
+ "thermometer-three-quarters"
+ ],
+ "defaultCode": 62152,
+ "grid": 14
+ },
+ {
+ "id": 653,
+ "paths": [
+ "M365.714 768c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714c0-45.714 28.571-87.429 73.143-103.429v-225.714h73.143v225.714c44.571 16 73.143 57.714 73.143 103.429zM438.857 768c0-60-28.571-112.571-73.143-146.286v-438.857c0-60.571-49.143-109.714-109.714-109.714s-109.714 49.143-109.714 109.714v438.857c-44.571 33.714-73.143 86.286-73.143 146.286 0 101.143 81.714 182.857 182.857 182.857s182.857-81.714 182.857-182.857zM512 768c0 141.143-114.857 256-256 256s-256-114.857-256-256c0-69.714 28-132.571 73.143-178.857v-406.286c0-101.143 81.714-182.857 182.857-182.857s182.857 81.714 182.857 182.857v406.286c45.143 46.286 73.143 109.143 73.143 178.857zM585.143 438.857v73.143h-109.714v-73.143h109.714zM585.143 292.571v73.143h-109.714v-73.143h109.714zM585.143 146.286v73.143h-109.714v-73.143h109.714z"
+ ],
+ "width": 585.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "thermometer-2",
+ "thermometer-half"
+ ],
+ "defaultCode": 62153,
+ "grid": 14
+ },
+ {
+ "id": 654,
+ "paths": [
+ "M365.714 768c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714c0-45.714 28.571-87.429 73.143-103.429v-79.429h73.143v79.429c44.571 16 73.143 57.714 73.143 103.429zM438.857 768c0-60-28.571-112.571-73.143-146.286v-438.857c0-60.571-49.143-109.714-109.714-109.714s-109.714 49.143-109.714 109.714v438.857c-44.571 33.714-73.143 86.286-73.143 146.286 0 101.143 81.714 182.857 182.857 182.857s182.857-81.714 182.857-182.857zM512 768c0 141.143-114.857 256-256 256s-256-114.857-256-256c0-69.714 28-132.571 73.143-178.857v-406.286c0-101.143 81.714-182.857 182.857-182.857s182.857 81.714 182.857 182.857v406.286c45.143 46.286 73.143 109.143 73.143 178.857zM585.143 438.857v73.143h-109.714v-73.143h109.714zM585.143 292.571v73.143h-109.714v-73.143h109.714zM585.143 146.286v73.143h-109.714v-73.143h109.714z"
+ ],
+ "width": 585.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "thermometer-1",
+ "thermometer-quarter"
+ ],
+ "defaultCode": 62154,
+ "grid": 14
+ },
+ {
+ "id": 655,
+ "paths": [
+ "M365.714 768c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714c0-60 48.571-109.714 109.714-109.714s109.714 50.286 109.714 109.714zM438.857 768c0-60-28.571-112.571-73.143-146.286v-438.857c0-60.571-49.143-109.714-109.714-109.714s-109.714 49.143-109.714 109.714v438.857c-44.571 33.714-73.143 86.286-73.143 146.286 0 101.143 81.714 182.857 182.857 182.857s182.857-81.714 182.857-182.857zM512 768c0 141.143-114.857 256-256 256s-256-114.857-256-256c0-69.714 28-132.571 73.143-178.857v-406.286c0-101.143 81.714-182.857 182.857-182.857s182.857 81.714 182.857 182.857v406.286c45.143 46.286 73.143 109.143 73.143 178.857zM585.143 438.857v73.143h-109.714v-73.143h109.714zM585.143 292.571v73.143h-109.714v-73.143h109.714zM585.143 146.286v73.143h-109.714v-73.143h109.714z"
+ ],
+ "width": 585.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "thermometer-0",
+ "thermometer-empty"
+ ],
+ "defaultCode": 62155,
+ "grid": 14
+ },
+ {
+ "id": 656,
+ "paths": [
+ "M818.857 142.286c7.429 7.429 7.429 18.857 0 26.286l-357.714 357.714c-7.429 7.429-18.857 7.429-26.286 0l-46.857-46.857c-7.429-7.429-7.429-18.857 0-26.286l25.143-25.143c-55.429-69.714-62.286-165.143-20-241.143-26.286-25.143-61.714-40.571-100.571-40.571-80.571 0-146.286 65.714-146.286 146.286v731.429h-146.286v-731.429c0-161.143 131.429-292.571 292.571-292.571 82.286 0 156.571 34.286 209.714 89.143 72-29.143 155.429-18.286 218.286 31.429l25.143-25.143c7.429-7.429 18.857-7.429 26.286 0zM768 292.571c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571zM914.286 365.714c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571 36.571 16.571 36.571 36.571-16.571 36.571-36.571 36.571zM1060.571 292.571c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571zM694.857 365.714c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571zM804.571 402.286c0-20 16.571-36.571 36.571-36.571s36.571 16.571 36.571 36.571-16.571 36.571-36.571 36.571-36.571-16.571-36.571-36.571zM987.429 365.714c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571zM621.714 438.857c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571zM768 512c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571 36.571 16.571 36.571 36.571-16.571 36.571-36.571 36.571zM914.286 438.857c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571zM694.857 585.143c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571 36.571 16.571 36.571 36.571-16.571 36.571-36.571 36.571zM841.143 512c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571zM621.714 585.143c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571zM768 585.143c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571zM694.857 658.286c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571zM621.714 731.429c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "shower"
+ ],
+ "defaultCode": 62156,
+ "grid": 14
+ },
+ {
+ "id": 657,
+ "paths": [
+ "M950.857 621.714v109.714c0 65.143-28.571 122.857-73.143 163.429v110.857c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-67.429c-22.857 8-47.429 12.571-73.143 12.571h-438.857c-25.714 0-50.286-4.571-73.143-12.571v62.857c0 12.571-8 22.857-18.286 22.857h-36.571c-10.286 0-18.286-10.286-18.286-22.857v-106.286c-44.571-40.571-73.143-98.286-73.143-163.429v-109.714h877.714zM402.286 384c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286 8-18.286 18.286-18.286 18.286 8 18.286 18.286zM438.857 347.429c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286 8-18.286 18.286-18.286 18.286 8 18.286 18.286zM402.286 310.857c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286 8-18.286 18.286-18.286 18.286 8 18.286 18.286zM475.429 310.857c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286 8-18.286 18.286-18.286 18.286 8 18.286 18.286zM438.857 274.286c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286 8-18.286 18.286-18.286 18.286 8 18.286 18.286zM402.286 237.714c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286 8-18.286 18.286-18.286 18.286 8 18.286 18.286zM1024 530.286v36.571c0 10.286-8 18.286-18.286 18.286h-987.429c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h54.857v-365.714c0-80.571 65.714-146.286 146.286-146.286 41.143 0 78.286 17.143 105.143 44.571 35.429-14.286 77.714-9.143 109.143 15.429l12.571-12.571c3.429-3.429 9.143-3.429 12.571 0l24 24c3.429 3.429 3.429 9.143 0 12.571l-179.429 179.429c-3.429 3.429-9.143 3.429-12.571 0l-24-24c-3.429-3.429-3.429-9.143 0-12.571l12.571-12.571c-27.429-34.857-30.857-82.857-9.714-121.143-13.143-12.571-30.857-20-50.286-20-40.571 0-73.143 32.571-73.143 73.143v365.714h859.429c10.286 0 18.286 8 18.286 18.286zM512 274.286c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286 8-18.286 18.286-18.286 18.286 8 18.286 18.286zM475.429 237.714c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286 8-18.286 18.286-18.286 18.286 8 18.286 18.286zM438.857 201.143c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286 8-18.286 18.286-18.286 18.286 8 18.286 18.286zM548.571 237.714c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286 8-18.286 18.286-18.286 18.286 8 18.286 18.286zM512 201.143c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286 8-18.286 18.286-18.286 18.286 8 18.286 18.286zM475.429 164.571c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286 8-18.286 18.286-18.286 18.286 8 18.286 18.286zM585.143 201.143c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286 8-18.286 18.286-18.286 18.286 8 18.286 18.286zM548.571 164.571c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286 8-18.286 18.286-18.286 18.286 8 18.286 18.286zM621.714 164.571c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286 8-18.286 18.286-18.286 18.286 8 18.286 18.286z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bath",
+ "bathtub",
+ "s15"
+ ],
+ "defaultCode": 62157,
+ "grid": 14
+ },
+ {
+ "id": 658,
+ "paths": [
+ "M568 681.143c0 37.714-4 75.429-9.714 112.571-8.571 59.429-17.143 120.571-31.429 178.857-10.286 41.714-49.143 51.429-86.857 51.429s-76.571-9.714-86.857-51.429c-14.286-58.286-22.857-119.429-31.429-178.857-5.714-37.143-9.714-74.857-9.714-112.571 0-77.143 62.286-96 128-96s128 18.857 128 96zM877.714 438.857c0 185.143-114.286 343.429-276.571 408-6.286 2.286-13.143-3.429-12-10.286 1.714-12 3.429-24.571 5.714-37.714 1.143-9.143 2.286-18.286 3.429-26.857 0.571-3.429 2.286-5.714 5.143-6.857 118.857-60.571 201.143-184 201.143-326.286 0-208.571-174.857-376.571-385.714-365.143-193.143 10.286-346.857 174.857-345.714 368 1.143 142.286 84 265.143 203.429 324.571 2.857 1.143 4.571 4 5.143 6.857 1.143 8 2.286 16.571 3.429 25.714 2.286 13.714 4 26.286 6.286 38.857 1.143 6.857-6.286 12.571-12.571 9.714-169.714-66.286-288-235.429-278.286-430.286 10.857-221.143 189.143-402.286 410.286-416 254.857-16 466.857 186.286 466.857 437.714zM568 420.571c0 70.857-57.143 128-128 128s-128-57.143-128-128 57.143-128 128-128 128 57.143 128 128zM732.571 438.857c0 94.286-45.143 178.857-114.286 232-5.714 4.571-13.714 0.571-14.857-6.857-1.714-16-6.286-34.857-16.571-52.571-2.286-3.429-1.714-8 1.714-11.429 43.429-40 70.857-97.143 70.857-161.143 0-129.143-112.571-232.571-244.571-218.286-101.143 11.429-183.429 94.857-193.143 196.571-7.429 72 21.143 138.286 69.714 182.857 3.429 3.429 4 8 1.714 11.429-10.286 17.714-14.857 36.571-16.571 53.143-1.143 6.857-9.143 10.857-14.857 6.286-70.857-54.857-116-141.143-114.286-238.286 3.429-152 126.857-278.857 278.286-285.714 168-8 306.857 125.714 306.857 292z"
+ ],
+ "width": 868.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "podcast"
+ ],
+ "defaultCode": 62158,
+ "grid": 14
+ },
+ {
+ "id": 659,
+ "paths": [
+ "M146.286 804.571h731.429v-438.857h-731.429v438.857zM1024 164.571v694.857c0 50.286-41.143 91.429-91.429 91.429h-841.143c-50.286 0-91.429-41.143-91.429-91.429v-694.857c0-50.286 41.143-91.429 91.429-91.429h841.143c50.286 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "window-maximize"
+ ],
+ "defaultCode": 62160,
+ "grid": 14
+ },
+ {
+ "id": 660,
+ "paths": [
+ "M1024 749.714v109.714c0 50.286-41.143 91.429-91.429 91.429h-841.143c-50.286 0-91.429-41.143-91.429-91.429v-109.714c0-50.286 41.143-91.429 91.429-91.429h841.143c50.286 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "window-minimize"
+ ],
+ "defaultCode": 62161,
+ "grid": 14
+ },
+ {
+ "id": 661,
+ "paths": [
+ "M146.286 877.714h438.857v-292.571h-438.857v292.571zM731.429 585.143h292.571v-438.857h-438.857v146.286h54.857c50.286 0 91.429 41.143 91.429 91.429v201.143zM1170.286 91.429v548.571c0 50.286-41.143 91.429-91.429 91.429h-347.429v201.143c0 50.286-41.143 91.429-91.429 91.429h-548.571c-50.286 0-91.429-41.143-91.429-91.429v-548.571c0-50.286 41.143-91.429 91.429-91.429h347.429v-201.143c0-50.286 41.143-91.429 91.429-91.429h548.571c50.286 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "window-restore"
+ ],
+ "defaultCode": 62162,
+ "grid": 14
+ },
+ {
+ "id": 662,
+ "paths": [
+ "M671.429 754.857l83.429-83.429c7.429-7.429 7.429-18.857 0-26.286l-133.143-133.143 133.143-133.143c7.429-7.429 7.429-18.857 0-26.286l-83.429-83.429c-7.429-7.429-18.857-7.429-26.286 0l-133.143 133.143-133.143-133.143c-7.429-7.429-18.857-7.429-26.286 0l-83.429 83.429c-7.429 7.429-7.429 18.857 0 26.286l133.143 133.143-133.143 133.143c-7.429 7.429-7.429 18.857 0 26.286l83.429 83.429c7.429 7.429 18.857 7.429 26.286 0l133.143-133.143 133.143 133.143c7.429 7.429 18.857 7.429 26.286 0zM1024 164.571v694.857c0 50.286-41.143 91.429-91.429 91.429h-841.143c-50.286 0-91.429-41.143-91.429-91.429v-694.857c0-50.286 41.143-91.429 91.429-91.429h841.143c50.286 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "times-rectangle",
+ "window-close"
+ ],
+ "defaultCode": 62163,
+ "grid": 14
+ },
+ {
+ "id": 663,
+ "paths": [
+ "M718.286 634.857l-83.429 83.429c-7.429 7.429-18.857 7.429-26.286 0l-96.571-96.571-96.571 96.571c-7.429 7.429-18.857 7.429-26.286 0l-83.429-83.429c-7.429-7.429-7.429-18.857 0-26.286l96.571-96.571-96.571-96.571c-7.429-7.429-7.429-18.857 0-26.286l83.429-83.429c7.429-7.429 18.857-7.429 26.286 0l96.571 96.571 96.571-96.571c7.429-7.429 18.857-7.429 26.286 0l83.429 83.429c7.429 7.429 7.429 18.857 0 26.286l-96.571 96.571 96.571 96.571c7.429 7.429 7.429 18.857 0 26.286zM146.286 804.571h731.429v-585.143h-731.429v585.143zM1024 164.571v694.857c0 50.286-41.143 91.429-91.429 91.429h-841.143c-50.286 0-91.429-41.143-91.429-91.429v-694.857c0-50.286 41.143-91.429 91.429-91.429h841.143c50.286 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "times-rectangle-o",
+ "window-close-o"
+ ],
+ "defaultCode": 62164,
+ "grid": 14
+ },
+ {
+ "id": 664,
+ "paths": [
+ "M611.429 673.143l174.857-322.286h-373.714l-174.857 322.286h373.714zM1024 512c0 282.857-229.143 512-512 512s-512-229.143-512-512 229.143-512 512-512 512 229.143 512 512z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bandcamp"
+ ],
+ "defaultCode": 62165,
+ "grid": 14
+ },
+ {
+ "id": 665,
+ "paths": [
+ "M737.714 272c-18.286-20.571-48 14.286-32 33.143 15.429 18.857 66.286 5.143 32-33.143zM511.429 412.571c-6.286 6.286-16 6.286-21.714 0-6.286-5.714-6.286-15.429 0-21.143 5.714-6.286 15.429-6.286 21.714 0 5.714 5.714 5.714 15.429 0 21.143zM605.714 454.857l-20 20c-9.143 9.714-24.571 9.714-34.286 0l-21.714-21.714c-9.143-9.714-9.143-24.571 0-34.286l20-20c9.143-9.143 24.571-9.143 34.286 0l21.714 22.286c9.143 9.143 9.143 24.571 0 33.714zM543.429 380.571c-5.714 5.714-15.429 5.714-21.714 0-5.714-6.286-5.714-16 0-21.714 6.286-6.286 16-6.286 21.714 0 6.286 5.714 6.286 15.429 0 21.714zM773.714 324.571c-25.714 48.571-93.143 68.571-134.286 39.429-41.143-29.714-69.714-89.143-24.571-140.571 44.571-51.429 84-35.429 123.429 1.714 24.571 23.429 60.571 51.429 35.429 99.429zM888.571 600c5.143-33.143-42.286-34.286-52.571-53.143-28-49.714-57.143-76-112.571-62.857 24-16.571 48.571-12.571 48.571-12.571 0.571-13.143 0-26.857-19.429-51.429 8-25.714 0.571-46.286 0.571-46.286 32-17.714 55.429-50.286 60-89.143 7.429-64-38.857-122.286-102.857-129.714-45.714-5.143-90.286 16-112 53.143-48 82.857 2.857 146.286 46.286 168-29.714-2.857-70.857-24.571-82.857-70.857-13.714-53.143 5.714-102.857 18.286-126.857 0 0-9.143-12-16.571-18.286 0 0-28.571 0-50.857 10.857 24.571-31.429 52-29.714 52-29.714 0-13.143-1.143-30.857-7.429-44.571-11.429-23.429-51.429-26.857-66.857 8.571 0.571-1.714 1.143-2.857 2.286-4-10.286 24.571-2.286 115.429 34.857 180-5.143 2.857-18.857 12.571-26.857 20.571-44.571 20-116 124.571-116 124.571-58.286 22.286-160 105.143-146.286 164.571v0c0.571 6.286 2.857 11.429 6.286 15.429-5.714 4.571-11.429 10.286-17.143 17.143-24.571 28.571-10.857 72.571 36.571 50.286 32.571-14.857 61.714-41.714 75.429-62.857 0 0-12-10.286-34.286-9.143 57.143-13.714 71.429-19.429 96-18.857 16.571 8 16.571-70.857 16.571-70.857 0-30.286-4.571-64-22.857-85.714 25.714 25.143 60 67.429 57.714 125.143-1.714 37.714-31.429 47.429-31.429 47.429-18.857 34.286-89.143 136-62.857 218.857 0 0-20-30.857-21.143-45.714-36 40-96.571 108-51.429 133.143 54.857 30.286 225.143-182.857 261.143-293.714 71.429-42.857 114.286-97.714 132-134.286 45.714 90.857 197.714 196 209.714 122.857zM1025.143 512c0 282.857-229.714 512-512.571 512s-512.571-229.143-512.571-512 229.714-512 512.571-512 512.571 229.143 512.571 512z"
+ ],
+ "width": 1025.1702857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "grav"
+ ],
+ "defaultCode": 62166,
+ "grid": 14
+ },
+ {
+ "id": 666,
+ "paths": [
+ "M296 104.571v374.286c132.571 1.143 202.286-5.714 202.286-5.714 53.714-1.714 61.714-15.429 74.286-68l18.857-81.143h58.857l-8 184 4 182.286h-58.857l-16.571-72.571c-12-54.286-35.429-67.429-73.714-68 0 0-49.143-4.571-201.143-4.571v317.714c0 59.429 32.571 87.429 101.143 87.429h204c68.571 0 130.286-6.857 172.571-104.571l53.143-123.429h50.857c-4 24.571-31.429 251.429-35.429 301.714-188-6.857-268.571-6.857-268.571-6.857h-358.857l-214.857 6.857v-58.286l72.571-14.286c50.857-9.714 66.286-24.571 66.857-66.286 3.429-138.286 4.571-367.429 4.571-367.429s1.714-229.714-4.571-368.571c-1.714-47.429-16-58.857-66.857-68.571l-72.571-13.714v-58.286l214.857 6.857h401.143s79.429 0 213.714-15.429c-8 87.429-17.714 289.143-17.714 289.143h-53.143l-18.286-70.857c-22.286-88.571-52-136-106.857-136h-313.143c-23.429 0-24.571 8-24.571 22.286z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "etsy"
+ ],
+ "defaultCode": 62167,
+ "grid": 14
+ },
+ {
+ "id": 667,
+ "paths": [
+ "M526.857 455.429v104c0 20.571 4 39.429-21.714 38.857v-176.571c25.143 0 21.714 13.143 21.714 33.714zM707.429 510.286v69.143c0 11.429 3.429 30.286-13.143 30.286-3.429 0-6.286-1.714-8-5.143-4.571-10.857-2.286-93.143-2.286-94.286 0-8-2.286-26.857 10.286-26.857 15.429 0 13.143 15.429 13.143 26.857zM102.857 645.143h69.714v-269.714h-69.714v269.714zM350.857 645.143h60.571v-269.714h-90.857l-16 126.286c-5.714-42.286-11.429-84.571-18.286-126.286h-90.286v269.714h61.143v-178.286l25.714 178.286h43.429l24.571-182.286v182.286zM593.714 470.857c0-17.143 0.571-35.429-2.857-51.429-9.143-47.429-66.286-44-103.429-44h-52v269.714c181.714 0 158.286 12.571 158.286-174.286zM774.857 583.429v-76c0-36.571-1.714-63.429-46.857-63.429-18.857 0-31.429 5.714-44 19.429v-88h-66.857v269.714h62.857l4-17.143c12 14.286 25.143 20.571 44 20.571 41.714 0 46.857-32 46.857-65.143zM877.714 164.571v694.857c0 50.286-41.143 91.429-91.429 91.429h-694.857c-50.286 0-91.429-41.143-91.429-91.429v-694.857c0-50.286 41.143-91.429 91.429-91.429h694.857c50.286 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "imdb"
+ ],
+ "defaultCode": 62168,
+ "grid": 14
+ },
+ {
+ "id": 668,
+ "paths": [
+ "M653.143 990.286c-2.286-0.571-4-1.143-6.286-2.286 0 0-188-110.286-251.429-288.571-21.143-3.429-65.714-13.714-100-21.143v0c49.714 161.714 188 285.143 357.714 312zM286.857 644l96 16c-32.571-97.714-36.571-209.143-36.571-209.143-38.286 37.143-58.857 88-69.143 128v0c1.714 22.286 4.571 44 9.714 65.143zM349.714 296v0c-17.714 26.286-32 54.857-44 84.571 18.857-20 34.286-33.143 42.286-38.857-1.143-17.143 1.714-45.714 1.714-45.714zM1170.857 544c0-249.143-201.143-451.429-448-451.429-114.286 0-218.286 43.429-297.714 114.857-12 23.429-20 53.143-25.714 91.429 121.714-103.429 338.857-77.714 338.857-77.714 54.286 2.286 48 50.286 47.429 65.143-197.714-16.571-294.857 40-390.857 121.714 0 0 18.857 182.857 62.286 257.143 250.286 11.429 440.571-124.571 440.571-124.571 24-17.143 45.143-18.857 49.714 10.857 3.429 24 5.143 56.571-22.286 69.143-83.429 38.857-175.429 63.429-266.857 76.571-59.429 8.571-92.571 10.857-181.143 9.143 84.571 196.571 296 250.286 296 250.286 66.286 10.857 116.571 2.286 150.286-8.571v0c146.286-74.286 247.429-227.429 247.429-404zM1213.143 522.857c-4 38.857-10.286 84-22.857 121.143-51.429 152.571-122.857 252-285.714 342.857-14.857 10.286-30.857 20-46.857 25.143-29.143 10.286-60.571 12.571-93.143 9.143-13.714 1.143-27.429 1.714-41.714 1.714-217.714 0-401.714-148.571-457.143-351.429-1.714 0-3.429-0.571-5.143-0.571-13.143 102.857 62.857 241.714 62.857 241.714s4.571 6.857 30.857 46.857c-145.714-77.143-149.714-304.571-149.714-304.571-34.857-13.143-156-54.286-177.143-88 0 0 94.857 52 176.571 62.286-0.571-0.571 1.143-18.286 1.143-18.286 5.143-69.714 29.143-124 53.714-165.714 16-78.286 51.429-149.143 100.571-208.571 8.571-35.429 22.286-77.714 46.286-122.286 10.286-19.429 20-32 46.286-44 173.714-81.143 345.143-101.714 521.143-10.286v0c168.571 88 260 272 240 462.857z"
+ ],
+ "width": 1260.544,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "ravelry"
+ ],
+ "defaultCode": 62169,
+ "grid": 14
+ },
+ {
+ "id": 669,
+ "paths": [
+ "M766.286 448c20-30.857-3.429-109.143-73.143-155.429-69.143-46.286-157.714-42.857-178.286-12-20 30.286 22.857 10.857 101.143 40 129.143 48 130.286 158.286 150.286 127.429zM973.714 776c-161.714 397.714-890.286 297.143-874.857-218.857 1.714-65.714 20-109.714 38.857-172.571-120.571 493.714 552 781.143 828 391.429 10.286-14.286 13.143-13.143 8 0zM837.143 519.429c0 161.714-130.286 293.143-290.857 293.143s-290.857-131.429-290.857-293.143 130.286-293.143 290.857-293.143 290.857 131.429 290.857 293.143zM1001.143 354.857c-203.429-461.714-1043.429-291.429-950.286 336.571-193.143-629.143 602.857-917.714 897.143-469.714 24 36.571 51.429 100.571 53.143 133.143zM965.714 550.286c9.714-193.143-124-325.143-304.571-374.857-2.857 0-15.429-5.143 8-7.429 441.143 14.857 457.143 720-23.429 728 156.571-43.429 310.286-152 320-345.714z"
+ ],
+ "width": 983.9908571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "eercast"
+ ],
+ "defaultCode": 62170,
+ "grid": 14
+ },
+ {
+ "id": 670,
+ "paths": [
+ "M109.714 731.429v73.143h-64c-5.143 0-9.143-4-9.143-9.143v-9.143h-27.429c-5.143 0-9.143-4-9.143-9.143v-18.286c0-5.143 4-9.143 9.143-9.143h27.429v-9.143c0-5.143 4-9.143 9.143-9.143h64zM109.714 585.143v73.143h-64c-5.143 0-9.143-4-9.143-9.143v-9.143h-27.429c-5.143 0-9.143-4-9.143-9.143v-18.286c0-5.143 4-9.143 9.143-9.143h27.429v-9.143c0-5.143 4-9.143 9.143-9.143h64zM109.714 438.857v73.143h-64c-5.143 0-9.143-4-9.143-9.143v-9.143h-27.429c-5.143 0-9.143-4-9.143-9.143v-18.286c0-5.143 4-9.143 9.143-9.143h27.429v-9.143c0-5.143 4-9.143 9.143-9.143h64zM109.714 292.571v73.143h-64c-5.143 0-9.143-4-9.143-9.143v-9.143h-27.429c-5.143 0-9.143-4-9.143-9.143v-18.286c0-5.143 4-9.143 9.143-9.143h27.429v-9.143c0-5.143 4-9.143 9.143-9.143h64zM109.714 146.286v73.143h-64c-5.143 0-9.143-4-9.143-9.143v-9.143h-27.429c-5.143 0-9.143-4-9.143-9.143v-18.286c0-5.143 4-9.143 9.143-9.143h27.429v-9.143c0-5.143 4-9.143 9.143-9.143h64zM731.429 54.857v841.143c0 30.286-24.571 54.857-54.857 54.857h-475.429c-30.286 0-54.857-24.571-54.857-54.857v-841.143c0-30.286 24.571-54.857 54.857-54.857h475.429c30.286 0 54.857 24.571 54.857 54.857zM877.714 758.857v18.286c0 5.143-4 9.143-9.143 9.143h-27.429v9.143c0 5.143-4 9.143-9.143 9.143h-64v-73.143h64c5.143 0 9.143 4 9.143 9.143v9.143h27.429c5.143 0 9.143 4 9.143 9.143zM877.714 612.571v18.286c0 5.143-4 9.143-9.143 9.143h-27.429v9.143c0 5.143-4 9.143-9.143 9.143h-64v-73.143h64c5.143 0 9.143 4 9.143 9.143v9.143h27.429c5.143 0 9.143 4 9.143 9.143zM877.714 466.286v18.286c0 5.143-4 9.143-9.143 9.143h-27.429v9.143c0 5.143-4 9.143-9.143 9.143h-64v-73.143h64c5.143 0 9.143 4 9.143 9.143v9.143h27.429c5.143 0 9.143 4 9.143 9.143zM877.714 320v18.286c0 5.143-4 9.143-9.143 9.143h-27.429v9.143c0 5.143-4 9.143-9.143 9.143h-64v-73.143h64c5.143 0 9.143 4 9.143 9.143v9.143h27.429c5.143 0 9.143 4 9.143 9.143zM877.714 173.714v18.286c0 5.143-4 9.143-9.143 9.143h-27.429v9.143c0 5.143-4 9.143-9.143 9.143h-64v-73.143h64c5.143 0 9.143 4 9.143 9.143v9.143h27.429c5.143 0 9.143 4 9.143 9.143z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "microchip"
+ ],
+ "defaultCode": 62171,
+ "grid": 14
+ },
+ {
+ "id": 671,
+ "paths": [
+ "M894.857 638.286l-95.429 18.857 106.286 61.143c17.143 9.714 23.429 32.571 13.143 49.714s-32.571 23.429-49.714 13.143l-106.286-60.571 31.429 91.429c16 45.714-53.714 69.143-69.143 24l-58.286-171.429-154.857-89.143v178.857l118.857 136c32 36-23.429 84.571-54.857 48l-64-73.143v122.286c0 20-16.571 36.571-36.571 36.571s-36.571-16.571-36.571-36.571v-122.286l-64 73.143c-31.429 36.571-86.857-12-54.857-48l118.857-136v-178.857l-154.857 89.143-58.286 171.429c-15.429 45.143-85.143 21.714-69.143-24l31.429-91.429-106.286 60.571c-17.143 10.286-39.429 4-49.714-13.143s-4-40 13.143-49.714l106.286-61.143-95.429-18.857c-47.429-9.714-33.143-81.143 14.286-72l177.143 35.429 154.857-89.714-154.857-89.714-177.143 35.429c-2.286 0.571-5.143 0.571-7.429 0.571-43.429 0-49.714-64-6.857-72.571l95.429-18.857-106.286-61.143c-17.143-9.714-23.429-32.571-13.143-49.714 10.286-17.714 32.571-23.429 49.714-13.143l106.286 60.571-31.429-91.429c-16-45.714 53.714-69.143 69.143-24l58.286 171.429 154.857 89.143v-178.857l-118.857-136c-32-36 23.429-84.571 54.857-48l64 73.143v-122.286c0-20 16.571-36.571 36.571-36.571s36.571 16.571 36.571 36.571v122.286l64-73.143c31.429-36.571 86.857 12 54.857 48l-118.857 136v178.857l154.857-89.143 58.286-171.429c15.429-45.143 85.143-21.714 69.143 24l-31.429 91.429 106.286-60.571c17.143-10.286 39.429-4 49.714 13.143s4 40-13.143 49.714l-106.286 61.143 95.429 18.857c42.857 8.571 36.571 72.571-6.857 72.571-2.286 0-5.143 0-7.429-0.571l-177.143-35.429-154.857 89.714 154.857 89.714 177.143-35.429c47.429-9.143 61.714 62.286 14.286 72z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "snowflake-o"
+ ],
+ "defaultCode": 62172,
+ "grid": 14
+ },
+ {
+ "id": 672,
+ "paths": [
+ "M841.714 530.857c10.286-182.857-129.714-334.286-310.857-345.143-180-10.857-339.429 126.286-349.714 307.429-10.286 182.857 129.714 334.286 311.429 345.143 180 10.857 339.429-125.714 349.143-307.429zM1024 0l-199.429 198.857c90.857 88.571 140 212 132 338.857-12.571 212.571-176 382.286-385.714 410.857l-570.857 75.429 198.286-198.286c-90.857-88.571-139.429-212-132-338.857 13.143-213.143 176-382.857 386.286-411.429 190.286-25.143 381.143-50.286 571.429-75.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "superpowers"
+ ],
+ "defaultCode": 62173,
+ "grid": 14
+ },
+ {
+ "id": 673,
+ "paths": [
+ "M541.714 587.429l93.143 188h-29.143l-100-200-97.714 200h-28l102.286-213.714-44.571-18.857 12-28 137.143 58.286-12 28.571zM321.714 249.143l173.714 74.286-74.286 173.714-173.714-74.286zM518.286 354.857l137.143 58.857-58.857 136.571-136.571-58.286zM678.857 440.571l109.143 46.286-46.857 108.571-108.571-46.286zM960 512c0-246.857-201.143-448-448-448s-448 201.143-448 448 201.143 448 448 448 448-201.143 448-448zM1024 512c0 282.286-229.714 512-512 512s-512-229.714-512-512 229.714-512 512-512 512 229.714 512 512z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wpexplorer"
+ ],
+ "defaultCode": 62174,
+ "grid": 14
+ },
+ {
+ "id": 674,
+ "paths": [
+ "M762.286 705.143c-6.286-41.143-81.714-9.143-86.286-54.286-6.286-64 87.429-202.286 80-256-6.857-48-38.857-58.286-66.857-58.857-26.857-0.571-33.714 4-42.857 9.143-5.714 3.429-13.143 9.714-23.429-0.571-12.571-12-22.286-23.429-38.857-25.714-24.571-4-35.429 4-53.143 19.429-6.857 5.714-24 25.714-40 18.286-6.857-3.429-30.857-15.429-48-22.857-32.571-14.286-80 9.143-97.143 40-25.714 45.714-76 226.286-83.429 250.286-17.143 53.143 21.714 97.143 73.714 94.286 22.286-1.143 36.571-9.143 50.857-34.857 8-14.857 83.429-215.429 89.143-225.143 4-6.857 17.714-16 29.143-10.286 11.429 6.286 13.714 18.857 12 30.286-2.286 19.429-56 141.714-57.714 155.429-6.857 45.714 53.714 53.143 77.143 8 7.429-14.286 91.429-185.143 98.857-196.571 8.571-12.571 14.857-16.571 23.429-16 6.286 0 16.571 1.714 14.286 21.714-2.857 18.857-70.286 144.571-77.714 175.429-9.143 41.143 13.143 82.857 49.714 101.143 22.857 11.429 125.143 31.429 117.143-22.286zM218.857 828.571c2.286 11.429-4.571 22.286-16 24.571-10.857 2.286-21.714-4.571-24-16-2.286-10.857 4.571-22.286 15.429-24.571s22.286 4.571 24.571 16zM544.571 978.857c9.143 13.143 5.714 30.857-6.857 40-13.143 9.143-30.857 5.714-40-7.429-8.571-13.143-5.143-30.857 7.429-40 13.143-9.143 30.857-5.714 39.429 7.429zM101.143 514.857c-13.714 20.571-41.143 25.714-61.143 11.429-20-13.714-25.143-41.714-11.429-61.714 13.714-20.571 41.143-25.714 61.143-12 20 14.286 25.143 41.714 11.429 62.286zM838.286 901.714c14.286 21.143 9.143 50.286-12 65.143-21.143 14.286-49.714 9.143-64-12s-9.143-50.286 11.429-65.143c21.143-14.857 49.714-9.143 64.571 12zM902.286 556.571c52.571 86.286 30.286 200-52.571 258.286-34.857 24.571-74.286 35.429-113.714 34.286-24 94.286-138.857 129.143-210.286 65.143-2.286 1.714-5.143 3.429-7.429 5.714-78.286 54.286-184.571 34.857-238.857-44.571-19.429-28.571-29.143-61.143-30.286-93.714-130.857-21.714-180-188-82.286-279.429-56.571-93.714 1.143-214.857 106.857-229.714 50.286-132.571 215.429-195.429 327.429-108.571 134.857-44.571 272.571 58.857 261.714 202.286 82.286 25.143 105.714 133.714 39.429 190.286zM260 179.429c10.286 15.429 6.857 36.571-8.571 47.429-14.857 10.286-36 6.857-46.286-8.571s-6.857-36.571 8.571-47.429c14.857-10.286 36-6.857 46.286 8.571zM350.857 18.857c2.857 12.571-5.143 25.143-17.714 28s-25.143-5.143-28-18.286c-2.286-12.571 5.714-25.143 18.286-28s25.143 5.143 27.429 18.286zM1028.571 560.571c3.429 15.429-6.286 30.286-21.143 33.143-14.857 3.429-29.714-6.286-32.571-21.143-3.429-15.429 6.286-30.286 21.143-33.714 14.857-2.857 29.714 6.857 32.571 21.714zM649.143 50.286c12 20.571 5.714 48-15.429 60.571-20.571 12.571-47.429 5.714-59.429-14.857-12.571-21.143-5.714-48.571 14.857-61.143s47.429-5.714 60 15.429zM1075.429 425.143c2.857 11.429-4.571 22.286-15.429 25.143-11.429 2.286-22.286-5.143-24.571-16-2.286-11.429 4.571-22.857 16-25.143 10.857-2.286 21.714 4.571 24 16zM966.286 287.429c11.429 17.143 7.429 40.571-9.143 52.571-17.143 11.429-40.571 7.429-52-9.714s-7.429-40.571 9.714-52.571c16.571-12 40-7.429 51.429 9.714z"
+ ],
+ "width": 1093.12,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "meetup"
+ ],
+ "defaultCode": 62176,
+ "grid": 14
+ }
+ ]
+ }
+ ],
+ "uid": -1,
+ "preferences": {
+ "showGlyphs": true,
+ "showCodes": true,
+ "showQuickUse": true,
+ "showQuickUse2": true,
+ "showSVGs": true,
+ "fontPref": {
+ "prefix": "icon-",
+ "metadata": {
+ "fontFamily": "ZentaoIcon",
+ "majorVersion": 1,
+ "minorVersion": 50
+ },
+ "metrics": {
+ "emSize": 1024,
+ "baseline": 6.25,
+ "whitespace": 50
+ },
+ "embed": false,
+ "cssVars": true,
+ "cssVarsFormat": "less",
+ "showVersion": true
+ },
+ "imagePref": {
+ "prefix": "icon-",
+ "png": true,
+ "useClassSelector": true,
+ "color": 0,
+ "bgColor": 16777215
+ },
+ "historySize": 50,
+ "gridSize": 16
+ }
+}
\ No newline at end of file
diff --git a/www/js/zui3/@zentao/icons/ZentaoIcon.svg b/www/js/zui3/@zentao/icons/ZentaoIcon.svg
new file mode 100644
index 0000000000..065c63866c
--- /dev/null
+++ b/www/js/zui3/@zentao/icons/ZentaoIcon.svg
@@ -0,0 +1,302 @@
+
+
+
\ No newline at end of file
diff --git a/www/js/zui3/@zentao/icons/ZentaoIcon.ttf b/www/js/zui3/@zentao/icons/ZentaoIcon.ttf
new file mode 100644
index 0000000000..20d892b085
Binary files /dev/null and b/www/js/zui3/@zentao/icons/ZentaoIcon.ttf differ
diff --git a/www/js/zui3/@zentao/icons/ZentaoIcon.woff b/www/js/zui3/@zentao/icons/ZentaoIcon.woff
new file mode 100644
index 0000000000..01ec577dcc
Binary files /dev/null and b/www/js/zui3/@zentao/icons/ZentaoIcon.woff differ
diff --git a/www/js/zui3/@zentao/icons/icons.json b/www/js/zui3/@zentao/icons/icons.json
new file mode 100644
index 0000000000..a4a570f660
--- /dev/null
+++ b/www/js/zui3/@zentao/icons/icons.json
@@ -0,0 +1,318 @@
+{"zentao": {"code": "e901"},
+"zentao-alt": {"code": "e900"},
+"help": {"code": "e968"},
+"import": {"code": "e904"},
+"download": {"code": "e904"},
+"export": {"code": "e905"},
+"lightbulb": {"code": "e91c"},
+"close": {"code": "e936"},
+"check": {"code": "e5ca"},
+"minus": {"code": "e926"},
+"expand-alt": {"code": "e6f1"},
+"collapse-alt": {"code": "e6f2"},
+"fullscreen": {"code": "e96b"},
+"star-empty": {"code": "e94a"},
+"star": {"code": "e94b"},
+"exclamation-sign": {"code": "e930"},
+"info-sign": {"code": "e9d5"},
+"flag": {"code": "e937"},
+"check-circle": {"code": "e92f"},
+"check-sign": {"code": "e938"},
+"chart-pie": {"code": "e95b"},
+"history": {"code": "e95f"},
+"pencil": {"code": "e254"},
+"search": {"code": "e928"},
+"restart": {"code": "e95e"},
+"cog": {"code": "e93b"},
+"chart-line": {"code": "e95c"},
+"chart-bar": {"code": "e95d"},
+"bar-chart": {"code": "e95d"},
+"exchange": {"code": "e927"},
+"severity": {"code": "e973"},
+"book": {"code": "\f02d"},
+"treemap-alt": {"code": "e971"},
+"severity-solid": {"code": "e902"},
+"chat-line": {"code": "e998"},
+"stack": {"code": "e943"},
+"cube": {"code": "e967"},
+"minus-sign": {"code": "e939"},
+"bars-sign": {"code": "e93a"},
+"chat": {"code": "e940"},
+"message": {"code": "e940"},
+"more": {"code": "e744"},
+"certificate": {"code": "\f0a3"},
+"bell": {"code": "e7f5"},
+"columns": {"code": "\f0db"},
+"envelope-o": {"code": "e92a"},
+"unfold-all": {"code": "e931"},
+"fold-all": {"code": "e932"},
+"bars": {"code": "e948"},
+"cards-view": {"code": "e949"},
+"ellipsis-v": {"code": "e5d4"},
+"spinner-indicator": {"code": "e982"},
+"up-circle": {"code": "e92b"},
+"right-circle": {"code": "e92c"},
+"down-circle": {"code": "e92d"},
+"left-circle": {"code": "e92e"},
+"angle-double-right": {"code": "\f101"},
+"angle-down": {"code": "e313"},
+"angle-left": {"code": "e314"},
+"angle-right": {"code": "e315"},
+"angle-top": {"code": "e316"},
+"first-page": {"code": "e5dc"},
+"last-page": {"code": "e5dd"},
+"caret-down": {"code": "\f0d7"},
+"caret-up": {"code": "\f0d8"},
+"caret-left": {"code": "\f0d9"},
+"caret-right": {"code": "\f0da"},
+"sort": {"code": "\f0dc"},
+"sort-down": {"code": "\f0dd"},
+"sort-up": {"code": "\f0de"},
+"arrow-up": {"code": "e923"},
+"arrow-down": {"code": "e924"},
+"arrow-left": {"code": "e952"},
+"arrow-right": {"code": "e93e"},
+"chevron-left": {"code": "e934"},
+"chevron-right": {"code": "e935"},
+"chevron-double-up": {"code": "e959"},
+"chevron-double-down": {"code": "e95a"},
+"folder-account": {"code": "e942"},
+"folder-move": {"code": "e960"},
+"folder-plus": {"code": "e961"},
+"folder-upload": {"code": "e962"},
+"folder-star": {"code": "e963"},
+"folder-edit": {"code": "e964"},
+"folder-download": {"code": "e965"},
+"folder-outline": {"code": "e966"},
+"folder": {"code": "e944"},
+"folder-o": {"code": "e945"},
+"folder-open-o": {"code": "e946"},
+"folder-open": {"code": "e947"},
+"color": {"code": "e93c"},
+"paper-clip": {"code": "e93d"},
+"text": {"code": "e929"},
+"share": {"code": "\f064"},
+"format-list-bulleted": {"code": "e9a8"},
+"format-bold": {"code": "e953"},
+"format-header-pound": {"code": "e954"},
+"format-italic": {"code": "e955"},
+"format-list-numbers": {"code": "e969"},
+"format-quote-close": {"code": "e96a"},
+"image": {"code": "e96c"},
+"table-large": {"code": "e96d"},
+"aiux": {"code": "e99e"},
+"qc": {"code": "e986"},
+"qc-q": {"code": "e985"},
+"qc-c": {"code": "e987"},
+"sonarqube": {"code": "e9ba"},
+"college": {"code": "e9c8"},
+"ztool": {"code": "e9c1"},
+"contacts": {"code": "e9c3"},
+"chats": {"code": "e9c4"},
+"menu-my": {"code": "e97a"},
+"home": {"code": "e97a"},
+"program": {"code": "e9aa"},
+"lightbulb-alt": {"code": "e98f"},
+"product": {"code": "e98f"},
+"rocket": {"code": "e99c"},
+"project": {"code": "e99c"},
+"run": {"code": "e9a9"},
+"test": {"code": "e956"},
+"infinite": {"code": "e9a3"},
+"devops": {"code": "e9a3"},
+"ops": {"code": "e903"},
+"doc": {"code": "e99b"},
+"menu-doc": {"code": "e99b"},
+"statistic": {"code": "e999"},
+"menu-backend": {"code": "e993"},
+"assets": {"code": "e9ae"},
+"diamond": {"code": "e9ae"},
+"feedback": {"code": "e991"},
+"flow": {"code": "e994"},
+"oa": {"code": "e9a1"},
+"more-circle": {"code": "e988"},
+"controls": {"code": "e995"},
+"account": {"code": "e992"},
+"about": {"code": "e996"},
+"info": {"code": "e996"},
+"cog-outline": {"code": "e997"},
+"backend": {"code": "e997"},
+"exit": {"code": "e99a"},
+"theme": {"code": "e9a0"},
+"globe": {"code": "\f0ac"},
+"lang": {"code": "\f0ac"},
+"seal": {"code": "e9f8"},
+"menu-arrow-left": {"code": "e9f0"},
+"menu-arrow-right": {"code": "e9f1"},
+"add-directory": {"code": "e9ef"},
+"design": {"code": "e9ec"},
+"download-alt": {"code": "e9ea"},
+"blame": {"code": "e9e0"},
+"draft-edit": {"code": "e9dc"},
+"sub-review-user": {"code": "e9db"},
+"sub-review": {"code": "e9df"},
+"ztf": {"code": "e9dd"},
+"save": {"code": "e9d8"},
+"list-box": {"code": "e9b4"},
+"usecase": {"code": "e99d"},
+"code": {"code": "e990"},
+"summary": {"code": "e9ad"},
+"more-alt": {"code": "e9a7"},
+"customer": {"code": "e9d9"},
+"ipd": {"code": "e9f9"},
+"wiki-lib": {"code": "e9f5"},
+"annex-lib": {"code": "e9f6"},
+"interface-lib": {"code": "e9f7"},
+"has-authority-pack": {"code": "e9f3"},
+"without-authority-pack": {"code": "e9f4"},
+"data-structure": {"code": "e9f2"},
+"waterfallplus": {"code": "e9ed"},
+"agileplus": {"code": "e9ee"},
+"horn": {"code": "e9eb"},
+"resume": {"code": "e9e9"},
+"mirror": {"code": "e9e6"},
+"remote": {"code": "e9e7"},
+"moon": {"code": "e9e8"},
+"ticket": {"code": "e9e1"},
+"gantt-alt": {"code": "e9e2"},
+"tree": {"code": "e9c9"},
+"list": {"code": "e9cb"},
+"gantt": {"code": "e9cc"},
+"group-view": {"code": "e9cd"},
+"inherit-space": {"code": "e9c2"},
+"card-archive": {"code": "e9b8"},
+"col-archive": {"code": "e9b9"},
+"col-add-right": {"code": "e9bb"},
+"col-add-left": {"code": "e9bc"},
+"col-split": {"code": "e9bd"},
+"waterfall": {"code": "e9a4"},
+"manual": {"code": "e98d"},
+"kanban": {"code": "e983"},
+"lane": {"code": "e9b1"},
+"snap-house": {"code": "e9e3"},
+"wrench": {"code": "e9e4"},
+"desktop": {"code": "e9e5"},
+"back-circle": {"code": "e9da"},
+"back": {"code": "e9d3"},
+"shield": {"code": "e9ca"},
+"meh": {"code": "e9ce"},
+"frown": {"code": "e9cf"},
+"smile": {"code": "e9d0"},
+"unlock-solid": {"code": "e9d1"},
+"lock-solid": {"code": "e9d2"},
+"ver": {"code": "e9c6"},
+"publish": {"code": "e9c7"},
+"send": {"code": "e9c7"},
+"tag": {"code": "e9be"},
+"tag-lock": {"code": "e9bf"},
+"code-fork": {"code": "\f126"},
+"branch-lock": {"code": "e9c0"},
+"groups": {"code": "e9af"},
+"thumbs-up": {"code": "\f087"},
+"thumbs-down": {"code": "\f088"},
+"thumbs-up-solid": {"code": "e9d6"},
+"thumbs-down-solid": {"code": "e9d7"},
+"hash": {"code": "e9ab"},
+"version": {"code": "e9ab"},
+"p-square": {"code": "e97b"},
+"video-play": {"code": "e97f"},
+"plus-solid-circle": {"code": "e974"},
+"minuse-solid-circle": {"code": "e9b6"},
+"s": {"code": "e975"},
+"c": {"code": "e976"},
+"t": {"code": "e977"},
+"guide": {"code": "e978"},
+"todo": {"code": "e979"},
+"plus": {"code": "e925"},
+"side-left": {"code": "e9b3"},
+"side-right": {"code": "e9b2"},
+"fullscreen-exit": {"code": "e972"},
+"alert": {"code": "e99f"},
+"undo": {"code": "e93f"},
+"redo": {"code": "e9d4"},
+"swap": {"code": "e9b0"},
+"chat-solid": {"code": "e9b5"},
+"clock": {"code": "e97c"},
+"cost": {"code": "e97d"},
+"pencil-alt": {"code": "e984"},
+"size-height": {"code": "e9c5"},
+"file-log": {"code": "e9de"},
+"rich-text": {"code": "e913"},
+"markdown": {"code": "e916"},
+"excel": {"code": "e933"},
+"text-link": {"code": "e94d"},
+"ppt": {"code": "e957"},
+"word": {"code": "e958"},
+"doc-lib": {"code": "e96f"},
+"file": {"code": "\f016"},
+"file-empty": {"code": "\f016"},
+"file-text": {"code": "\f0f6"},
+"file-alt": {"code": "\f15b"},
+"file-text-alt": {"code": "\f15c"},
+"file-pdf": {"code": "\f1c1"},
+"file-word": {"code": "\f1c2"},
+"file-excel": {"code": "\f1c3"},
+"file-powerpoint": {"code": "\f1c4"},
+"file-image": {"code": "\f1c5"},
+"file-archive": {"code": "\f1c6"},
+"file-audio": {"code": "\f1c7"},
+"file-video": {"code": "\f1c8"},
+"file-code": {"code": "\f1c9"},
+"menu-collapse": {"code": "e980"},
+"menu-expand": {"code": "e981"},
+"group": {"code": "e97e"},
+"menu-users": {"code": "e97e"},
+"persons": {"code": "e97e"},
+"team": {"code": "e97e"},
+"estimate": {"code": "e9ac"},
+"sprint": {"code": "e9a2"},
+"shield-check": {"code": "e9a5"},
+"ok": {"code": "e9a6"},
+"printer": {"code": "e906"},
+"bullhorn": {"code": "e910"},
+"person": {"code": "e941"},
+"fields": {"code": "e989"},
+"trigger": {"code": "e98a"},
+"layout": {"code": "e98b"},
+"audit": {"code": "e98c"},
+"cancel": {"code": "e951"},
+"ban-circle": {"code": "e951"},
+"eye": {"code": "e94e"},
+"eye-off": {"code": "e96e"},
+"unlock": {"code": "e94f"},
+"lock": {"code": "e950"},
+"private": {"code": "e950"},
+"move": {"code": "e94c"},
+"hand-right": {"code": "e907"},
+"checked": {"code": "e908"},
+"off": {"code": "e909"},
+"start": {"code": "e90a"},
+"play": {"code": "e90a"},
+"time": {"code": "e90b"},
+"edit": {"code": "e90c"},
+"trash": {"code": "e90d"},
+"link": {"code": "e90e"},
+"unlink": {"code": "e90f"},
+"bug": {"code": "e911"},
+"list-alt": {"code": "e912"},
+"change": {"code": "e970"},
+"alter": {"code": "e970"},
+"glasses": {"code": "e914"},
+"review": {"code": "e914"},
+"sitemap": {"code": "e915"},
+"testcase": {"code": "e915"},
+"pluses": {"code": "e917"},
+"report-list": {"code": "e918"},
+"magic": {"code": "e919"},
+"active": {"code": "e919"},
+"treemap": {"code": "e91a"},
+"confirm": {"code": "e91b"},
+"split": {"code": "e98e"},
+"delay": {"code": "e91d"},
+"calendar": {"code": "e91d"},
+"pause": {"code": "e91e"},
+"ban": {"code": "e91f"},
+"plus-bold": {"code": "e920"},
+"copy": {"code": "e921"},
+"refresh": {"code": "e922"},
+"diff": {"code": "e9b7"}}
diff --git a/www/js/zui3/dashboard/block-1.html b/www/js/zui3/dashboard/block-1.html
new file mode 100644
index 0000000000..742badf947
--- /dev/null
+++ b/www/js/zui3/dashboard/block-1.html
@@ -0,0 +1,6 @@
+
+
+ 简单区块
+
+ 简单区块内容
+
diff --git a/www/js/zui3/dashboard/block-2.html b/www/js/zui3/dashboard/block-2.html
new file mode 100644
index 0000000000..ab37c16460
--- /dev/null
+++ b/www/js/zui3/dashboard/block-2.html
@@ -0,0 +1,11 @@
+
+
+ 更多链接
+
+
+
+
+ 简单区块内容
+
diff --git a/www/js/zui3/dashboard/block-3.html b/www/js/zui3/dashboard/block-3.html
new file mode 100644
index 0000000000..ce6548026c
--- /dev/null
+++ b/www/js/zui3/dashboard/block-3.html
@@ -0,0 +1,66 @@
+
+
+ 包含表格
+
+
+
+
+
+
+
+
+ ID
+ 名称
+ 状态
+ 统计
+
+
+
+
+ 1
+ 禅道项目管理软件
+ 进行中
+ 12
+
+
+ 2
+ 禅道项目管理软件
+ 进行中
+ 12
+
+
+ 3
+ 禅道项目管理软件
+ 进行中
+ 12
+
+
+ 4
+ 禅道项目管理软件
+ 进行中
+ 12
+
+
+ 5
+ 禅道项目管理软件
+ 进行中
+ 12
+
+
+ 6
+ 禅道项目管理软件
+ 进行中
+ 12
+
+
+ 7
+ 禅道项目管理软件
+ 进行中
+ 12
+
+
+
+
+
diff --git a/www/js/zui3/dashboard/block-4.html b/www/js/zui3/dashboard/block-4.html
new file mode 100644
index 0000000000..f8053a5708
--- /dev/null
+++ b/www/js/zui3/dashboard/block-4.html
@@ -0,0 +1,8 @@
+
+
+ 自定义内容
+
+
+ 自定义内容
+
+
diff --git a/www/js/zui3/dashboard/block-5.html b/www/js/zui3/dashboard/block-5.html
new file mode 100644
index 0000000000..38b20db634
--- /dev/null
+++ b/www/js/zui3/dashboard/block-5.html
@@ -0,0 +1,8 @@
+
+
+ 五
+
+
+ 五
+
+
diff --git a/www/js/zui3/dashboard/block-6.html b/www/js/zui3/dashboard/block-6.html
new file mode 100644
index 0000000000..556daf20ae
--- /dev/null
+++ b/www/js/zui3/dashboard/block-6.html
@@ -0,0 +1,567 @@
+
+
+ 数据表格
+
+
+
+
+
+
diff --git a/www/js/zui3/dashboard/block-8.html b/www/js/zui3/dashboard/block-8.html
new file mode 100644
index 0000000000..519dbb9d1b
--- /dev/null
+++ b/www/js/zui3/dashboard/block-8.html
@@ -0,0 +1,13 @@
+
+
+ 文字排版
+
+
+
+ HTML5是HTML最新的修订版本,2014年10月由万维网联盟(W3C)完成标准制定。
+ 目标是替换1999年所制定的HTML 4.01和XHTML 1.0标准,以期能在互联网应用迅速发展的时候,使网络标准达到匹配当代的网络需求。广义论及HTML5时,实际指的是包括HTML、CSS和JavaScript在内的一套技术组合。它希望能够减少网页浏览器对于需要插件的丰富性网络应用服务(Plug-in-Based Rich Internet Application,RIA),例如:AdobeFlash、Microsoft Silverlight与Oracle JavaFX的需求,并且提供更多能有效加强网络应用的标准集。
+ 它希望能够减少网页浏览器对于需要插件的丰富性网络应用服务(Plug-in-Based Rich Internet Application,RIA),例如:AdobeFlash、Microsoft Silverlight与Oracle JavaFX的需求,并且提供更多能有效加强网络应用的标准集。
+ HTML5是HTML最新的修订版本,2014年10月由万维网联盟(W3C)完成标准制定。目标是替换1999年所制定的HTML 4.01和XHTML 1.0标准,以期能在互联网应用迅速发展的时候,使网络标准达到匹配当代的网络需求。广义论及HTML5时,实际指的是包括HTML、CSS和JavaScript在内的一套技术组合。
+
+
+
diff --git a/www/js/zui3/dashboard/block-9.html b/www/js/zui3/dashboard/block-9.html
new file mode 100644
index 0000000000..bc788eef48
--- /dev/null
+++ b/www/js/zui3/dashboard/block-9.html
@@ -0,0 +1,13 @@
+
+
+ 文字排版
+
+
+
+ HTML5是HTML最新的修订版本,2014年10月由万维网联盟(W3C)完成标准制定。目标是替换1999年所制定的HTML 4.01和XHTML 1.0标准,以期能在互联网应用迅速发展的时候,使网络标准达到匹配当代的网络需求。广义论及HTML5时,实际指的是包括HTML、CSS和JavaScript在内的一套技术组合。它希望能够减少网页浏览器对于需要插件的丰富性网络应用服务(Plug-in-Based Rich Internet Application,RIA),例如:AdobeFlash、Microsoft Silverlight与Oracle JavaFX的需求,并且提供更多能有效加强网络应用的标准集。
+
+
+
diff --git a/www/js/zui3/zin.js b/www/js/zui3/zin.js
new file mode 100644
index 0000000000..7eeced8959
--- /dev/null
+++ b/www/js/zui3/zin.js
@@ -0,0 +1,978 @@
+(function()
+{
+ if (config.skipRedirect || window.skipRedirect) return;
+
+ const parent = window.parent;
+ const currentModule = config.currentModule;
+ const currentMethod = config.currentMethod;
+ const isIndexPage = currentModule === 'index' && currentMethod === 'index';
+
+ const isAllowSelfOpen = isIndexPage
+ || location.hash === '#_single'
+ || /(\?|\&)_single/.test(location.search)
+ || currentModule === 'tutorial'
+ || currentModule === 'install'
+ || currentModule === 'upgrade'
+ || (currentModule === 'user'
+ && (currentMethod === 'login' || currentMethod === 'deny'))
+ || (currentModule === 'file' && currentMethod === 'download')
+ || (currentModule === 'my' && currentMethod === 'changepassword')
+ || $('body').hasClass('allow-self-open');
+
+ if (parent === window && !isAllowSelfOpen)
+ {
+ const shortUrl = location.pathname + location.search + location.hash;
+ location.href = $.createLink('index', 'index', `open=${btoa(shortUrl)}`);
+ return;
+ }
+}());
+
+(function()
+{
+ let config = window.config;
+ const isIndexPage = config.currentModule === 'index' && config.currentMethod === 'index';
+ if(isIndexPage) return;
+
+ const DEBUG = config.debug;
+ const currentCode = window.name.substring(4);
+ const isInAppTab = parent.window !== window;
+ const fetchTasks = new Map();
+ const startTime = performance.now();
+ const timers = {timeout: [], interval: []};
+ let currentAppUrl = isInAppTab ? '' : location.href;
+ let zinbar = null;
+ let historyState = parent.window.history.state;
+
+ $.apps = $.extend(
+ {
+ currentCode: currentCode,
+ updateApp: function(code, url, title)
+ {
+ const state = typeof code === 'object' ? code : {url: url, title: title};
+ const oldState = window.history.state;
+
+ if(title) document.title = title;
+
+ if(oldState && oldState.url === url) return;
+
+ window.history.pushState(state, title, url);
+ if(DEBUG) console.log('[APP]', 'update:', {code, url, title});
+ return state;
+ },
+ isOldPage: () => false,
+ reloadApp: function(_code, url)
+ {
+ loadPage(url);
+ },
+ openApp: function(url, options)
+ {
+ loadPage(url, options);
+ }
+ }, parent.window.$.apps);
+
+ const renderMap =
+ {
+ html: updatePageWithHtml,
+ body: (data) => $('body').html(data),
+ title: (data) => document.title = data,
+ main: (data) => $('#main').html(data),
+ featureBar: (data) => $('#featureBar').html(data),
+ pageCSS: (data) => $('style.zin-page-css').html(data),
+ pageJS: updatePageJS,
+ configJS: updateConfigJS,
+ activeFeature: (data) => activeNav(data, '#featureBar'),
+ activeMenu: (data) => activeNav(data),
+ navbar: updateNavbar,
+ heading: updateHeading,
+ fatal: showFatalError,
+ zinDebug: (data, _info, options) => showZinDebugInfo(data, options),
+ zinErrors: (data, _info, options) => showErrors(data, options.id === 'page'),
+ };
+
+ function registerRender(name, callback)
+ {
+ renderMap[name] = callback;
+ }
+
+ function showFatalError(data, _info, options)
+ {
+ const zinDebug = window.zinDebug;
+ if(zinDebug && zinDebug.basePath) data = data.split(zinDebug.basePath).join('/');
+ if(data.startsWith('
\n')) data = data.replace('
\n', '');
+ zui.Modal.alert({message: {html: data}, title: `Fatal error: ${options.url}`, actions: [], size: 'lg', custom: {className: 'backdrop-blur border-2 border-canvas bg-opacity-80 rounded-xl', bodyClass: 'font-mono', headerClass: 'text-danger'}});
+ }
+
+ function initZinbar()
+ {
+ if(!DEBUG || isIndexPage) return;
+ let $bar = $('#zinbar');
+ if($bar.length) return;
+
+ $bar = $('').insertAfter('body');
+ zinbar = new zui.Zinbar($bar[0]);
+ }
+
+ function registerTimer(callback, time, type)
+ {
+ type = type || 'timeout';
+ const id = type === 'interval' ? setInterval(callback, time) : setTimeout(callback, time);
+ timers[type].push(id);
+ return id;
+ }
+
+ function updateConfigJS(data)
+ {
+ $('#configJS').replaceWith(data);
+ config = window.config;
+ }
+
+ function updatePageJS(data)
+ {
+ if(window.onPageUnmount) window.onPageUnmount();
+
+ window.onPageUnmount = null;
+ window.beforePageUpdate = null;
+ window.afterPageUpdate = null;
+ window.onPageRender = null;
+
+ if(timers.interval.length) timers.interval.forEach(clearInterval);
+ if(timers.timeout.length) timers.timeout.forEach(clearTimeout);
+ timers.interval = [];
+ timers.timeout = [];
+
+ $('script.zin-page-js').replaceWith(data);
+ }
+
+ function updateZinbar(perf, errors, basePath)
+ {
+ if(!DEBUG) return;
+
+ if(zinbar && zinbar.$) zinbar.$.update(perf, errors, basePath);
+ else requestAnimationFrame(() => updateZinbar(perf, errors, basePath));
+ }
+
+ function updatePerfInfo(options, stage, info)
+ {
+ if(!DEBUG) return;
+
+ const perf = {id: options.id, url: options.url || currentAppUrl};
+ perf[stage] = performance.now();
+ if(stage === 'requestBegin') $.extend(perf, {requestEnd: undefined, renderBegin: undefined, renderEnd: undefined});
+ if(info)
+ {
+ if(info.perf) $.extend(perf, info.perf);
+ if(info.dataSize) perf.dataSize = info.dataSize;
+ }
+ updateZinbar(perf);
+ }
+
+ function showZinDebugInfo(data, options)
+ {
+ if(!DEBUG) return;
+
+ updateZinbar({id: options.id, trace: data.trace, xhprof: data.xhprof}, data.errors, data.basePath);
+ }
+
+ function updatePageWithHtml(data)
+ {
+ const html = [];
+ const skipTags = new Set(['SCRIPT', 'META']);
+ $(data).each(function(_idx, node)
+ {
+ const nodeName = node.nodeName;
+ if(nodeName === '#text') html.push(node.textContent);
+ else if(nodeName === 'SCRIPT' && node.innerText.startsWith('window.config={')) html.push(node.outerHTML);
+ else if(nodeName === 'TITLE') document.title = node.innerText;
+ else if(skipTags.has(nodeName)) return;
+ else html.push(node.outerHTML);
+ });
+ $('body').html(html.join(''));
+ window.zin = {config: window.config};
+ if(DEBUG) console.log('[ZIN] ', window.zin);
+ if(DEBUG) zui.Messager.show({content: 'ZIN: load an old page.', close: false});
+ }
+
+ function updateNavbar(data)
+ {
+ const $navbar = $('#navbar');
+ const $newNav = $(data);
+ if($newNav.text().trim() !== $navbar.text().trim() || $newNav.find('.nav-item>a').map((_, element) => element.href).get().join(' ') !== $navbar.find('.nav-item>a').map((_, element) => element.href).get().join(' ')) return $navbar.empty().append($newNav);
+
+ activeNav($newNav.find('.nav-item>a.active').data('id'), $navbar);
+ }
+
+ function updateHeading(data)
+ {
+ const $data = $(data);
+ const $heading = $('#heading');
+ const $dropmenu = $heading.find('#dropmenu');
+ const $nextDropmenu = $data.filter('#dropmenu');
+ if($dropmenu.dataset('fetcher') === $nextDropmenu.dataset('fetcher'))
+ {
+ const $toolbar = $heading.find('.toolbar');
+ const $nextToolbar = $data.filter('.toolbar');
+ if($nextToolbar.text().trim() !== $toolbar.text().trim()) $toolbar.replaceWith($nextToolbar);
+ }
+ else
+ {
+ $heading.html(data);
+ }
+ }
+
+ function activeNav(activeID, nav)
+ {
+ const $nav = $(nav || '#navbar');
+ const $active = $nav.find('.nav-item>a.active');
+ if($active.data('id') === activeID) return;
+ $active.removeClass('active');
+ $nav.find('.nav-item>a[data-id="' + activeID + '"]').addClass('active');
+ }
+
+ function beforeUpdate($target, info, options)
+ {
+ if($target && $target.length) $target.find('[data-zin-events]').off('.on.zin');
+ if(window.beforePageUpdate) window.beforePageUpdate($target, info, options);
+ }
+
+ function afterUpdate($target, info, options)
+ {
+ if(window.afterPageUpdate) window.afterPageUpdate($target, info, options);
+ }
+
+ function renderPartial(info, options)
+ {
+ if(window.onPageRender && window.onPageRender(info)) return;
+
+ const render = renderMap[info.name];
+ const isHtml = info.type === 'html';
+ const selector = parseSelector(info.selector);
+ const $target = selector ? $(selector.select) : $target;
+ if(render)
+ {
+ if(isHtml) beforeUpdate($target, info, options);
+ render(info.data, info, options);
+ if(isHtml) afterUpdate($target, info, options);
+ return;
+ }
+
+ /* Common render */
+ if(!selector) return console.warn('[APP] ', 'cannot render partial content with data', info);
+
+ if(!$target.length) return console.warn('[APP] ', 'cannot find target element with selector', selector);
+ if(selector.first) $target = $target.first();
+ if(selector.type === 'json')
+ {
+ const props = info.data.props;
+ if(typeof props !== 'object') return;
+ const component = $target.zui(info.name);
+ if(typeof component === 'object' && typeof component.render === 'function') component.render(props);
+ return;
+ }
+
+ beforeUpdate($target, info, options);
+ if(selector.inner) $target.html(info.data);
+ else $target.replaceWith(info.data);
+ afterUpdate($target, info, options);
+ }
+
+ function renderPage(list, options)
+ {
+ if(DEBUG) console.log('[APP] ', 'render:', list);
+ list.forEach(item => renderPartial(item, options));
+ if(!options.partial)
+ {
+ const newState = $.apps.updateApp(currentCode, currentAppUrl, document.title);
+ if (newState) historyState = newState;
+ }
+ }
+
+ function toggleLoading(target, isLoading)
+ {
+ const $target = $(target);
+ const position = $target.css('position');
+ if(!['relative', 'absolute', 'fixed'].includes(position)) $target.css('position', 'relative');
+ if(!$target.hasClass('load-indicator')) $target.addClass('load-indicator');
+ if(isLoading === undefined) isLoading = !$target.hasClass('loading');
+ $target.toggleClass('loading', isLoading);
+ }
+
+ /**
+ * Request data from remote server
+ * @param {Object} options
+ * @param {string} options.id
+ * @param {string} options.url
+ * @param {string} options.selector
+ * @param {string} [options.target]
+ * @param {string} [options.method]
+ * @param {FormData|Form|Record} [options.data]
+ * @param {{selector: string, type: string}} [options.zinOptions]
+ * @param {function} [options.success]
+ * @param {function} [options.error]
+ * @param {function} [options.complete]
+ * @param {function} [onFinish]
+ */
+ function requestContent(options, onFinish)
+ {
+ const target = options.target || '#main';
+ const selectors = (Array.isArray(options.selector) ? options.selector : options.selector.split(',')).map(selector => selector.replace(':component', ':type=json&data=props'));
+ const url = options.url;
+
+ if(DEBUG) console.log('[APP]', 'request', options);
+ if(DEBUG && !selectors.includes('zinDebug()')) selectors.push('zinDebug()');
+ const isDebugRequest = DEBUG && selectors.length === 1 || selectors[0] === 'zinDebug()';
+ const ajaxOptions =
+ {
+ url: url,
+ headers: {'X-ZIN-Options': JSON.stringify($.extend({selector: selectors, type: 'list'}, options.zinOptions)), 'X-ZIN-App': currentCode},
+ type: options.method || 'GET',
+ data: options.data,
+ contentType: options.contentType,
+ beforeSend: () =>
+ {
+ updatePerfInfo(options, 'requestBegin');
+ if(isDebugRequest) return;
+ toggleLoading(target, true);
+ },
+ success: (data) =>
+ {
+ updatePerfInfo(options, 'requestEnd', {dataSize: data.length});
+ options.result = 'success';
+ let hasFatal = false;
+ try
+ {
+ if(data.includes('RAWJS<'))
+ {
+ const func = new Function(`return ${data.split('"RAWJS<').join('').split('>RAWJS"').join('')}`);
+ data = func();
+ }
+ else
+ {
+ data = JSON.parse(data);
+ }
+ }
+ catch(e)
+ {
+ if(!isInAppTab && config.zin) return;
+ hasFatal = data.includes('Fatal error');
+ data = [{name: hasFatal ? 'fatal' : 'html', data: data}];
+ }
+ if(!options.partial && !hasFatal) currentAppUrl = url;
+ if(Array.isArray(data))
+ {
+ data.forEach((item, idx) => item.selector = selectors[idx]);
+ updatePerfInfo(options, 'renderBegin');
+ renderPage(data, options);
+ updatePerfInfo(options, 'renderEnd');
+ $(document).trigger('pagerender.app');
+ if(options.success) options.success(data);
+ if(onFinish) onFinish(null, data);
+ }
+ else if(data.load)
+ {
+ if(data.load === 'dtable') loadTable();
+ else if(typeof data.load === 'string') loadPage(data.load);
+ else if(data.load === true) loadCurrentPage();
+ else if(typeof data.load === 'object')
+ {
+ if('back' in data.load)
+ {
+ openUrl(data.load);
+ }
+ else if('confirm' in data.load)
+ {
+ const confirmed = confirm(data.load.confirm);
+ if(confirmed) loadPage(data.load.confirmed);
+ else loadPage(data.load.canceled);
+ }
+ else
+ {
+ loadPage(data.load);
+ }
+ }
+ }
+ },
+ error: (xhr, type, error) =>
+ {
+ updatePerfInfo(options, 'requestEnd', {error: error});
+ if(type === 'abort') return console.log('[ZIN] ', 'Abord fetch data from ' + url, {xhr, type, error});;
+ if(DEBUG) console.error('[ZIN] ', 'Fetch data failed from ' + url, {xhr, type, error});
+ zui.Messager.show('ZIN: Fetch data failed from ' + url);
+ if(options.error) options.error(data, error);
+ if(onFinish) onFinish(error);
+ },
+ complete: () =>
+ {
+ toggleLoading(target, false);
+ if(options.complete) options.complete();
+ $(document).trigger('pageload.app');
+ const frameElement = window.frameElement;
+ if(frameElement)
+ {
+ frameElement.classList.remove('loading');
+ frameElement.classList.add('in');
+ }
+ }
+ };
+ return $.ajax(ajaxOptions);
+ }
+
+ function fetchContent(url, selectors, options)
+ {
+ if(typeof url === 'object')
+ {
+ options = url;
+ url = options.url;
+ selectors = options.selector;
+ }
+ if(typeof options === 'string') options = {id: options};
+ else if(typeof options === 'function') options = {success: options};
+
+ selectors = Array.isArray(selectors) ? selectors.join(',') : selectors;
+ const id = options.id || selectors;
+ options = $.extend({}, options, {url: url, selectors: selectors, id: id});
+
+ const task = fetchTasks.get(id) || {url: url, selectors: selectors, options: options};
+ if(task.xhr)
+ {
+ if(task.url === url) return;
+ task.xhr.abort();
+ task.xhr = null;
+ }
+ fetchTasks.set(id, task);
+ if(task.timerID) clearTimeout(task.timerID);
+ task.timerID = setTimeout(() =>
+ {
+ task.timerID = 0;
+ task.xhr = requestContent(options, () =>
+ {
+ const runID = task.xhr.getResponseHeader('Xhprof-RunID');
+ updateZinbar({id: id, xhprof: `${config.webRoot}xhprof/xhprof_html/index.php?run=${runID}&source=${config.currentModule}_${config.currentMethod}`});
+ task.xhr = null;
+ fetchTasks.delete(id);
+ });
+ }, options.delayTime || 0);
+ }
+
+ /** Load an old page. */
+ function loadOldPage(url)
+ {
+ let $page = $('#oldPage');
+ if(!$page.length)
+ {
+ $page = $('')
+ .append($('').attr({name: `app-${currentCode}-old`, frameborder: 'no', scrolling: 'auto', style: 'width:100%;height:100%;'}))
+ .attr({id: 'oldPage', class: 'canvas fixed w-full h-full top-0 left-0 load-indicator', style: 'z-index:100;'})
+ .insertAfter('body')
+ .on('oldPageLoad.app', () =>
+ {
+ const frame = window.frameElement;
+ frame.classList.remove('loading');
+ frame.classList.add('in');
+ $page.removeClass('loading').find('iframe').addClass('in');
+ $(document).trigger('pageload.app');
+ });
+ }
+ if($page.hasClass('hidden')) $page.addClass('loading').removeClass('hidden');
+ const $iframe = $page.find('iframe').removeClass('in');
+ if($iframe.attr('src') === url) $iframe[0].contentWindow.location.reload();
+ else $iframe.attr('src', url);
+ }
+
+ /** Hide old page content. */
+ function hideOldPage()
+ {
+ const $page = $('#oldPage');
+ if(!$page.length) return;
+ $page.addClass('in hidden');
+ }
+
+ /**
+ * Load page with zin way.
+ *
+ * @param {Object} [options]
+ * @param {string} [options.url]
+ * @param {string} [options.selector]
+ * @param {string} [options.id]
+ * @param {string} [options.method]
+ * @param {FormData|Form|Record} [options.data]
+ * @param {string} [options.target]
+ * @param {function} [options.success]
+ * @param {function} [options.error]
+ * @param {function} [options.complete]
+ * @param {string} [selector]
+ * @returns {void}
+ */
+ function loadPage(options, selector)
+ {
+ if(typeof options === 'string') options = {url: options};
+ options = options || {};
+
+ if ($.apps.isOldPage(options.url)) return loadOldPage(options.url);
+ else hideOldPage();
+
+ if(typeof selector === 'string') options.selector = selector;
+ else if(typeof selector === 'object') options = $.extend({}, options, selector);
+ if (!options.selector && options.url && options.url.includes(' '))
+ {
+ const parts = url.split(' ', 2);
+ options.url = parts[0];
+ options.selector = parts[1];
+ }
+
+ options = $.extend({url: currentAppUrl, id: options.selector || options.target || 'page'}, options);
+ if(!options.selector)
+ {
+ if($('#main').length)
+ {
+ options.selector = '#main>*,pageCSS/.zin-page-css>*,pageJS/.zin-page-js,#configJS,title>*,#heading>*,#navbar>*';
+ }
+ else
+ {
+ options.selector = 'body>*,title>*,#configJS';
+ }
+ }
+
+ if(DEBUG) console.log('[APP] ', 'load:', options.url);
+ fetchContent(options.url, options.selector, options);
+ }
+
+ function loadPartial(url, selector, options)
+ {
+ loadPage($.extend({partial: true, url: url, selector: selector}, options));
+ }
+
+ /** Load zui component. */
+ function loadComponent(target, options)
+ {
+ if(target[0] !== '#' && target[0] !== '.') target = `#${target}`;
+ options = $.extend({url: currentAppUrl, id: target, target: target}, options);
+ if(!$(target).length) return loadPage({url: options.url, id: target});
+
+ if(!options.selector)
+ {
+ let name = options.component;
+ if(!name)
+ {
+ const component = $(target).zui();
+ if(!component) return;
+ name = component.constructor.ZUI;
+ }
+ options.selector = `${name}/${target}:component`;
+ }
+ loadPage(options);
+ }
+
+ /**
+ * Load dtable content.
+ *
+ * @param {string} [url]
+ * @param {string} [target]
+ * @param {Object} [options]
+ * @returns
+ */
+ function loadTable(url, target, options)
+ {
+ if(!target)
+ {
+ const urlInfo = $.parseLink(url);
+ target = urlInfo.moduleName ? `table-${urlInfo.moduleName}-${urlInfo.methodName}` : ($('.dtable').attr('id') || 'dtable');
+ }
+ if(target[0] !== '#' && target[0] !== '.') target = `#${target}`;
+ return loadComponent(target, $.extend({component: 'dtable', url: url, selector: `dtable/${target}:component,#featureBar>*`}, options));
+ }
+
+ /**
+ * Load modal content.
+ *
+ * @param {string} [url]
+ * @param {string} [target]
+ * @param {Object} [options]
+ * @returns
+ */
+ function loadModal(url, target, options)
+ {
+ options = $.extend({url}, options);
+ if(!target) return zui.Modal.open(options);
+ else if(target === 'current') target = zui.Modal.query().id;
+
+ if(target[0] !== '#' && target[0] !== '.') target = `#${target}`;
+ const modal = zui.Modal.query(target);
+ if(!modal) return;
+ modal.render(options);
+ }
+
+ function loadTarget(url, target, options)
+ {
+ options = $.extend({}, options);
+ if(typeof target === 'string') options.target = target;
+ else if(typeof target === 'object') options = $.extend(options, target);
+ if(typeof url === 'string') options.url = url;
+ else if(typeof url === 'object') options = $.extend(options, url);
+ if(!options.target) return loadPage(options);
+
+ let remoteData;
+ let loadError;
+ const ajaxOptions =
+ {
+ url: url,
+ header: options.header,
+ type: options.method || 'GET',
+ data: options.data,
+ contentType: options.contentType,
+ beforeSend: () =>
+ {
+ toggleLoading(options.target, true);
+ if(options.beforeSend) return options.beforeSend();
+ },
+ success: (data) =>
+ {
+ remoteData = data;
+ if(options.beforeUpdate)
+ {
+ const result = options.beforeUpdate(data, options);
+ if(result === false) return;
+ if(typeof result === 'string') data = result;
+ }
+ let target = options.target;
+ if(target[0] !== '#' && target[0] !== '.') target = `#${target}`;
+ const $target = $(target);
+ if($target.length)
+ {
+ if(options.success) options.success(data, options);
+ let $content = $(data);
+ if(options.selector) $content = $('').append($content).find(options.selector);
+ if(options.replace) $target.replaceWith($content);
+ else $target.empty().append($content);
+ }
+ else
+ {
+ loadError = new Error(`ZIN: Target "${target}" not found.`);
+ if(options.error) options.error(data, loadError);
+ }
+ },
+ error: (xhr, type, error) =>
+ {
+ loadError = error;
+ if(options.error) options.error(error, options);
+ if(DEBUG) console.error('[ZIN] ', 'Fetch data failed from ' + url, {xhr, type, error});
+ zui.Messager.show('ZIN: Fetch data failed from ' + url);
+ },
+ complete: () =>
+ {
+ toggleLoading(target, false);
+ if(options.complete) options.complete(remoteData, loadError, options);
+ }
+ };
+ return $.ajax(ajaxOptions);
+ }
+
+ function postAndLoadPage(url, data, selector, options)
+ {
+ if(typeof selector === 'object')
+ {
+ options = selector;
+ selector = null;
+ }
+ options = $.extend({url: url, selector: selector, method: 'POST', data, contentType: false}, options);
+ if(options.app) openPage(url, options.app, options);
+ else loadPage(options);
+ }
+
+ function loadCurrentPage(options)
+ {
+ if(typeof options === 'string') options = {selector: options};
+ return loadPage(options);
+ }
+
+ function openPage(url, appCode, options)
+ {
+ if(DEBUG) console.log('[APP] ', 'open:', url, appCode);
+ if(!window.config.zin)
+ {
+ location.href = $.createLink('index', 'app', 'url=' + btoa(url));
+ return;
+ }
+ $.apps.openApp(url, $.extend({code: appCode, forceReload: true}, options));
+ }
+
+ /**
+ * Search history and go back to specified path.
+ *
+ * @param {string} target Back target, can be app name or module-method path.
+ * @param {string} url Fallback url.
+ * @returns {void}
+ */
+ function goBack(target, url)
+ {
+ if(!target || target === 'APP' || target === true) target = currentCode;
+ else if(target === 'GLOBAL') target = '';
+ $.apps.goBack(target, url, historyState);
+ }
+
+ /**
+ * Open url in app.
+ * @param {string} url
+ * @param {Object} options
+ * @param {string} options.url
+ * @param {string} options.app
+ * @param {string} options.load
+ * @param {string} options.back
+ * @param {Event} event
+ */
+ function openUrl(url, options, event)
+ {
+ if(typeof url === 'object')
+ {
+ options = url;
+ url = options.url;
+ }
+ else
+ {
+ options = options || {};
+ options.url = url;
+ }
+
+ if(DEBUG) console.log('[APP] open url', url, options);
+
+ if(options.confirm)
+ {
+ return zui.Modal.confirm(options.confirm).then(confirmed =>
+ {
+ if(!confirmed) return;
+ openUrl(url, $.extend({}, options, {confirm: false}), event);
+ });
+ }
+
+ const load = options.load;
+ if(typeof load === 'string' || load)
+ {
+ if(!options.target) options.target = options.loadId;
+ if(url) options.url = url;
+ if(load)
+ {
+ if(load === 'table')
+ {
+ if(!options.target && event) options.target = $(event.target).closest('.dtable').attr('id');
+ return loadTable(options.url, options.target, options);
+ }
+ if(load === 'modal')
+ {
+ if(!options.target && event) options.target = $(event.target).closest('.modal').attr('id');
+ return loadModal(options.url, options.target, options);
+ }
+ if(load === 'target') return loadTarget(options);
+ if(load !== 'APP' && typeof load === 'string') options.selector = load;
+ delete options.load;
+ }
+ return loadPage(options);
+ }
+
+ if(typeof options.back === 'string') return goBack(options.back, url);
+
+ openPage(url, options.app);
+ }
+
+ /**
+ * Parse wg selector
+ * @param {string} selector
+ * @return {object|null}
+ */
+ function parseSelector(selector)
+ {
+ selector = selector.trim();
+ let len = selector.length;
+
+ if(len < 1) return null;
+
+ const result = {class: [], id: '', tag: '', inner: false, name: '', first: false, selector: selector};
+ if(selector.includes('/'))
+ {
+ const parts = selector.split('/', 2);
+ result.name = parts[0];
+ selector = parts[1];
+ len = selector.length;
+ }
+ selector = selector.replace('> *', '>*');
+ if(selector.endsWith('>*'))
+ {
+ result.inner = true;
+ selector = selector.substring(0, selector.length - 2);
+ len = selector.length;
+ }
+
+ let type = 'tag';
+ let current = '';
+ let updateResult = function(result, current, type)
+ {
+ if(!current.length) return;
+
+ if(type === 'class')
+ {
+ result[type].push(current);
+ }
+ else if(type === 'option')
+ {
+ current.split('&').forEach(function(option)
+ {
+ const parts = option.split('=');
+ result[parts[0]] = parts[1] || true;
+ });
+ }
+ else
+ {
+ result[type] = current;
+ }
+ };
+
+ for(let i = 0; i < len; i++)
+ {
+ let c = selector[i];
+ let t = '';
+
+ if(c === '#' && type !== 'option')
+ {
+ t = 'id';
+ }
+ else if(c === '.' && type !== 'option')
+ {
+ t = 'class';
+ }
+ else if(c === '(' && type !== 'option' && selector.endsWith(')'))
+ {
+ let command = selector.substring(i + 1, selector.length - 1);
+ if(!command) command = current;
+ result.command = command;
+ break;
+ }
+ else if(c === ':')
+ {
+ t = 'option';
+ }
+
+ if(!t)
+ {
+ current += c;
+ }
+ else
+ {
+ updateResult(result, current, type);
+ current = '';
+ type = t;
+ }
+ }
+ updateResult(result, current, type);
+
+ if(!result.name.length)
+ {
+ if(result.id.length) result.name = result.id;
+ else if(result.tag) result.name = result.tag;
+ else result.name = selector;
+ }
+ result.select = [result.tag, result.id.length ? '#' + result.id : '', result.class.length ? '.' + result.class.join('.') : ''].join('');
+
+ return result;
+ }
+
+ $.extend(window, {registerRender: registerRender, fetchContent: fetchContent, loadTable: loadTable, loadPage: loadPage, postAndLoadPage: postAndLoadPage, loadCurrentPage: loadCurrentPage, parseSelector: parseSelector, toggleLoading: toggleLoading, openUrl: openUrl, goBack: goBack, registerTimer: registerTimer, loadModal: loadModal, loadTarget: loadTarget, loadComponent: loadComponent, loadPartial: loadPartial});
+ $.extend($.apps, {openUrl: openUrl});
+
+ /* Transfer click event to parent */
+ $(document).on('click', (e) =>
+ {
+ if(isInAppTab) window.parent.$('body').trigger('click');
+
+ const $link = $(e.target).closest('a,.open-url');
+ if(!$link.length || $link.hasClass('ajax-submit') || $link.hasClass('not-open-url') || ($link.attr('target') || '')[0] === '_') return;
+
+ const options = $link.dataset();
+ if(options.toggle) return;
+
+ const url = options.url || $link.attr('href');
+ const $modal = $link.closest('.modal');
+ if(options.loadId)
+ {
+ options.target = options.loadId;
+ delete options.loadId;
+ }
+ if($modal.length)
+ {
+ if(!options.load)
+ {
+ if(!url) return;
+ options.load = 'modal';
+ }
+ if(options.load === 'modal' && !options.target) options.target = $modal.attr('id');
+ if(options.load === 'table')
+ {
+ options.partial = true;
+ if(!options.url) options.url = $modal.data('zui.Modal').options.url;
+ }
+ }
+ else
+ {
+ if(options.load === 'modal' && !options.target) delete options.load;
+ }
+ if(url && (/^(https?|javascript):/.test(url) || url.startsWith('#'))) return;
+ if(!url && $link.is('a') && !options.back && !options.load) return;
+
+ openUrl(url, options, e);
+ e.preventDefault();
+ }).on('locate.zt', (_e, data) =>
+ {
+ if(!data) return;
+ if(data === true) return loadCurrentPage();
+ if(typeof data === 'string')
+ {
+ if(data === 'table') return loadTable();
+ if(data === 'modal') return loadModal();
+ data = {url: data};
+ }
+
+ if(data.confirm)
+ {
+ return zui.Modal.confirm(data.confirm).then(confirmed =>
+ {
+ if(confirmed) $(document).trigger('locate.zt', data.confirmed);
+ else $(document).trigger('locate.zt', data.cancelled);
+ });
+ }
+ if(data.load) return openUrl(data);
+ if(data.app) return openPage(data.url + (data.selector ? (' ' + data.selector) : ''), data.app);
+ loadPage(data.url, data.selector);
+ });
+
+ if(!isInAppTab)
+ {
+ $(window).on('popstate', function(event)
+ {
+ const state = event.state;
+ if(DEBUG) console.log('[APP]', 'popstate:', state);
+ openPage(state.url);
+ });
+ }
+
+ $(() =>
+ {
+ initZinbar();
+
+ if(window.defaultAppUrl) loadPage(window.defaultAppUrl);
+ if(isInAppTab)
+ {
+ const frameElement = window.frameElement;
+ if(frameElement && parent.window.$) parent.window.$(frameElement).trigger('ready.app');
+ }
+
+ if(DEBUG)
+ {
+ if(window.zinDebug)
+ {
+ let requestBegin = startTime;
+ if(performance.timing) requestBegin -= ((performance.timing.loadEventStart || Date.now()) - (performance.timing.navigationStart || Date.now()));
+ else if(window.zinDebug.trace && window.zinDebug.trace.request) requestBegin -= window.zinDebug.trace.request.timeUsed;
+ updatePerfInfo({id: 'page'}, 'renderEnd', {id: 'page', perf: {requestBegin: Math.max(0, requestBegin), requestEnd: startTime, renderBegin: startTime}});
+ showZinDebugInfo(window.zinDebug, {id: 'page'});
+ }
+ if(!isInAppTab && !zui.store.get('Zinbar:hidden')) loadCurrentPage();
+ }
+ });
+}());
diff --git a/www/js/zui3/zui.zentao.css b/www/js/zui3/zui.zentao.css
new file mode 100644
index 0000000000..09e422328b
--- /dev/null
+++ b/www/js/zui3/zui.zentao.css
@@ -0,0 +1 @@
+/*! tailwindcss v3.3.3 | MIT License | https://tailwindcss.com*/*,:after,:before{border-color:rgb(var(--color-gray-200-rgb));border-style:solid;border-width:0;box-sizing:border-box}:after,:before{--tw-content:""}html{-webkit-text-size-adjust:100%;font-feature-settings:normal;font-family:-apple-system,Noto Sans,Helvetica Neue,Helvetica,Nimbus Sans L,Arial,Liberation Sans,PingFang SC,Hiragino Sans GB,Noto Sans CJK SC,Source Han Sans SC,Source Han Sans CN,Microsoft YaHei,Wenquanyi Micro Hei,WenQuanYi Zen Hei,ST Heiti,SimHei,WenQuanYi Zen Hei Sharp,sans-serif;font-variation-settings:normal;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{font-feature-settings:inherit;color:inherit;font-family:inherit;font-size:100%;font-variation-settings:inherit;font-weight:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:rgb(var(--color-gray-400-rgb));opacity:1}input::placeholder,textarea::placeholder{color:rgb(var(--color-gray-400-rgb));opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]{display:none}:root{--color-gray-50:#fafafa;--color-gray-100:#f6f7f9;--color-gray-200:#eee;--color-gray-300:#d8dbde;--color-gray-400:#c4c4c4;--color-gray-500:#898b90;--color-gray-600:#53575b;--color-gray-700:#3d4349;--color-gray-800:#2e343a;--color-gray-900:#000;--color-gray-50-rgb:250,250,250;--color-gray-100-rgb:246,247,249;--color-gray-200-rgb:238,238,238;--color-gray-300-rgb:216,219,222;--color-gray-400-rgb:196,196,196;--color-gray-500-rgb:137,139,144;--color-gray-600-rgb:83,87,91;--color-gray-700-rgb:61,67,73;--color-gray-800-rgb:46,52,58;--color-gray-900-rgb:0,0,0;--color-slate-50:#fcfdfe;--color-slate-100:#f4f5f7;--color-slate-200:#edeef2;--color-slate-300:#e6eaf1;--color-slate-400:#e3e4e9;--color-slate-500:#9ea3b0;--color-slate-600:#838a9d;--color-slate-700:#5e626d;--color-slate-800:#313c52;--color-slate-900:#0b0f18;--color-slate-50-rgb:252,253,254;--color-slate-100-rgb:244,245,247;--color-slate-200-rgb:237,238,242;--color-slate-300-rgb:230,234,241;--color-slate-400-rgb:227,228,233;--color-slate-500-rgb:158,163,176;--color-slate-600-rgb:131,138,157;--color-slate-700-rgb:94,98,109;--color-slate-800-rgb:49,60,82;--color-slate-900-rgb:11,15,24;--color-primary-50:#e6f0ff;--color-primary-100:#d5e5ff;--color-primary-200:#a4c7ff;--color-primary-300:#66a2ff;--color-primary-400:#3785ff;--color-primary-500:#2e7fff;--color-primary-600:#1e6aeb;--color-primary-700:#2463c7;--color-primary-800:#1b54ad;--color-primary-900:#063072;--color-primary-50-rgb:230,240,255;--color-primary-100-rgb:213,229,255;--color-primary-200-rgb:164,199,255;--color-primary-300-rgb:102,162,255;--color-primary-400-rgb:55,133,255;--color-primary-500-rgb:46,127,255;--color-primary-600-rgb:30,106,235;--color-primary-700-rgb:36,99,199;--color-primary-800-rgb:27,84,173;--color-primary-900-rgb:6,48,114;--color-secondary-50:#e7f6ff;--color-secondary-100:#cdecff;--color-secondary-200:#9bd9ff;--color-secondary-300:#77cbff;--color-secondary-400:#60c2ff;--color-secondary-500:#37b2fe;--color-secondary-600:#18a6fd;--color-secondary-700:#1099ed;--color-secondary-800:#078ada;--color-secondary-900:#046bab;--color-secondary-50-rgb:231,246,255;--color-secondary-100-rgb:205,236,255;--color-secondary-200-rgb:155,217,255;--color-secondary-300-rgb:119,203,255;--color-secondary-400-rgb:96,194,255;--color-secondary-500-rgb:55,178,254;--color-secondary-600-rgb:24,166,253;--color-secondary-700-rgb:16,153,237;--color-secondary-800-rgb:7,138,218;--color-secondary-900-rgb:4,107,171;--color-success-50:#ecfff8;--color-success-100:#d0f6e8;--color-success-200:#b1ecd6;--color-success-300:#7adfba;--color-success-400:#48d1a0;--color-success-500:#22c98d;--color-success-600:#0dbb7d;--color-success-700:#0ca76f;--color-success-800:#0e8d60;--color-success-900:#186c4e;--color-success-50-rgb:236,255,248;--color-success-100-rgb:208,246,232;--color-success-200-rgb:177,236,214;--color-success-300-rgb:122,223,186;--color-success-400-rgb:72,209,160;--color-success-500-rgb:34,201,141;--color-success-600-rgb:13,187,125;--color-success-700-rgb:12,167,111;--color-success-800-rgb:14,141,96;--color-success-900-rgb:24,108,78;--color-warning-50:#fff4ea;--color-warning-100:#ffecdb;--color-warning-200:#ffd2a9;--color-warning-300:#ffbc7e;--color-warning-400:#ffaf65;--color-warning-500:#ff9f46;--color-warning-600:#f38f19;--color-warning-700:#ed8307;--color-warning-800:#d17100;--color-warning-900:#af5f01;--color-warning-50-rgb:255,244,234;--color-warning-100-rgb:255,236,219;--color-warning-200-rgb:255,210,169;--color-warning-300-rgb:255,188,126;--color-warning-400-rgb:255,175,101;--color-warning-500-rgb:255,159,70;--color-warning-600-rgb:243,143,25;--color-warning-700-rgb:237,131,7;--color-warning-800-rgb:209,113,0;--color-warning-900-rgb:175,95,1;--color-danger-50:#ffebeb;--color-danger-100:#ffd5d5;--color-danger-200:#ffb1b1;--color-danger-300:#ff9292;--color-danger-400:#ff7c7c;--color-danger-500:#fc5959;--color-danger-600:#fb2b2b;--color-danger-700:#d91b1b;--color-danger-800:#ba1313;--color-danger-900:#a20606;--color-danger-50-rgb:255,235,235;--color-danger-100-rgb:255,213,213;--color-danger-200-rgb:255,177,177;--color-danger-300-rgb:255,146,146;--color-danger-400-rgb:255,124,124;--color-danger-500-rgb:252,89,89;--color-danger-600-rgb:251,43,43;--color-danger-700-rgb:217,27,27;--color-danger-800-rgb:186,19,19;--color-danger-900-rgb:162,6,6;--color-important-50:#fff8f5;--color-important-100:#ffe2d9;--color-important-200:#ffcebf;--color-important-300:#ffb29b;--color-important-400:#ff8c68;--color-important-500:#ff8058;--color-important-600:#ff6f42;--color-important-700:#ff4912;--color-important-800:#c83509;--color-important-900:#611700;--color-important-50-rgb:255,248,245;--color-important-100-rgb:255,226,217;--color-important-200-rgb:255,206,191;--color-important-300-rgb:255,178,155;--color-important-400-rgb:255,140,104;--color-important-500-rgb:255,128,88;--color-important-600-rgb:255,111,66;--color-important-700-rgb:255,73,18;--color-important-800-rgb:200,53,9;--color-important-900-rgb:97,23,0;--color-special-50:#efecfa;--color-special-100:#e4dff7;--color-special-200:#c4b6ff;--color-special-300:#a38cff;--color-special-400:#8a6ff5;--color-special-500:#8166ee;--color-special-600:#7055df;--color-special-700:#513baa;--color-special-800:#452da5;--color-special-900:#30216e;--color-special-50-rgb:239,236,250;--color-special-100-rgb:228,223,247;--color-special-200-rgb:196,182,255;--color-special-300-rgb:163,140,255;--color-special-400-rgb:138,111,245;--color-special-500-rgb:129,102,238;--color-special-600-rgb:112,85,223;--color-special-700-rgb:81,59,170;--color-special-800-rgb:69,45,165;--color-special-900-rgb:48,33,110;--color-inherit:inherit;--color-transparent:transparent;--color-current:currentColor;--color-black:#000;--color-white:#fff;--color-canvas:#fff;--color-inverse:#000;--color-surface:#f6f7f9;--color-fore:#313c52;--color-focus:#9bd9ff;--color-link:#1e6aeb;--color-link-hover:#2e7fff;--color-link-visited:#1b54ad;--color-placeholder:#c4c4c4;--color-border:#e3e4e9;--color-border-strong:#d8dbde;--color-border-light:#eee;--color-black-rgb:0,0,0;--color-white-rgb:255,255,255;--color-canvas-rgb:255,255,255;--color-inverse-rgb:0,0,0;--color-surface-rgb:246,247,249;--color-fore-rgb:49,60,82;--color-focus-rgb:155,217,255;--color-link-rgb:30,106,235;--color-link-hover-rgb:46,127,255;--color-link-visited-rgb:27,84,173;--color-placeholder-rgb:196,196,196;--color-border-rgb:227,228,233;--color-border-strong-rgb:216,219,222;--color-border-light-rgb:238,238,238;--radius-none:0px;--radius-sm:.0625rem;--radius:.125rem;--radius-md:.25rem;--radius-lg:.375rem;--radius-xl:.5rem;--radius-2xl:.75rem;--radius-3xl:1rem;--radius-full:9999px;--shadow-sm:0 1px 2px 0 rgba(0,0,0,.1),0 0 2px -1px rgba(0,0,0,.05);--shadow:0 1px 4px 0 rgba(0,0,0,.15),0 1px 2px -1px rgba(0,0,0,.1);--shadow-md:0 2px 6px -1px rgba(0,0,0,.2),0 1px 4px -2px rgba(0,0,0,.15);--shadow-lg:0 5px 15px -3px rgba(0,0,0,.2),0 2px 6px -4px rgba(0,0,0,.15);--shadow-xl:0 10px 25px -5px rgba(0,0,0,.2),0 4px 10px -6px rgba(0,0,0,.15);--shadow-2xl:0 10px 50px -10px rgba(0,0,0,.4),0 8px 20px -10px rgba(0,0,0,.3);--shadow-inner:inset 0 2px 4px 0 rgba(0,0,0,.05);--shadow-none:none;--space:.25rem;--font-size-root:16px;--font-size-page:.8125rem,[object Object]}body{--btn-bg:var(--color-slate-50)}*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }html{font-size:var(--font-size-root)}body{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgba(var(--color-canvas-rgb),var(--tw-bg-opacity));color:rgba(var(--color-fore-rgb),var(--tw-text-opacity));font-size:.8125rem;line-height:1.5384615385}a{color:rgba(var(--color-link-rgb),var(--tw-text-opacity))}a,a:hover{--tw-text-opacity:1}a:hover{color:rgba(var(--color-link-hover-rgb),var(--tw-text-opacity))}a:focus-visible{outline-color:rgb(var(--color-focus-rgb));outline-offset:2px;outline-width:2px}:root{--breadcrumb-divider:"/";--breadcrumb-divider-color:var(--color-gray-500);--breadcrumb-color-active:var(--color-gray-500)}.breadcrumb{display:flex;gap:1.25rem}.breadcrumb>li{position:relative}.breadcrumb>li+li:before{color:var(--breadcrumb-divider-color);content:var(--breadcrumb-divider);display:block;left:-1.25rem;position:absolute;text-align:center;width:1.25rem}.breadcrumb>.active{color:var(--breadcrumb-color-active)}:root{--btn-radius:var(--radius);--btn-bg:var(--color-surface);--btn-border-color:var(--color-gray-300)}.btn{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);--tw-ring-color:var(--btn-border-color);align-items:center;background-color:var(--btn-bg);border-radius:var(--btn-radius);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);display:inline-flex;gap:.375rem;height:2rem;justify-content:center;padding-left:.75rem;padding-right:.75rem;white-space:nowrap}.btn-default,.btn-default:hover{color:var(--color-inherit)}.btn-link{--tw-text-opacity:1;--tw-ring-color:var(--color-transparent);color:rgba(var(--color-link-rgb),var(--tw-text-opacity));text-decoration-line:underline;text-underline-offset:2px}.btn-link:visited{color:rgba(var(--color-link-visited-rgb),var(--tw-text-opacity))}.btn-link:hover{--tw-text-opacity:1;color:rgba(var(--color-link-hover-rgb),var(--tw-text-opacity))}.btn-link{--btn-bg:transparent}.checkbox,.radio{align-items:center;cursor:pointer;display:flex;gap:.375rem}.checkbox>input[type=checkbox],.radio>input[type=radio]{accent-color:rgb(var(--color-primary-500-rgb));border-radius:var(--radius-lg)}.checkbox-primary,.radio-primary{display:flex;gap:.375rem;min-height:20px;position:relative}.checkbox-primary>input[type=checkbox],.radio-primary>input[type=radio]{inset:0;opacity:0;position:absolute}.checkbox-primary>label,.radio-primary>label{cursor:pointer;padding-left:1.25rem;position:relative}.checkbox-primary>label:after,.checkbox-primary>label:before,.radio-primary>label:after,.radio-primary>label:before{content:" ";display:block;height:.75rem;left:0;position:absolute;top:.25rem;transition-duration:.15s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);width:.75rem}.checkbox-primary>label:before{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgba(var(--color-canvas-rgb),var(--tw-bg-opacity));border-color:rgba(var(--color-gray-400-rgb),var(--tw-border-opacity));border-radius:var(--radius-sm);border-width:1px}.checkbox-primary>label:after{--tw-scale-x:.9;--tw-scale-y:.9;background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0iI2ZmZiIgZD0ibTkgMjAuNDItNi4yMS02LjIxIDIuODMtMi44M0w5IDE0Ljc3bDkuODgtOS44OSAyLjgzIDIuODNMOSAyMC40MloiLz48L3N2Zz4=);transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.checkbox-primary>input[type=checkbox]:indeterminate+label:after{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MTIiIGhlaWdodD0iNTEyIiB2aWV3Qm94PSIwIDAgMjA0OCAyMDQ4Ij48cGF0aCBmaWxsPSIjZmZmIiBkPSJNMTUzNiA1MTJ2MTAyNEg1MTJWNTEyaDEwMjR6Ii8+PC9zdmc+);background-size:cover;opacity:1}.radio-primary>label:before{--tw-border-opacity:1;border-color:rgba(var(--color-gray-400-rgb),var(--tw-border-opacity));border-radius:var(--radius-full);border-width:1px}.radio-primary>label:after{--tw-bg-opacity:1;background-color:rgba(var(--color-primary-500-rgb),var(--tw-bg-opacity));border-radius:var(--radius-full);height:.5rem;left:.125rem;opacity:0;top:.375rem;width:.5rem}.checkbox-primary>label:hover:before,.radio-primary>label:hover:before{--tw-border-opacity:1;border-color:rgba(var(--color-primary-400-rgb),var(--tw-border-opacity))}.checkbox-primary.focus>label:before,.checkbox-primary>input[type=checkbox]:focus+label:before,.radio-primary.focus>label:before,.radio-primary>input[type=radio]:focus+label:before{--tw-border-opacity:1;border-color:rgba(var(--color-primary-500-rgb),var(--tw-border-opacity));outline-color:rgb(var(--color-focus-rgb));outline-style:solid;outline-width:2px}.checkbox-primary.checked>label:before,.checkbox-primary>input[type=checkbox]:checked+label:before,.checkbox-primary>input[type=checkbox]:indeterminate+label:before{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgba(var(--color-primary-500-rgb),var(--tw-bg-opacity));border-color:rgba(var(--color-primary-500-rgb),var(--tw-border-opacity))}.radio-primary.checked>label:before,.radio-primary>input[type=radio]:checked+label:before{--tw-border-opacity:1;border-color:rgba(var(--color-primary-500-rgb),var(--tw-border-opacity))}.checkbox-primary.checked>label:after,.checkbox-primary>input[type=checkbox]:checked+label:after,.radio-primary.checked>label:after,.radio-primary>input[type=radio]:checked+label:after{opacity:1}.checkbox-primary.disabled>label,.checkbox-primary>input[type=checkbox]:disabled+label,.radio-primary.disabled>label,.radio-primary>input[type=radio]:disabled+label{--tw-grayscale:grayscale(100%);cursor:not-allowed;filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);opacity:.7;pointer-events:none}.check-list{flex-direction:column;gap:.5rem}.check-list,.check-list-inline{display:flex;padding-bottom:.375rem;padding-top:.375rem}.check-list-inline{align-items:center;-moz-column-gap:1rem;column-gap:1rem;flex-direction:row;flex-wrap:wrap;row-gap:.5rem}.switch{display:flex;gap:.375rem;min-height:20px;padding-left:2.5rem;position:relative}.switch>input[type=checkbox]{inset:0;opacity:0;position:absolute}.switch>label:after,.switch>label:before{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-content:"";background-color:rgba(var(--color-surface-rgb),var(--tw-bg-opacity));border-color:rgba(var(--color-border-light-rgb),var(--tw-border-opacity));border-radius:var(--radius-full);border-width:1px;content:var(--tw-content);height:1rem;left:0;position:absolute;top:.125rem;transition-duration:.5s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);width:2rem}.switch>label:before{--tw-shadow:var(--shadow-inner);--tw-shadow-colored:var(--shadow-inner);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);cursor:pointer}.switch>label:hover:before{--tw-border-opacity:1;border-color:rgba(var(--color-border-rgb),var(--tw-border-opacity))}.switch>label:after{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-shadow:var(--shadow);--tw-shadow-colored:var(--shadow);background-color:rgba(var(--color-canvas-rgb),var(--tw-bg-opacity));border-color:rgba(var(--color-canvas-rgb),var(--tw-border-opacity));box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);height:.75rem;left:.125rem;top:.25rem;width:.75rem}.switch>input[type=checkbox]:checked+label:before{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgba(var(--color-primary-500-rgb),var(--tw-bg-opacity));border-color:rgba(var(--color-primary-600-rgb),var(--tw-border-opacity))}.switch>input[type=checkbox]:checked+label:after{--tw-text-opacity:1;color:rgba(var(--color-primary-500-rgb),var(--tw-text-opacity));left:18px}.switch.focus>label:before,.switch>input[type=checkbox]:focus+label:before{--tw-border-opacity:1;border-color:rgba(var(--color-primary-500-rgb),var(--tw-border-opacity));outline-color:rgb(var(--color-focus-rgb));outline-style:solid;outline-width:2px}:root{--form-control-radius:var(--radius);--form-control-border:var(--color-border-strong);--form-control-focus:var(--color-primary-500);--form-control-disabled:var(--color-surface);--form-control-readonly:var(--color-surface)}input::-moz-placeholder,textarea::-moz-placeholder{--tw-placeholder-opacity:1;color:rgba(var(--color-placeholder-rgb),var(--tw-placeholder-opacity))}input::placeholder,textarea::placeholder{--tw-placeholder-opacity:1;color:rgba(var(--color-placeholder-rgb),var(--tw-placeholder-opacity))}.form-control{--tw-bg-opacity:1;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);--tw-ring-color:var(--form-control-border);background-color:rgba(var(--color-canvas-rgb),var(--tw-bg-opacity));border-radius:var(--form-control-radius);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);display:block;height:2rem;outline-color:var(--color-transparent);outline-style:solid;outline-width:1px;padding:.25rem .5rem;transition-duration:.15s;transition-property:outline,box-shadow;transition-timing-function:cubic-bezier(.4,0,.2,1);width:100%}.form-control.focus,.form-control:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);--tw-ring-color:rgba(var(--color-focus-rgb),var(--tw-ring-opacity));--tw-ring-opacity:.5;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);outline-color:var(--form-control-focus)}.form-control.disabled,.form-control[disabled]{background-color:var(--form-control-disabled);opacity:1}.form-control.readonly,.form-control[readonly]{background-color:var(--form-control-readonly)}select{-webkit-appearance:none;background-image:url(data:image/gif;base64,R0lGODlhBwAEAIAAAMvQ2////yH5BAEAAAEALAAAAAAHAAQAAAIIhA+BGWoNWSgAOw==);background-position:right 8px top 50%;background-repeat:no-repeat;background-size:8px auto;padding-right:1rem}select.form-control[multiple]{background-image:none}textarea.form-control{height:auto;min-height:32px}input[type=file].form-control{padding:.125rem}input[type=file].form-control::-webkit-file-upload-button{-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:inherit;border-style:none;cursor:pointer;height:1.75rem;padding-left:.5rem;padding-right:.5rem}input[type=file].form-control::-webkit-file-upload-button:hover{background-color:rgba(var(--color-black-rgb),.1)}.has-error .form-control,.has-error.form-control{--tw-ring-color:rgba(var(--color-danger-500-rgb),.2)}.has-error .form-control.focus,.has-error .form-control:focus,.has-error.form-control.focus,.has-error.form-control:focus{outline-color:rgb(var(--color-danger-500-rgb))}.has-warning .form-control,.has-warning.form-control{--tw-ring-color:rgba(var(--color-warning-500-rgb),.6)}.has-warning .form-control.focus,.has-warning .form-control:focus,.has-warning.form-control.focus,.has-warning.form-control:focus{outline-color:rgb(var(--color-warning-500-rgb))}.has-success .form-control,.has-success.form-control{--tw-ring-color:rgba(var(--color-success-500-rgb),.6)}.has-success .form-control.focus,.has-success .form-control:focus,.has-success.form-control.focus,.has-success.form-control:focus{outline-color:rgb(var(--color-success-500-rgb))}.form-control.size-sm{font-size:.75rem;height:1.5rem;line-height:1rem;padding-left:.5rem;padding-right:.5rem}.form-control.size-md{height:1.75rem;padding-left:.5rem;padding-right:.5rem}.form-control.size-lg{font-size:1rem;height:2.5rem;line-height:1.5rem;padding-left:1rem;padding-right:1rem}:root{--input-group-addon-bg:var(--color-gray-100)}.input-group{align-items:stretch;display:flex}.input-group>.form-control,.input-group>.input-control{flex:1 1 auto;z-index:1}.input-group-addon{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);--tw-ring-color:var(--form-control-border);align-items:center;background-color:var(--input-group-addon-bg);border-radius:var(--form-control-radius);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);display:flex;flex:none;height:2rem;padding-left:.5rem;padding-right:.5rem;z-index:0}.input-group-control{flex:1 1 auto}.input-group>*+*,.input-group>*+.input-group-control>*{border-bottom-left-radius:var(--radius-none);border-top-left-radius:var(--radius-none)}.input-group>.input-group-control:not(:last-child)>*,.input-group>:not(:last-child){border-bottom-right-radius:var(--radius-none);border-top-right-radius:var(--radius-none)}.input-group .btn:focus-visible,.input-group .form-control:focus{z-index:2}:root{--form-tip-color:var(--color-slate-600);--form-label-color:var(--color-slate-700);--form-grid-label-width:6rem}.form>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.5rem*var(--tw-space-y-reverse));margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)))}.form-label{align-items:center;color:var(--form-label-color);display:flex;flex-direction:row;height:2rem;overflow:hidden;position:relative;text-overflow:ellipsis;white-space:nowrap}.form-label.required:after{--tw-translate-y:.125rem;--tw-scale-x:1.25;--tw-scale-y:1.25;--tw-text-opacity:1;color:rgba(var(--color-danger-500-rgb),var(--tw-text-opacity));content:"*";display:inline-block;margin-left:.25rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.form-tip{color:var(--form-tip-color);margin-top:.25rem}.has-error .form-tip{--tw-text-opacity:1;color:rgba(var(--color-danger-500-rgb),var(--tw-text-opacity))}.has-warning .form-tip{--tw-text-opacity:1;color:rgba(var(--color-warning-500-rgb),var(--tw-text-opacity))}.has-success .form-tip{--tw-text-opacity:1;color:rgba(var(--color-success-500-rgb),var(--tw-text-opacity))}.form-grid>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1rem*var(--tw-space-y-reverse));margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)))}.form-row{align-items:flex-start;display:flex;flex-direction:row}.form-grid .form-group{align-items:flex-start;display:flex;flex:1 1 auto;flex-direction:row;flex-wrap:wrap;min-height:32px;padding-left:var(--form-grid-label-width);position:relative}.form-grid .form-group.no-label{padding-left:0}.form-grid .form-group.no-label>.check-list-inline{padding-left:1rem;padding-right:1rem}.form-grid .form-label{justify-content:flex-end;left:0;padding-left:1rem;padding-right:.5rem;position:absolute;top:0;width:var(--form-grid-label-width)}.form-grid .form-label.required:after{margin-left:0;margin-right:.25rem;order:-9999}.form-grid .form-tip{width:100%}.form-grid .form-tip,.form-grid .input-control,.form-grid .input-group{flex:1 1 auto}.form .form-group-wrapper,.form-grid .form-group-wrapper{flex:1 1 auto;width:100%;z-index:1}.form fieldset>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.5rem*var(--tw-space-y-reverse));margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)))}.form fieldset{padding-bottom:1rem;padding-left:1rem}.form-grid fieldset>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1rem*var(--tw-space-y-reverse));margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)))}.form legend{--tw-border-opacity:1;border-bottom-color:rgba(var(--color-primary-100-rgb),var(--tw-border-opacity));border-bottom-width:1px;display:flex;justify-content:flex-start;margin-left:-1rem;width:100%;width:calc(100% + 1rem)}.form-title{align-items:center;background-color:rgba(var(--color-primary-50-rgb),.5);display:flex;font-weight:700;height:1.75rem;padding-left:.75rem;padding-right:.75rem}:root{--input-control-fix-width-sm:2rem;--input-control-fix-width:4.375rem;--input-control-fix-width-lg:6.75rem}.input-control{--input-control-prefix:8px;--input-control-suffix:8px;position:relative}.input-control-prefix,.input-control-suffix{align-items:center;display:flex;height:100%;left:0;opacity:.5;padding-left:.5rem;padding-right:.5rem;position:absolute;top:0;white-space:nowrap;width:var(--input-control-prefix)}.input-control-suffix{justify-content:flex-end;left:auto;right:0;width:var(--input-control-suffix)}.form-control:focus+.input-control-prefix,.form-control:focus+.input-control-suffix{opacity:1}.input-control>.form-control{padding-left:var(--input-control-prefix);padding-right:var(--input-control-suffix)}.input-control>select.form-control{background-position-x:calc(100% - var(--input-control-suffix) - 8px);padding-right:calc(var(--input-control-suffix) + 20px)}.has-prefix{--input-control-prefix:var(--input-control-fix-width)}.has-suffix{--input-control-suffix:var(--input-control-fix-width)}.has-prefix-sm{--input-control-prefix:var(--input-control-fix-width-sm)}.has-suffix-sm{--input-control-suffix:var(--input-control-fix-width-sm)}.has-prefix-lg{--input-control-prefix:var(--input-control-fix-width-lg)}.has-suffix-lg{--input-control-suffix:var(--input-control-fix-width-lg)}.has-prefix-icon{--input-control-prefix:32px}.has-suffix-icon{--input-control-suffix:32px}.input-control.has-prefix-icon>.input-control-prefix,.input-control.has-suffix-icon>.input-control-suffix{justify-content:center;width:2rem}.input-control.size-sm>.form-control,.input-control.size-sm>.input-control-prefix,.input-control.size-sm>.input-control-suffix{font-size:.75rem;line-height:1rem}.input-control.size-lg>.form-control,.input-control.size-lg>.input-control-prefix,.input-control.size-lg>.input-control-suffix{font-size:1rem;line-height:1.5rem}:root{--label-bg:var(--color-gray-50);--label-border-color:var(--color-gray-500);--label-color:var(--color-gray-500);--label-radius:var(--radius)}.label{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);--tw-ring-color:var(--label-border-color);align-items:center;background-color:var(--label-bg);border-radius:var(--label-radius);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);color:var(--label-color);display:inline-flex;font-size:.75rem;height:1.25rem;line-height:1rem;padding-left:.25rem;padding-right:.25rem;white-space:pre-line}.label.size-lg{font-size:.8125rem;height:1.5rem;line-height:1.25rem;padding-left:.5rem;padding-right:.5rem}.label.size-sm{height:1rem}.label-dot{aspect-ratio:1/1;border-radius:var(--radius-full);height:.5rem;padding-left:0;padding-right:0}:root{--menu-bg:var(--color-canvas);--menu-hover-bg:var(--color-primary-500);--menu-hover-color:var(--color-canvas);--menu-active-bg:var(--color-primary-50);--menu-active-color:var(--color-primary-500);--menu-icon-opacity:.5;--menu-icon-margin:1.75rem;--menu-min-width:3rem;--menu-heading-color:var(--color-gray-500)}.menu{background:var(--menu-bg);min-width:var(--menu-min-width);padding:.25rem}.menu-item>a{align-items:center;border-radius:var(--radius);color:var(--color-inherit);cursor:pointer;display:flex;gap:.25rem;justify-content:space-between;margin:.25rem;overflow:hidden;padding:.125rem .5rem;position:relative;text-overflow:ellipsis;transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);white-space:nowrap}.menu-item>.active{background:var(--menu-active-bg);color:var(--menu-active-color)}.menu-item>a.hover,.menu-item>a:hover{background:var(--menu-hover-bg);color:var(--menu-hover-color)}.menu-item>a>.text{flex:1 1 auto}.menu-divider{--tw-bg-opacity:1;background-color:rgba(var(--color-border-rgb),var(--tw-bg-opacity));height:1px;margin:.5rem}.menu-heading{align-items:center;color:var(--menu-heading-color);display:flex;font-size:.75rem;font-weight:700;height:1.5rem;line-height:1rem;padding-left:.5rem;padding-right:.5rem}.has-icons>.menu-item>a,.menu-item.has-icon>a{padding-left:var(--menu-icon-margin)}.has-icons>.menu-item>a>.icon:first-child,.menu-item.has-icon>a>.icon:first-child{align-items:center;display:flex;height:1.5rem;justify-content:center;left:0;opacity:var(--menu-icon-opacity);position:absolute;top:0;width:1.5rem}.menu-nested{--menu-indent:1.5rem}.has-nested-menu>.menu-nested{--tw-shadow:var(--shadow-none);--tw-shadow-colored:var(--shadow-none);border-style:none;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);margin-left:var(--menu-indent)}.menu-nested .menu-toggle-icon{left:.25rem;position:absolute}.menu .menu-nested{margin-top:-.5rem}.menu-nested.has-nested-items>.menu-item>a{padding-left:1rem}.menu-nested.has-nested-items.has-icons>.menu-item>a{padding-left:2.25rem}.menu-nested.has-nested-items.has-icons>.menu-item>a>.icon:first-child{left:.75rem}:root{--alert-bg:var(--color-surface)}.alert{align-items:center;background-color:var(--alert-bg);border-radius:var(--radius);display:flex;gap:.75rem;padding:.75rem 1rem}.alert-content{display:flex;flex:1 1 auto;flex-direction:column;gap:.75rem}.alert-close{align-self:flex-start;flex:none;margin-bottom:-.5rem;margin-right:-.5rem;margin-top:-.5rem}.alert-link{color:var(--color-inherit);font-weight:700}.alert-link:hover{color:var(--color-inherit);text-decoration-line:underline}.alert-icon{margin-left:.5rem;margin-right:1rem}.alert-heading{font-weight:700;margin:0}.alert-text{white-space:pre-line}.alert-actions{align-items:center;display:flex;gap:.5rem}.messagers{align-items:flex-end;display:flex;flex-direction:column;inset:0;justify-content:flex-end;padding:1rem;pointer-events:none;position:absolute;z-index:1900}.messagers-top-left,.messagers-top-right{justify-content:flex-start}.messagers-bottom-left,.messagers-top-left{align-items:flex-start}.messagers-bottom,.messagers-center,.messagers-top{align-items:center}.messagers-top,.messagers-top-left,.messagers-top-right{justify-content:flex-start}.messagers-center{justify-content:center}.messager{--tw-text-opacity:1;--tw-shadow:var(--shadow-xl);--tw-shadow-colored:var(--shadow-xl);--tw-backdrop-blur:blur(8px);-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);background-color:rgba(var(--color-inverse-rgb),.8);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);color:rgba(var(--color-canvas-rgb),var(--tw-text-opacity));pointer-events:auto;transition-duration:.3s}.toolbar{align-items:center;display:flex;position:relative}.toolbar-divider{--tw-bg-opacity:1;background-color:rgba(var(--color-border-rgb),var(--tw-bg-opacity));height:1rem;margin-left:.5rem;margin-right:.5rem;width:1px}.toolbar-space{flex:1 1 auto;width:1rem}.toolbar>.dropdown{align-items:center;display:flex;position:relative}.btn-group{display:flex;gap:1px}.btn-group>.btn:focus-within,.btn-group>.btn:hover{z-index:1}.btn-group>.btn.disabled,.btn-group>.btn:disabled{z-index:-1}.btn-group>.btn:not(:first-child){border-bottom-left-radius:var(--radius-none);border-left-color:rgba(var(--color-canvas-rgb),.5);border-left-width:1px;border-top-left-radius:var(--radius-none)}.btn-group>.btn:not(:last-child){border-bottom-right-radius:var(--radius-none);border-top-right-radius:var(--radius-none)}.btn.size-xs{height:1.25rem;padding-left:.25rem;padding-right:.25rem}.btn.size-sm,.btn.size-xs{font-size:.75rem;line-height:1rem}.btn.size-sm{height:1.5rem}.btn.size-md,.btn.size-sm{padding-left:.5rem;padding-right:.5rem}.btn.size-md{height:1.75rem}.btn.size-lg{font-size:1rem;height:2.5rem;line-height:1.5rem;padding-left:1rem;padding-right:1rem}.btn.size-xl{font-size:1.125rem;height:3rem;line-height:1.75rem;padding-left:1.25rem;padding-right:1.25rem}.btn.square{aspect-ratio:1/1;gap:.125rem;padding-left:0;padding-right:0}.btn.btn-caret{padding-left:.25rem;padding-right:.25rem}.btn.btn-wide{min-width:80px}.btn-group.size-xs .btn{height:1.25rem;padding-left:.25rem;padding-right:.25rem}.btn-group.size-sm .btn,.btn-group.size-xs .btn{font-size:.75rem;line-height:1rem}.btn-group.size-sm .btn{height:1.5rem;padding-left:.5rem;padding-right:.5rem}.btn-group.size-lg .btn{font-size:1rem;height:2.5rem;line-height:1.5rem;padding-left:1rem;padding-right:1rem}.btn-group.size-xl .btn{font-size:1.125rem;height:3rem;line-height:1.75rem;padding-left:1.25rem;padding-right:1.25rem}.btn-group.rounded-none .btn{border-radius:var(--radius-none)}.btn-group.rounded-sm .btn{border-radius:var(--radius-sm)}.btn-group.rounded .btn{border-radius:var(--radius)}.btn-group.rounded-md .btn{border-radius:var(--radius-md)}.btn-group.rounded-lg .btn{border-radius:var(--radius-lg)}.btn-group.rounded-xl .btn{border-radius:var(--radius-xl)}.btn-group.circle .btn{border-radius:var(--radius-full)}:root{--progress-radius:var(--radius);--progress-striped-size:40px;--progress-bg:var(--color-surface);--progress-bar-color:var(--color-primary-500)}.progress{background:var(--progress-bg);border-radius:var(--progress-radius);display:flex;height:1.25rem}.progress-bar{background:var(--progress-bar-color);height:100%}.progress-striped>.progress-bar{background-image:linear-gradient(45deg,rgba(var(--color-canvas-rgb),.15) 25%,transparent 25%,transparent 50%,rgba(var(--color-canvas-rgb),.15) 50%,rgba(var(--color-canvas-rgb),.15) 75%,transparent 75%,transparent);background-size:var(--progress-striped-size) var(--progress-striped-size)}.progress>.progress-bar:first-child{border-bottom-left-radius:inherit;border-top-left-radius:inherit}.progress>.progress-bar:last-child{border-bottom-right-radius:inherit;border-top-right-radius:inherit}.progress.active .progress-bar{animation:progress-bar-stripes 2s linear infinite}@keyframes progress-bar-stripes{0%{background-position:40px 0}to{background-position:0 0}}::-webkit-scrollbar{height:var(--scrollbar-size);width:var(--scrollbar-size)}::-webkit-scrollbar-track{box-shadow:var(--scrollbar-shadow);-webkit-transition:background-color var(--scrollbar-duration);transition:background-color var(--scrollbar-duration)}::-webkit-scrollbar-track:hover,:hover::-webkit-scrollbar-track{background:var(--scrollbar-bg)}::-webkit-scrollbar-thumb{background:var(--scrollbar-bar-bg);border-radius:var(--scrollbar-radius);min-height:var(--scrollbar-size);-webkit-transition:var(--scrollbar-duration);transition:var(--scrollbar-duration);-webkit-transition-property:background-color;transition-property:background-color}::-webkit-scrollbar-thumb:hover{background:var(--scrollbar-hover-bg)}::-webkit-scrollbar-thumb:active{background:var(--scrollbar-drag-bg)}.scrollbar-thin::-webkit-scrollbar{height:calc(var(--scrollbar-size)/2);width:calc(var(--scrollbar-size)/2)}.scrollbar-hover::-webkit-scrollbar,.scrollbar-hover::-webkit-scrollbar-thumb,.scrollbar-hover::-webkit-scrollbar-track{visibility:hidden}.scrollbar-hover:hover::-webkit-scrollbar,.scrollbar-hover:hover::-webkit-scrollbar-thumb,.scrollbar-hover:hover::-webkit-scrollbar-track{visibility:visible}.article-h1{font-size:1rem;line-height:1.5rem}.article-h1,.article-h2{color:var(--color-slate-900);font-weight:600}.article-h2{font-size:14px;line-height:1.25rem}.article-h3{color:var(--color-slate-800);font-weight:600}.article-h3,.article-h4{font-size:.8125rem;line-height:1.25rem}.article-h4{color:var(--color-slate-600)}.article-content{color:var(--color-slate-800);font-size:.8125rem;line-height:1.25rem}.form{position:relative}.form .input-group:not(.input-group-segment)>*+*,.form .input-group:not(.input-group-segment)>:not(:last-child){border-radius:var(--form-control-radius)}.form .input-group:not(.input-group-segment) .input-group-addon{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.form-actions{gap:1rem;justify-content:center}.form-actions .btn{min-width:96px}.form-control-static{min-height:32px;padding-bottom:.375rem;padding-top:.375rem}@font-face{font-family:ZentaoIcon;font-style:normal;font-weight:400;src:url(./@zentao/icons/ZentaoIcon.eot);src:url(./@zentao/icons/ZentaoIcon.woff) format("woff"),url(./@zentao/icons/ZentaoIcon.ttf) format("truetype"),url(./@zentao/icons/ZentaoIcon.svg#regular) format("svg")}.icon,[class*=" icon-"],[class^=icon-]{speak:none;display:inline-block;font-family:ZentaoIcon;font-size:14px;font-style:normal;font-variant:normal;font-weight:400;line-height:1;text-transform:none}.icon:before{display:inline-block;min-width:14px;text-align:center}.icon-sm:before{font-size:3/4em}.icon-lg:before{font-size:4/3em;vertical-align:-10%}.icon-2x{font-size:28px}.icon-3x{font-size:42px}.icon-4x{font-size:56px}.icon-5x{font-size:70px}.icon-zentao:before{content:""}.icon-zentao-alt:before{content:""}.icon-help:before{content:""}.icon-download:before,.icon-import:before{content:""}.icon-export:before{content:""}.icon-lightbulb:before{content:""}.icon-close:before{content:""}.icon-check:before{content:""}.icon-minus:before{content:""}.icon-expand-alt:before{content:""}.icon-collapse-alt:before{content:""}.icon-fullscreen:before{content:""}.icon-star-empty:before{content:""}.icon-star:before{content:""}.icon-exclamation-sign:before{content:""}.icon-info-sign:before{content:""}.icon-flag:before{content:""}.icon-check-circle:before{content:""}.icon-check-sign:before{content:""}.icon-chart-pie:before{content:""}.icon-history:before{content:""}.icon-pencil:before{content:""}.icon-search:before{content:""}.icon-restart:before{content:""}.icon-cog:before{content:""}.icon-chart-line:before{content:""}.icon-bar-chart:before,.icon-chart-bar:before{content:""}.icon-exchange:before{content:""}.icon-severity:before{content:""}.icon-book:before{content:""}.icon-treemap-alt:before{content:""}.icon-severity-solid:before{content:""}.icon-chat-line:before{content:""}.icon-stack:before{content:""}.icon-cube:before{content:""}.icon-minus-sign:before{content:""}.icon-bars-sign:before{content:""}.icon-chat:before,.icon-message:before{content:""}.icon-more:before{content:""}.icon-certificate:before{content:""}.icon-bell:before{content:""}.icon-columns:before{content:""}.icon-envelope-o:before{content:""}.icon-unfold-all:before{content:""}.icon-fold-all:before{content:""}.icon-bars:before{content:""}.icon-cards-view:before{content:""}.icon-ellipsis-v:before{content:""}.icon-spinner-indicator:before{content:""}.icon-up-circle:before{content:""}.icon-right-circle:before{content:""}.icon-down-circle:before{content:""}.icon-left-circle:before{content:""}.icon-angle-double-right:before{content:""}.icon-angle-down:before{content:""}.icon-angle-left:before{content:""}.icon-angle-right:before{content:""}.icon-angle-top:before{content:""}.icon-first-page:before{content:""}.icon-last-page:before{content:""}.icon-caret-down:before{content:""}.icon-caret-up:before{content:""}.icon-caret-left:before{content:""}.icon-caret-right:before{content:""}.icon-sort:before{content:""}.icon-sort-down:before{content:""}.icon-sort-up:before{content:""}.icon-arrow-up:before{content:""}.icon-arrow-down:before{content:""}.icon-arrow-left:before{content:""}.icon-arrow-right:before{content:""}.icon-chevron-left:before{content:""}.icon-chevron-right:before{content:""}.icon-chevron-double-up:before{content:""}.icon-chevron-double-down:before{content:""}.icon-folder-account:before{content:""}.icon-folder-move:before{content:""}.icon-folder-plus:before{content:""}.icon-folder-upload:before{content:""}.icon-folder-star:before{content:""}.icon-folder-edit:before{content:""}.icon-folder-download:before{content:""}.icon-folder-outline:before{content:""}.icon-folder:before{content:""}.icon-folder-o:before{content:""}.icon-folder-open-o:before{content:""}.icon-folder-open:before{content:""}.icon-color:before{content:""}.icon-paper-clip:before{content:""}.icon-text:before{content:""}.icon-share:before{content:""}.icon-format-list-bulleted:before{content:""}.icon-format-bold:before{content:""}.icon-format-header-pound:before{content:""}.icon-format-italic:before{content:""}.icon-format-list-numbers:before{content:""}.icon-format-quote-close:before{content:""}.icon-image:before{content:""}.icon-table-large:before{content:""}.icon-aiux:before{content:""}.icon-qc:before{content:""}.icon-qc-q:before{content:""}.icon-qc-c:before{content:""}.icon-sonarqube:before{content:""}.icon-college:before{content:""}.icon-ztool:before{content:""}.icon-contacts:before{content:""}.icon-chats:before{content:""}.icon-home:before,.icon-menu-my:before{content:""}.icon-program:before{content:""}.icon-lightbulb-alt:before,.icon-product:before{content:""}.icon-project:before,.icon-rocket:before{content:""}.icon-run:before{content:""}.icon-test:before{content:""}.icon-devops:before,.icon-infinite:before{content:""}.icon-ops:before{content:""}.icon-doc:before,.icon-menu-doc:before{content:""}.icon-statistic:before{content:""}.icon-menu-backend:before{content:""}.icon-assets:before,.icon-diamond:before{content:""}.icon-feedback:before{content:""}.icon-flow:before{content:""}.icon-oa:before{content:""}.icon-more-circle:before{content:""}.icon-controls:before{content:""}.icon-account:before{content:""}.icon-about:before,.icon-info:before{content:""}.icon-backend:before,.icon-cog-outline:before{content:""}.icon-exit:before{content:""}.icon-theme:before{content:""}.icon-globe:before,.icon-lang:before{content:""}.icon-seal:before{color:#ff8936;content:""}.icon-menu-arrow-left:before{content:""}.icon-menu-arrow-right:before{content:""}.icon-add-directory:before{content:""}.icon-design:before{content:""}.icon-download-alt:before{content:""}.icon-blame:before{content:""}.icon-draft-edit:before{content:""}.icon-sub-review-user:before{content:""}.icon-sub-review:before{content:""}.icon-ztf:before{content:""}.icon-save:before{content:""}.icon-list-box:before{content:""}.icon-usecase:before{content:""}.icon-code:before{content:""}.icon-summary:before{content:""}.icon-more-alt:before{content:""}.icon-customer:before{content:""}.icon-ipd:before{content:""}.icon-wiki-lib:before{content:""}.icon-annex-lib:before{content:""}.icon-interface-lib:before{content:""}.icon-has-authority-pack:before{content:""}.icon-without-authority-pack:before{content:""}.icon-data-structure:before{content:""}.icon-waterfallplus:before{content:""}.icon-agileplus:before{content:""}.icon-horn:before{content:""}.icon-resume:before{content:""}.icon-mirror:before{content:""}.icon-remote:before{content:""}.icon-moon:before{content:""}.icon-ticket:before{content:""}.icon-gantt-alt:before{content:""}.icon-tree:before{content:""}.icon-list:before{content:""}.icon-gantt:before{content:""}.icon-group-view:before{content:""}.icon-inherit-space:before{content:""}.icon-card-archive:before{content:""}.icon-col-archive:before{content:""}.icon-col-add-right:before{content:""}.icon-col-add-left:before{content:""}.icon-col-split:before{content:""}.icon-waterfall:before{content:""}.icon-manual:before{content:""}.icon-kanban:before{content:""}.icon-lane:before{content:""}.icon-snap-house:before{content:""}.icon-wrench:before{content:""}.icon-desktop:before{content:""}.icon-back-circle:before{content:""}.icon-back:before{content:""}.icon-shield:before{content:""}.icon-meh:before{content:""}.icon-frown:before{content:""}.icon-smile:before{content:""}.icon-unlock-solid:before{content:""}.icon-lock-solid:before{content:""}.icon-ver:before{content:""}.icon-publish:before,.icon-send:before{content:""}.icon-tag:before{content:""}.icon-tag-lock:before{content:""}.icon-code-fork:before{content:""}.icon-branch-lock:before{content:""}.icon-groups:before{content:""}.icon-thumbs-up:before{content:""}.icon-thumbs-down:before{content:""}.icon-thumbs-up-solid:before{content:""}.icon-thumbs-down-solid:before{content:""}.icon-hash:before,.icon-version:before{content:""}.icon-p-square:before{content:""}.icon-video-play:before{content:""}.icon-plus-solid-circle:before{content:""}.icon-minuse-solid-circle:before{content:""}.icon-s:before{content:""}.icon-c:before{content:""}.icon-t:before{content:""}.icon-guide:before{content:""}.icon-todo:before{content:""}.icon-plus:before{content:""}.icon-side-left:before{content:""}.icon-side-right:before{content:""}.icon-fullscreen-exit:before{content:""}.icon-alert:before{content:""}.icon-undo:before{content:""}.icon-redo:before{content:""}.icon-swap:before{content:""}.icon-chat-solid:before{content:""}.icon-clock:before{content:""}.icon-cost:before{content:""}.icon-pencil-alt:before{content:""}.icon-size-height:before{content:""}.icon-file-log:before{content:""}.icon-rich-text:before{content:""}.icon-markdown:before{content:""}.icon-excel:before{content:""}.icon-text-link:before{content:""}.icon-ppt:before{content:""}.icon-word:before{content:""}.icon-doc-lib:before{content:""}.icon-file-empty:before,.icon-file:before{content:""}.icon-file-text:before{content:""}.icon-file-alt:before{content:""}.icon-file-text-alt:before{content:""}.icon-file-pdf:before{content:""}.icon-file-word:before{content:""}.icon-file-excel:before{content:""}.icon-file-powerpoint:before{content:""}.icon-file-image:before{content:""}.icon-file-archive:before{content:""}.icon-file-audio:before{content:""}.icon-file-video:before{content:""}.icon-file-code:before{content:""}.icon-menu-collapse:before{content:""}.icon-menu-expand:before{content:""}.icon-group:before,.icon-menu-users:before,.icon-persons:before,.icon-team:before{content:""}.icon-estimate:before{content:""}.icon-sprint:before{content:""}.icon-shield-check:before{content:""}.icon-ok:before{content:""}.icon-printer:before{content:""}.icon-bullhorn:before{content:""}.icon-person:before{content:""}.icon-fields:before{content:""}.icon-trigger:before{content:""}.icon-layout:before{content:""}.icon-audit:before{content:""}.icon-ban-circle:before,.icon-cancel:before{content:""}.icon-eye:before{content:""}.icon-eye-off:before{content:""}.icon-unlock:before{content:""}.icon-lock:before,.icon-private:before{content:""}.icon-move:before{content:""}.icon-hand-right:before{content:""}.icon-checked:before{content:""}.icon-off:before{content:""}.icon-play:before,.icon-start:before{content:""}.icon-time:before{content:""}.icon-edit:before{content:""}.icon-trash:before{content:""}.icon-link:before{content:""}.icon-unlink:before{content:""}.icon-bug:before{content:""}.icon-list-alt:before{content:""}.icon-alter:before,.icon-change:before{content:""}.icon-glasses:before,.icon-review:before{content:""}.icon-sitemap:before,.icon-testcase:before{content:""}.icon-pluses:before{content:""}.icon-report-list:before{content:""}.icon-active:before,.icon-magic:before{content:""}.icon-treemap:before{content:""}.icon-confirm:before{content:""}.icon-split:before{content:""}.icon-calendar:before,.icon-delay:before{content:""}.icon-pause:before{content:""}.icon-ban:before{content:""}.icon-plus-bold:before{content:""}.icon-copy:before{content:""}.icon-refresh:before{content:""}.icon-diff:before{content:""}.status-active,.status-asked,.status-normal,.status-unconfirmed,.status-wait{color:#313c52}.status-active.status-issue,.status-checking,.status-commenting,.status-confirmed,.status-doing{color:#ff6f42}.status-blocked,.status-hangup,.status-pause,.status-suspended{color:#b89664}.status-clarify,.status-draft{color:#8166ee}.status-noreview,.status-reviewing,.status-wait.status-testcase{color:#18a6fd}.status-active.status-risk,.status-changed,.status-changing,.status-fail{color:#fb2b2b}.status-checked,.status-done,.status-pass,.status-replied,.status-resolved,.status-success{color:#0dbb7d}.status-cancel,.status-canceled,.status-investigate{color:#838a9d}.status-canceled,.status-closed,.status-testtask.status-done{color:#9ea3b0}.pri,[class*=" pri-"],[class^=pri-]{--tw-text-opacity:1;border-color:var(--color-current);border-radius:var(--radius-full);border-width:1px;color:rgba(var(--color-gray-400-rgb),var(--tw-text-opacity));display:inline-block;font-size:.75rem;height:1rem;line-height:1rem;line-height:14px;max-width:54px;min-width:16px;overflow:hidden;padding-left:.125rem;padding-right:.125rem;text-align:center;white-space:nowrap}.pri-1{color:rgb(255 73 18/var(--tw-text-opacity))}.pri-1,.pri-2{--tw-text-opacity:1}.pri-2{color:rgba(var(--color-warning-600-rgb),var(--tw-text-opacity))}.pri-3{color:rgb(59 130 246/var(--tw-text-opacity))}.pri-3,.pri-4{--tw-text-opacity:1}.pri-4{color:rgb(149 211 224/var(--tw-text-opacity))}.severity{--tw-text-opacity:1;color:rgba(var(--color-gray-400-rgb),var(--tw-text-opacity));display:inline-block;font-size:.75rem;height:1rem;line-height:1rem;line-height:14px;max-width:54px;min-width:16px;overflow:hidden;padding-left:.125rem;padding-right:.125rem;position:relative;text-align:center;white-space:nowrap}.severity:before{--tw-content:attr(data-severity);background-color:var(--color-current);background-repeat:no-repeat;content:var(--tw-content);height:100%;left:0;-webkit-mask:url('data:image/svg+xml;charset=utf-8,');mask:url('data:image/svg+xml;charset=utf-8,');-webkit-mask-size:100% 100%;mask-size:100% 100%;position:absolute;top:0;width:100%;z-index:0}.severity:after,.severity:before{display:inline-block}.severity:after{--tw-scale-x:.75;--tw-scale-y:.75;content:attr(data-severity);line-height:20px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.severity[data-severity="1"]{--tw-text-opacity:1;color:rgb(185 28 28/var(--tw-text-opacity))}.severity[data-severity="2"]{--tw-text-opacity:1;color:rgb(249 115 22/var(--tw-text-opacity))}.severity[data-severity="3"]{--tw-text-opacity:1;color:rgb(250 174 26/var(--tw-text-opacity))}.severity[data-severity="4"]{--tw-text-opacity:1;color:rgb(184 150 100/var(--tw-text-opacity))}.severity[data-severity="5"]{--tw-text-opacity:1;color:rgb(158 163 176/var(--tw-text-opacity))}.severity-label{background-color:var(--color-transparent)}.severity-label:after,.severity-label:before{--tw-content:none;content:var(--tw-content)}.risk-high{color:rgb(220 38 38/var(--tw-text-opacity))}.risk-high,.risk-middle{--tw-text-opacity:1}.risk-middle{color:rgb(234 179 8/var(--tw-text-opacity))}.nav-feature{--nav-active-bg:rgba(var(--color-primary-800-rgb),.07)}.nav-feature .nav-checkbox>.checkbox,.nav-feature .nav-checkbox>.checkbox-primary,.nav-feature .nav-item>a{align-items:center;border-radius:var(--radius);height:2rem;padding-left:.625rem;padding-right:.625rem}.nav-feature .nav-item>a>.icon{--tw-text-opacity:1;color:rgba(var(--color-primary-500-rgb),var(--tw-text-opacity))}:root{--avatar-radius:12.5%;--avatar-bg:var(--color-surface)}.avatar{align-items:center;aspect-ratio:1/1;background:var(--avatar-bg);border-radius:var(--avatar-radius);display:inline-flex;justify-content:center;overflow:hidden;width:2rem}.avatar>img{height:100%;margin:0;-o-object-fit:cover;object-fit:cover;width:100%}.avatar.size-xs{width:1.25rem}.avatar.size-sm,.avatar.size-xs{font-size:.75rem;line-height:1rem}.avatar.size-sm{width:1.5rem}.avatar.size-lg{font-size:1.5rem;line-height:2rem;width:3rem}.avatar.size-xl{font-size:2.25rem;line-height:2.5rem;width:5rem}.avatar-group{display:flex;gap:.625rem}.avatar-group>.avatar{box-shadow:0 0 0 1px var(--color-canvas)}.avatar-group>*+*{margin-left:-1rem}.avatar-group.size-xs>*+*{margin-left:-.75rem}.avatar-group.size-sm>*+*{margin-left:-.875rem}.avatar-group.size-lg>*+*{margin-left:-1.25rem}.avatar-group.size-xl>*+*{margin-left:-1.5rem}.color-picker-heading{align-items:center;font-weight:700;justify-content:space-between;margin-bottom:-.25rem}.color-picker-heading,.color-picker-row{display:flex;flex-direction:row;padding:.5rem}.color-picker-row{flex-wrap:wrap;gap:.5rem}.color-picker-item{--tw-text-opacity:1;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(var(--tw-ring-offset-width)) var(--tw-ring-color);align-items:center;border-radius:var(--radius-full);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);color:rgba(var(--color-canvas-rgb),var(--tw-text-opacity));display:flex;height:1.25rem;justify-content:center;padding-left:.125rem;padding-right:.125rem;width:1.25rem}.pick-container{left:0;pointer-events:none;position:absolute;top:0;z-index:1600}.pick-pop{display:flex;flex-direction:column;opacity:0;pointer-events:auto;position:absolute;transition-duration:.15s;transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);z-index:1200}.pick-pop.in{opacity:1}.date-picker-menu .mini-calendar{margin-top:-.75rem}.date-pick-menu-month,.date-pick-menu-years{display:flex;flex-direction:row;flex-wrap:wrap;gap:1px;max-height:237px;padding-bottom:.5rem;padding-left:.5rem;padding-right:.5rem}.date-pick-menu-years>.btn{width:2.5rem}.date-pick-menu-years>.btn.is-current{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgba(var(--color-primary-100-rgb),var(--tw-bg-opacity));color:rgba(var(--color-primary-500-rgb),var(--tw-text-opacity))}.date-pick-menu-month>.btn.active,.date-pick-menu-years>.btn.active{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgba(var(--color-primary-500-rgb),var(--tw-bg-opacity));color:rgba(var(--color-canvas-rgb),var(--tw-text-opacity))}.date-pick-menu-month>.btn{width:3rem}.date-picker-menu-footer{border-top-width:1px;display:flex;flex-direction:row;padding:.25rem}.date-picker-menu-footer>.toolbar{flex:1 1 auto;justify-content:center}.date-picker-menu>.menu{border-right-width:1px}.date-picker-menu .menu-item{--tw-text-opacity:1;color:rgba(var(--color-primary-500-rgb),var(--tw-text-opacity))}.time-picker-menu{max-height:inherit}.time-picker-menu .menu-item>a{justify-content:center}.mini-calendar{padding:.5rem}.mini-calendar>.row>.col{align-items:center;justify-content:center;width:14.2857%}.mini-calendar-day{height:2rem}.mini-calendar-day>a{width:2rem}.mini-calendar-day.is-weekend>a{--tw-text-opacity:1;color:rgba(var(--color-gray-500-rgb),var(--tw-text-opacity))}.mini-calendar-day.active>a,.mini-calendar-day.is-today>a{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgba(var(--color-primary-100-rgb),var(--tw-bg-opacity));color:rgba(var(--color-primary-500-rgb),var(--tw-text-opacity))}.mini-calendar-day.selected>a{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgba(var(--color-primary-500-rgb),var(--tw-bg-opacity));color:rgba(var(--color-canvas-rgb),var(--tw-text-opacity))}.mini-calendar-day.is-out-month{opacity:.5}.i-calendar{border-radius:var(--radius);display:inline-block;height:.79em;margin-top:.16em;position:relative;width:1em}.i-calendar,.i-calendar:after,.i-calendar:before{border-color:var(--color-current);border-width:.08em}.i-calendar:after,.i-calendar:before{--tw-content:"";content:var(--tw-content);position:absolute}:root{--modal-radius:var(--radius-lg);--modal-bg:rgba(0,0,0,.4);--modal-sm:37.5rem;--modal-base:50rem;--modal-lg:75rem;--modal-xl:90rem}.modal{align-items:center;background-color:var(--modal-bg);display:none;inset:0;justify-content:center;overflow:hidden;position:fixed;z-index:1500}.modal.load-indicator:before{background-color:var(--color-inherit);transition-property:none}.modal.loading:after{--tw-text-opacity:1;color:rgba(var(--color-canvas-rgb),var(--tw-text-opacity))}.modal.show{display:flex}.modal-no-backdrop{background-color:var(--color-transparent);pointer-events:none}.modal-dialog{--tw-bg-opacity:1;--tw-shadow:var(--shadow-2xl);--tw-shadow-colored:var(--shadow-2xl);--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);--tw-ring-color:rgba(var(--color-inverse-rgb),var(--tw-ring-opacity));--tw-ring-opacity:.05;background-color:rgba(var(--color-canvas-rgb),var(--tw-bg-opacity));border-radius:var(--modal-radius);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);pointer-events:auto;position:relative;width:var(--modal-base)}.modal-content,.modal-dialog{max-height:100vh}.modal-content{display:flex;flex-direction:column;height:100%}.loading>.modal-dialog>.modal-content{opacity:0;visibility:hidden}.modal-header{align-items:center;display:flex;flex:none;flex-wrap:nowrap;gap:1rem;padding:1rem 1.25rem;position:relative}.modal-title{flex:1 1 auto;font-size:1rem;font-weight:700;line-height:1.5rem}.modal-actions{position:absolute;right:.75rem;top:.75rem}.modal-body{flex:1 1 auto;overflow:auto;padding:.75rem 1.25rem}.modal-footer{align-items:center;display:flex;flex:none;gap:.75rem;padding:1.25rem}.modal-dialog[data-size=full]{height:100vh;width:100vw}.modal-dialog[data-size=sm]{width:var(--modal-sm)}.modal-dialog[data-size=lg]{width:var(--modal-lg)}.modal-dialog[data-size=xl]{width:var(--modal-xl)}.modal-iframe{width:100%}.modal-trans{opacity:0;transition-duration:.2s;transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1)}.modal-trans.in{opacity:1}.modal-trans>.modal-dialog{--tw-scale-x:.95;--tw-scale-y:.95;opacity:0;transition-duration:.3s;transition-property:transform,opacity}.modal-trans.in>.modal-dialog,.modal-trans>.modal-dialog{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.modal-trans.in>.modal-dialog{--tw-scale-x:1;--tw-scale-y:1;opacity:1}.modal-alert .modal-footer{justify-content:flex-end}.modal-alert .modal-header{margin-bottom:-1rem}.modal-alert .modal-body{white-space:pre-line}.modal-alert .modal-footer{margin-top:-.75rem}.modal-alert .modal-actions+.modal-body{padding-right:3rem}.modal-alert .modal-header+.modal-actions+.modal-body{padding-right:1.25rem}:root{--nav-radius:var(--radius);--nav-active-color:var(--color-primary-500);--nav-active-bg:var(--color-inherit);--nav-heading-color:var(--color-gray-500)}.nav,.nav-item{align-items:center;display:flex;position:relative}.nav-item{gap:.75rem}.nav-item>a{align-items:center;color:var(--color-inherit);display:flex;gap:.25rem;height:2rem;justify-content:center;padding-left:1rem;padding-right:1rem}.nav-item>.active{background:var(--nav-active-bg);color:var(--nav-active-color);font-weight:700}.nav-item>.disabled{opacity:1}.nav-item>.disabled>*{opacity:var(--disabled-opacity)}.nav-divider{background-color:var(--color-current);height:1rem;margin-left:.5rem;margin-right:.5rem;opacity:.3;width:1px}.nav-heading{align-items:center;color:var(--nav-heading-color);display:flex;font-weight:700;gap:.25rem;height:2rem;justify-content:center;padding-left:1rem;padding-right:1rem}.nav-space{flex:1 1 auto;width:1rem}.nav-primary>.nav-item{position:relative}.nav-primary>.nav-item:hover{z-index:10}.nav-primary>.nav-item+.nav-item{margin-left:-1px}.nav-primary>.nav-item>a{border-radius:var(--radius-none);border-width:1px}.nav-primary>.nav-item:first-child>a,.nav-primary>.nav-item:has(.nav-heading)+.nav-item>a{border-bottom-left-radius:var(--nav-radius);border-top-left-radius:var(--nav-radius)}.nav-primary>.nav-item:last-child>a{border-bottom-right-radius:var(--nav-radius);border-top-right-radius:var(--nav-radius)}.nav-primary>.nav-item>.active{--tw-text-opacity:1;background:var(--nav-active-color);border-color:var(--nav-active-color);color:rgba(var(--color-canvas-rgb),var(--tw-text-opacity))}.nav-primary>.nav-divider{display:none}.nav-secondary>.nav-item>a{border-radius:var(--radius-none);position:relative}.nav-secondary>.nav-item>a:after{--tw-bg-opacity:1;--tw-content:"";background-color:rgba(var(--color-border-rgb),var(--tw-bg-opacity));bottom:-2px;content:var(--tw-content);display:block;height:2px;left:0;position:absolute;right:0}.nav-secondary>.nav-item>.active:after{background-color:var(--color-current)}.nav-secondary>.nav-divider{margin:0 0 0 -1px}.nav-tabs>.nav-item>a{border-bottom-left-radius:var(--radius-none);border-bottom-right-radius:var(--radius-none);position:relative}.nav-tabs>.nav-item>a:after{--tw-border-opacity:1;--tw-content:"";border-color:var(--color-transparent);border-bottom-color:rgba(var(--color-border-rgb),var(--tw-border-opacity));border-top-left-radius:inherit;border-top-right-radius:inherit;border-width:1px;content:var(--tw-content);display:block;inset:-1px;pointer-events:none;position:absolute}.nav-tabs>.nav-item>.active:after{--tw-border-opacity:1;border-color:rgba(var(--color-border-rgb),var(--tw-border-opacity));border-bottom-color:var(--color-transparent)}.nav-tabs>.nav-divider{margin:0 0 0 -1px}.nav-pills>.nav-item>a{border-radius:var(--radius-full)}.nav-pills>.nav-item>.active{--tw-text-opacity:1;background:var(--nav-active-color);border-color:var(--nav-active-color);color:rgba(var(--color-canvas-rgb),var(--tw-text-opacity))}.nav-stacked{flex-direction:column}.nav-stacked>.nav-item{width:100%}.nav-stacked>.nav-heading,.nav-stacked>.nav-item>a{justify-content:flex-start;width:100%}.nav-stacked>.nav-divider{height:1px;margin:.5rem 0;width:100%}.nav-primary.nav-stacked>.nav-item>a{height:2.5rem}.nav-primary.nav-stacked>.nav-item+.nav-item{margin-left:0;margin-top:-1px}.nav-primary.nav-stacked>.nav-item:first-child>a{border-bottom-left-radius:0;border-top-left-radius:var(--nav-radius);border-top-right-radius:var(--nav-radius)}.nav-primary.nav-stacked>.nav-item:last-child>a{border-bottom-left-radius:var(--nav-radius);border-bottom-right-radius:var(--nav-radius);border-top-right-radius:0}.nav-secondary.nav-stacked>.nav-item>a:after{--tw-bg-opacity:1;background-color:rgba(var(--color-border-rgb),var(--tw-bg-opacity));bottom:0;height:100%;left:auto;right:0;top:0;width:2px}.nav-secondary.nav-stacked>.nav-item>.active:after{background-color:var(--color-current)}.nav-secondary.nav-stacked>.nav-divider{margin:0}.nav-tabs.nav-stacked>.nav-item>a{border-bottom-left-radius:var(--nav-radius);border-bottom-right-radius:var(--radius-none);border-top-right-radius:var(--radius-none);position:relative}.nav-tabs.nav-stacked>.nav-item>a:after{--tw-border-opacity:1;border-bottom-color:var(--color-transparent);border-bottom-left-radius:inherit;border-right-color:rgba(var(--color-border-rgb),var(--tw-border-opacity));border-top-left-radius:inherit}.nav-tabs.nav-stacked>.nav-item>a.active:after{--tw-border-opacity:1;border-color:rgba(var(--color-border-rgb),var(--tw-border-opacity));border-right-color:var(--color-transparent)}.nav-tabs.nav-stacked>.nav-divider{margin:0}.nav-pills.nav-stacked>.nav-item+.nav-item{margin-top:.25rem}.nav-justified>.nav-item:not(.flex-none,.nav-divider){flex:1 1 auto}.nav-justified>.nav-item>a{width:100%}.pager{align-items:center;display:flex;gap:.25rem}.menu.pager-size-menu{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr));text-align:center}.menu.pager-size-menu>.menu-item>a{margin:.125rem}.pager .pager-goto-group>.form-control{width:3rem}.pager .pager-goto-group>.input-group-addon{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgba(var(--color-canvas-rgb),var(--tw-bg-opacity));border-color:rgba(var(--color-gray-300-rgb),var(--tw-border-opacity));border-width:1px}.pager>.pager-nav.active{--tw-text-opacity:1;box-shadow:0 0 0 1px var(--color-primary-500);color:rgba(var(--color-primary-500-rgb),var(--tw-text-opacity))}.panel{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);--tw-ring-color:rgba(var(--color-inverse-rgb),var(--tw-ring-opacity));--tw-ring-opacity:.05;border-radius:var(--radius);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);overflow:hidden}.panel-heading{flex-wrap:nowrap;gap:1rem;justify-content:space-between;padding:.5rem 1rem}.panel-heading,.panel-title{align-items:center;display:flex}.panel-title{font-weight:700;gap:.5rem;margin:0}.panel-actions{margin-right:-.5rem}.panel-body{padding:.75rem 1rem}.panel-footer{align-items:center;display:flex;gap:.5rem;padding:.5rem 1rem}.size-sm .panel-body,.size-sm .panel-footer,.size-sm .panel-heading{padding:.375rem .75rem}.size-lg .panel-body,.size-lg .panel-footer,.size-lg .panel-heading{padding:1rem 1.25rem}.picker{position:relative}.picker-select{align-items:center;gap:.25rem;justify-content:space-between}.picker-select,.picker-select.form-control{display:flex}.picker-select-placeholder{--tw-text-opacity:1;color:rgba(var(--color-placeholder-rgb),var(--tw-text-opacity));flex:1 1 auto}.picker-select-multi .picker-select-placeholder{padding-left:.25rem;padding-right:.25rem}.picker-single-selection{flex:1 1 auto;min-width:0;overflow:hidden;white-space:nowrap}.picker-deselect-btn{border-radius:var(--radius-full);padding:.25rem}.picker-deselect-btn:not(:hover){opacity:.7}.picker-select-multi.form-control{height:auto;min-height:32px;padding-left:.25rem}.picker-multi-selections{display:flex;flex-wrap:wrap;gap:.25rem}.picker-multi-selection{--tw-bg-opacity:1;align-items:center;background-color:rgba(var(--color-surface-rgb),var(--tw-bg-opacity));border-radius:var(--radius-full);border-width:1px;display:flex;padding-left:.5rem}.picker-multi-selection>.text{max-width:180px;overflow:clip;white-space:nowrap}.picker-menu-list.menu{--tw-shadow:var(--shadow-none);--tw-shadow-colored:var(--shadow-none);border-style:none;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);flex:1 1 auto;min-height:0;overflow-y:auto}.picker-menu-search+.picker-menu-list.menu{margin-top:-.125rem;padding-top:0}.menu-item .text .is-match{font-weight:700;text-decoration-line:underline}.picker-search-input{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)!important;--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(var(--tw-ring-offset-width)) var(--tw-ring-color)!important;border-color:var(--color-transparent);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)!important;height:1.75rem;outline-width:0!important;padding-left:0;padding-right:2rem}.picker-search{flex:none;position:relative;width:100%}.picker-search>.magnifier{opacity:.5;position:absolute;right:0;top:.5rem}.picker-search-clear.btn{cursor:pointer;height:1.25rem;position:absolute;right:0;top:.25rem;width:1.25rem}.picker-search.is-inline{min-width:64px;width:4rem}.is-inline>.picker-search-input{height:1.25rem;min-width:64px;padding-left:.25rem;padding-right:.25rem}.picker-search-measure{height:0;left:0;overflow:hidden;position:absolute;top:0;white-space:nowrap}.popover{display:none;position:absolute;width:-moz-max-content;width:max-content}.popover.show{display:block}.popover-heading{--tw-bg-opacity:1;align-items:center;background-color:rgba(var(--color-surface-rgb),var(--tw-bg-opacity));border-top-left-radius:inherit;border-top-right-radius:inherit;display:flex;gap:1rem;height:2.5rem;justify-content:space-between;padding-left:.75rem;padding-right:.5rem}.popover-title{flex:1 1 auto;font-weight:700}.popover-content{padding:.75rem}.popover-arrow.arrow-top,.popover-arrow.arrow-up{--tw-bg-opacity:1;background-color:rgba(var(--color-surface-rgb),var(--tw-bg-opacity))}.popover>.btn-close{position:absolute;right:.5rem;top:.625rem}.btn-close+.popover-content{padding-right:3rem}.btn.with-popover-show{--tw-shadow:var(--shadow-inner);--tw-shadow-colored:var(--shadow-inner);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.with-popover-show[data-popover-placement=top]>.caret{--tw-rotate:180deg}.with-popover-show[data-popover-placement=left]>.caret,.with-popover-show[data-popover-placement=top]>.caret{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.with-popover-show[data-popover-placement=left]>.caret{--tw-rotate:90deg}.with-popover-show[data-popover-placement=right]>.caret{--tw-rotate:-90deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}:root{--table-head-bg:var(--color-surface);--table-striped-color:var(--color-gray-50);--table-hover-color:rgba(var(--color-primary-500-rgb),.05);--table-border-color:var(--color-border)}.table{border-color:var(--table-border-color);width:100%}.table>thead{background-color:var(--table-head-bg)}.table>*>tr{border-bottom-width:1px}.table>*>tr>*{padding:.5rem 1rem;text-align:left}.table-striped>tbody>tr:nth-child(2n){background:var(--table-striped-color)}.table-hover>tbody>tr:hover>*{background:var(--table-hover-color)}.table.bordered>*>tr>*{border-width:1px}.table.borderless>*>tr,.table.borderless>*>tr>*{border-style:none}.condensed>*>tr>*{padding:.375rem .75rem}.table-fixed{table-layout:fixed}.table-fixed>*>tr>*{overflow:hidden;white-space:nowrap}.tooltip{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgba(var(--color-inverse-rgb),var(--tw-bg-opacity));border-color:rgba(var(--color-inverse-rgb),var(--tw-border-opacity));border-radius:var(--radius);color:rgba(var(--color-canvas-rgb),var(--tw-text-opacity));font-size:.75rem;line-height:1rem;max-width:28rem;padding:.25rem .5rem;z-index:1800}.tooltip>.arrow{border-width:0}.tooltip-has-title{--tw-bg-opacity:.8;--tw-shadow:var(--shadow-xl);--tw-shadow-colored:var(--shadow-xl);--tw-backdrop-blur:blur(8px);-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);padding:.5rem .75rem .75rem}.tooltip-has-title>.arrow{opacity:.75}.tooltip-heading{align-items:center;display:flex;font-size:.8125rem;font-weight:700;gap:1rem;justify-content:space-between;line-height:1.25rem;padding:.25rem}.tooltip-heading>.btn-close{margin-right:-.25rem}.tooltip-content{padding:.25rem}.tree-item-content{flex-direction:row;gap:.25rem;min-height:24px}.tree-item-content,.tree-toggle-icon{align-items:center;display:flex}.tree-toggle-icon{--caret-size:5px;--caret-opacity:.3;border-radius:var(--radius);height:1rem;justify-content:center;width:1rem}.tree.no-nested-items>.tree-item>.tree-item-content>.tree-toggle-icon{width:.25rem}.tree-checkbox{margin-right:-.25rem}.tree-icon{opacity:.5;width:1rem}.tree-item-content:hover>.tree-icon{opacity:.8}.tree-hover .tree-item-content{border-radius:var(--radius);transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.tree-hover .tree-item-content:hover{--tw-bg-opacity:1;background-color:rgba(var(--color-surface-rgb),var(--tw-bg-opacity))}.tree-link:not(:hover){color:var(--color-inherit)}.tree-item-content>.toolbar{margin-left:1rem;opacity:.6}.tree-item-content:hover>.toolbar{opacity:1}.upload .upload-tip{color:var(--color-slate-500)}.file-item>.img{height:120px;width:120px}.upload .file-item:hover .file-size{display:flex!important}.panel-body>.form-batch{margin-top:-1rem}.form-batch-container{overflow-y:auto}.form-batch-table{--table-head-bg:var(--color-canvas);min-width:100%;table-layout:fixed}.form-batch-table>*>tr>*{padding-left:.375rem;padding-right:.375rem;vertical-align:top}.form-batch-head{vertical-align:middle}.form-batch-head[data-name=ACTIONS]{width:5rem}.form-batch-label{display:inline}.form-batch-control>textarea.form-control{height:2rem}.form-batch-btn+.btn{margin-left:.25rem}.form-batch-table>tbody[data-count="1"] .form-batch-btn[data-type=delete]{display:none}.form-batch-ditto-btn{opacity:1;padding-left:0;padding-right:0}.form-batch-ditto-btn:before{--tw-bg-opacity:1;--tw-content:"";background-color:rgba(var(--color-border-rgb),var(--tw-bg-opacity));bottom:.5rem;content:var(--tw-content);left:-1px;position:absolute;top:.5rem;width:1px}.form-batch-ditto-btn>.btn{opacity:.5;padding-left:.5rem;padding-right:.5rem}[data-ditto=on] .form-batch-ditto-btn>.btn{--tw-text-opacity:1;color:rgba(var(--color-primary-500-rgb),var(--tw-text-opacity));opacity:1}.dropmenu-btn{gap:.25rem;padding-left:.5rem;padding-right:.5rem}.dropmenu-btn>.text{max-width:180px;overflow:hidden}.dropmenu-btn>.is-leading{left:-.625rem;position:absolute}.dropmenu-btn>.is-caret{align-items:center;background-color:rgba(var(--color-canvas-rgb),.2);border-radius:var(--radius);display:flex;height:1rem;justify-content:center;width:1rem}.dropmenu-nav{border-bottom-width:1px;margin-left:.75rem;margin-right:.75rem;margin-top:.25rem}.has-search .dropmenu-nav{margin-top:-.5rem}.dropmenu-nav>.nav-secondary{gap:.5rem}.dropmenu-nav>.nav-secondary>.nav-item>a{border-radius:var(--radius);padding-left:.5rem;padding-right:.5rem}.dropmenu-nav>.nav-secondary>.nav-item>a:after{bottom:-1px;left:1rem;opacity:0;right:1rem}.dropmenu-nav>.nav-secondary>.nav-item>.active:after{left:.5rem;opacity:1;right:.5rem;transition-duration:.15s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.dropmenu-title{--tw-text-opacity:1;color:rgba(var(--color-gray-500-rgb),var(--tw-text-opacity));font-size:.75rem;font-weight:700;line-height:1rem;margin-bottom:-.5rem;padding:.75rem}.dropmenu-list{min-height:0;overflow-y:auto;padding:.5rem .75rem}.dropmenu.loading>*{opacity:0}.dropmenu-item{cursor:pointer;transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.dropmenu-item.is-item.active{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgba(var(--color-primary-50-rgb),var(--tw-bg-opacity));color:rgba(var(--color-primary-500-rgb),var(--tw-text-opacity))}.dropmenu-item.is-item:hover{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgba(var(--color-primary-500-rgb),var(--tw-bg-opacity));color:rgba(var(--color-canvas-rgb),var(--tw-text-opacity))}.dropmenu-item.is-toggle:hover{--tw-bg-opacity:1;background-color:rgba(var(--color-gray-100-rgb),var(--tw-bg-opacity))}.dropmenu-item+.tree-item{margin-top:.125rem}.dropmenu-item .is-match{font-weight:700;text-decoration-line:underline}.dropmenu-item .label,.dropmenu-item .text{overflow:hidden;white-space:nowrap}.dropmenu-item.is-toggle .text{opacity:.6}.dropmenu-item.is-toggle:hover .text{opacity:1}.dropmenu-item-check{align-items:center;display:flex;flex:1 1 auto;justify-content:flex-end;padding-right:.5rem}.dropdown,.dropdown-menu{position:absolute;z-index:1200}.dropdown-menu{--menu-min-width:7rem;display:none}.dropdown-menu.show,.show>.dropdown-menu{display:block}.popover>.dropdown-menu{position:relative}.dropdown-menu .has-nested-menu.show>a:not(:hover){--tw-bg-opacity:1;background-color:rgba(var(--color-primary-100-rgb),var(--tw-bg-opacity))}.global-search-panel li:not(.order-first):hover{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgba(var(--color-primary-500-rgb),var(--tw-bg-opacity));color:rgba(var(--color-canvas-rgb),var(--tw-text-opacity))}.global-search-panel li a{width:100%}.picker-deselect-btn{opacity:.6;transition-duration:.15s;transition-property:opacity,transform;transition-timing-function:cubic-bezier(.4,0,.2,1)}.picker-multi-selection{cursor:pointer;padding-right:.5rem;position:relative}.picker-multi-selection .picker-deselect-btn{--tw-scale-x:0;--tw-scale-y:0;background-color:rgba(var(--color-surface-rgb),.8);inset:0;opacity:0;position:absolute}.picker-deselect-btn:hover,.picker-multi-selection .picker-deselect-btn,.picker-multi-selection:hover .picker-deselect-btn{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.picker-deselect-btn:hover,.picker-multi-selection:hover .picker-deselect-btn{--tw-scale-x:1;--tw-scale-y:1;opacity:1}.pick-pri{align-items:center;display:flex;flex-direction:row;justify-content:flex-start;position:relative}.pick-pri>.caret{position:absolute;right:.5rem;top:.875rem}.pick-pri .placeholder{--tw-text-opacity:1;color:rgba(var(--color-placeholder-rgb),var(--tw-text-opacity))}.pick-pri-list>.btn{justify-content:flex-start}.zinbar [data-hint]{position:relative}.zinbar [data-hint]:after{--tw-bg-opacity:.9;--tw-text-opacity:1;--tw-content:attr(data-hint);background-color:rgba(var(--color-inverse-rgb),var(--tw-bg-opacity));border-top-left-radius:var(--radius-lg);border-top-right-radius:var(--radius-lg);bottom:100%;color:rgba(var(--color-canvas-rgb),var(--tw-text-opacity));content:var(--tw-content);display:block;font-size:.75rem;line-height:1rem;opacity:0;padding:.125rem .25rem;position:absolute;right:0;transition-duration:.15s;transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);white-space:nowrap;z-index:50}.zinbar [data-hint]:hover:after{opacity:1}.zin-perf-btn-list .text-danger{color:var(--color-danger-400)}.zinbar .state{transition-duration:.15s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1)}.zinbar .state:active{--tw-scale-x:1.05;--tw-scale-y:1.05}.zinbar .state:active,.zinbar.collapse{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.zinbar.collapse{--tw-translate-x:100%}.zinbar.collapse>div{pointer-events:none}.zinbar{--tw-translate-x:0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));transition-duration:.7s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1)}.contextmenu{display:none}.contextmenu.show{display:block}.contextmenu.popup{position:absolute}.dashboard-blocks{padding:.5rem;position:relative}.dashboard-block-cell{position:absolute;transition-duration:.15s;transition-property:left,top;transition-timing-function:cubic-bezier(.4,0,.2,1)}.dashboard-block{--tw-bg-opacity:1;background-color:rgba(var(--color-canvas-rgb),var(--tw-bg-opacity));border-radius:var(--radius);inset:.5rem;position:absolute;transition-duration:.15s;transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1)}.dashboard-block.is-dragging{opacity:0;z-index:1600}.dashboard-block-header{align-items:center;border-top-left-radius:var(--radius);border-top-right-radius:var(--radius);display:flex;flex-direction:row;justify-content:space-between;left:0;padding:.75rem;pointer-events:none;position:absolute;right:0;top:0;z-index:10}.dashboard-block-header>*{pointer-events:auto}.dashboard-block-title{font-size:.875rem;font-weight:700;line-height:1.3rem}.dashboard-block-body{inset:0;position:absolute}.dashboard-block-body>.panel{--tw-shadow:0px 6px 16px rgba(202,215,235,.25);display:flex;flex-direction:column;height:100%;width:100%}.dashboard-block-body .panel-heading{cursor:move;flex:none}.dashboard-block-body .panel-body{flex:1 1 auto;overflow-y:auto}.has-more-menu>.dashboard-block-body .panel-heading{padding-right:3rem}.dashboard-block-body .panel-title{font-size:.875rem;height:2rem;line-height:1.3rem}.dashboard-block-actions .btn{opacity:.6}.dashboard-block-actions .btn:hover{opacity:1}:root{--scrollbar-size:10px;--scrollbar-opacity:.6;--scrollbar-bg:rgba(var(--color-inverse-rgb),.15);--scrollbar-inset:inset 0 0 0 1px rgba(var(--color-inverse-rgb),.05);--scrollbar-bar-bg:rgba(var(--color-inverse-rgb),.3);--scrollbar-hover-bg:rgba(var(--color-inverse-rgb),.4);--scrollbar-drag-bg:rgba(var(--color-inverse-rgb),.5);--scrollbar-radius:var(--radius-sm);--scrollbar-duration:.7s}.scrollbar{background:var(--scrollbar-bg);box-shadow:var(--scrollbar-shadow);opacity:var(--scrollbar-opacity);position:absolute;transition-duration:.15s;transition-duration:var(--scrollbar-duration);transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1)}.scrollbar-hover .scrollbar{opacity:0}.scrollbar-hover:hover .scrollbar{opacity:var(--scrollbar-opacity)}.scrollbar.is-dragging,.scrollbar:hover{opacity:1!important}.scrollbar-bar{background:var(--scrollbar-bar-bg);border-radius:var(--scrollbar-radius);position:absolute}.scrollbar-bar:hover{background:var(--scrollbar-hover-bg)}.is-dragging>.scrollbar-bar{background:var(--scrollbar-drag-bg)}.is-horz>.scrollbar-bar{height:100%;z-index:20}.is-vert>.scrollbar-bar{width:100%;z-index:20}:root{--dtable-bg:var(--color-canvas);--dtable-striped-bg:var(--color-gray-50);--dtable-hover-bg:rgba(var(--color-primary-500-rgb),.05);--dtable-header-bg:var(--color-surface);--dtable-footer-bg:var(--color-surface);--dtable-border-color:var(--color-border);--dtable-sorter-size:.3125rem}.dtable{--tw-bg-opacity:1;background-color:rgba(var(--color-canvas-rgb),var(--tw-bg-opacity));position:relative}.dtable-block{overflow:hidden;position:absolute;width:100%}.dtable-header{background-color:var(--dtable-header-bg);border-top-left-radius:inherit;border-top-right-radius:inherit}.dtable-body{overflow:hidden}.dtable-cells{background-color:var(--dtable-bg);z-index:0}.dtable-cells,.dtable-cells-container{height:100%;position:absolute}.dtable-cells-container{width:100%}.dtable-header .dtable-cells{background-color:var(--dtable-header-bg)}.dtable-cells.dtable-fixed-left,.dtable-cells.dtable-fixed-right{z-index:10}.dtable-cell{position:absolute;transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.dtable-cell:after,.dtable-cell:before{bottom:0;content:"";left:0;opacity:0;pointer-events:none;position:absolute;right:-1px;top:-1px;z-index:2}.dtable-cell:before{border-bottom-width:1px;opacity:1}.dtable-header .dtable-cell{align-items:center;display:flex;font-weight:700}.dtable-header .dtable-cell:after,.dtable-header .dtable-cell:before{top:0}.dtable-cell-content{gap:.25rem;height:100%;overflow:hidden;position:relative;white-space:nowrap;z-index:5}.dtable-cell-content,.dtable-footer{align-items:center;display:flex;padding-left:.75rem;padding-right:.75rem;width:100%}.dtable-footer{background-color:var(--dtable-footer-bg);border-color:var(--dtable-border-color);border-top-left-radius:inherit;border-top-right-radius:inherit;border-top-width:1px;position:absolute;z-index:10}.dtable .scrollbar{z-index:20}.dtable-header{transition-duration:1s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.dtable-scrolled-down .dtable-header{--tw-border-opacity:1;border-bottom-color:rgba(var(--color-border-strong-rgb),var(--tw-border-opacity));border-bottom-width:1px}.dtable-scroll-shadow{background-image:linear-gradient(90deg,rgba(0,0,0,.03),transparent),linear-gradient(90deg,rgba(0,0,0,.03),transparent 50%);opacity:0;pointer-events:none;position:absolute;top:0;transition-duration:1s;transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);width:8px;z-index:20}.dtable:hover .dtable-scroll-shadow{opacity:1}.dtable-scroll-shadow.is-right{--tw-rotate:180deg;margin-left:-7px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.dtable-scroll-shadow.is-left,.dtable-scrolled-end .dtable-scroll-shadow.is-right{visibility:hidden}.dtable-scroll-shadow.is-right,.dtable-scrolled-right .dtable-scroll-shadow.is-left{visibility:visible}.dtable-cell[data-sort]{cursor:pointer}.dtable-sort{height:calc(var(--dtable-sorter-size)*12/5);margin-left:.25rem;opacity:.8;position:relative}.dtable-cell:hover .dtable-sort{opacity:1}.dtable-sort:after,.dtable-sort:before{border-color:var(--color-transparent);border-style:solid;border-width:var(--dtable-sorter-size);content:" ";height:0;left:0;opacity:.4;position:absolute;width:0}.dtable-sort:before{border-bottom-color:var(--color-current);border-top-width:0;top:0}.dtable-sort:after{border-bottom-width:0;border-top-color:var(--color-current);bottom:0}.dtable-sort.dtable-sort-asc:before,.dtable-sort.dtable-sort-desc:after{opacity:.9}.dtable-cells.dtable-fixed-left:before,.dtable-cells.dtable-fixed-right:before{border-color:var(--dtable-border-color);content:"";height:100%;pointer-events:none;position:absolute;width:100%;z-index:5}.dtable-cells.dtable-fixed-left:before{border-right-width:1px;right:-1px}.dtable-cells.dtable-fixed-right:before{border-left-width:1px;left:0}.dtable-bordered:before{border-color:var(--dtable-border-color);border-radius:inherit;border-width:1px;content:"";display:block;inset:0;pointer-events:none;position:absolute;z-index:15}.dtable-bordered .dtable-cell:before{border-width:1px}.dtable-cell.has-border-left:before{border-left-width:1px}.dtable-cell.has-border-right:before{border-right-width:1px}.dtable-striped .dtable-cell.is-odd-row{background-color:var(--dtable-striped-bg)}.dtable-hover-cell .dtable-cell:hover:after,.dtable-hover-col .dtable-cell.is-hover-col:before,.dtable-hover-row .dtable-body .dtable-cell.is-hover-row:before{background-color:var(--dtable-hover-bg)}:root{--dtable-checked-bg:var(--color-warning-50);--dtable-checked-bg-hover:var(--color-warning-100);--dtable-checked-border:var(--color-border-strong)}.dtable-cell.is-checked{background-color:var(--dtable-checked-bg)}.checkbox-primary.dtable-checkbox{margin-right:-.375rem}.dtable-hover-col .dtable-cell.is-hover-col.is-checked,.dtable-hover-row .dtable-cell.is-hover-row.is-checked{background-color:var(--dtable-checked-bg-hover)}.dtable-cell.is-checked{--dtable-border-color:var(--dtable-checked-border)}:root{--dtable-nt-size:calc(var(--font-size-root)*3/4 + 1px)}.dtable-nested-indent{flex:none;margin-right:-.25rem;order:-10}.dtable-nested-toggle{align-items:center;border-radius:var(--radius-sm);display:flex;flex:none;height:1.25rem;justify-content:center;margin-left:-.25rem;order:-1;width:1.25rem}.dtable-nested-toggle.is-no-child{margin-right:-.25rem;opacity:0;pointer-events:none}.tab-pane{display:none}.tab-pane.active{display:block}.dtable{--dtable-header-bg:var(--color-slate-50);--dtable-footer-bg:var(--color-slate-50);--dtable-border-color:var(--color-slate-100);--dtable-checked-border:var(--color-slate-300)}.dtable-header .dtable-cell{font-weight:400}.dtable-rows a:visited{--tw-text-opacity:1;color:rgba(var(--color-link-visited-rgb),var(--tw-text-opacity))}.dtable-rows a:hover{--tw-text-opacity:1;color:rgba(var(--color-link-hover-rgb),var(--tw-text-opacity))}.dtable .btn-avatar{--tw-bg-opacity:1;--tw-ring-color:var(--color-transparent);background-color:rgb(241 245 249/var(--tw-bg-opacity));border-radius:var(--radius-full);gap:.25rem;height:1.25rem;padding-left:0;padding-right:.5rem}.dtable .btn-avatar:hover{--tw-shadow:var(--shadow);--tw-shadow-colored:var(--shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.dtable .toggle-icon{border-radius:var(--radius-full)}.dtable .toggle-icon:after,.dtable .toggle-icon:before{--tw-bg-opacity:1;background-color:rgba(var(--color-fore-rgb),var(--tw-bg-opacity))}.dtable-footer>.toolbar{margin-right:.5rem}.dtable-header .dtable-cell[data-sort]>.dtable-cell-content>a:not(:hover){color:var(--color-inherit)}.dtable-assign-btn{align-items:center;border-radius:var(--radius-full);display:flex;flex-direction:row;height:1.25rem;padding-left:.375rem;padding-right:.375rem}.dtable-assign-btn:not(:hover){color:var(--color-inherit)}.dtable-assign-btn.is-me{--tw-text-opacity:1;color:rgba(var(--color-warning-500-rgb),var(--tw-text-opacity))}.dtable-assign-btn:hover{--tw-bg-opacity:1;background-color:rgba(var(--color-canvas-rgb),var(--tw-bg-opacity))}.dtable-assign-btn>span{border-radius:var(--radius-full);line-height:20px;padding-left:.375rem;padding-right:.375rem}.dtable-assign-btn.is-unassigned>span{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgba(var(--color-primary-50-rgb),var(--tw-bg-opacity));color:rgba(var(--color-link-rgb),var(--tw-text-opacity))}.dtable-assign-btn.is-unassigned:hover>span{background-color:var(--color-inherit)}.dtable-assign-btn>.icon{opacity:0;transition-duration:.15s;transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1)}.dtable-assign-btn:hover>.icon{opacity:1}.dtable-header .dtable-cell[data-type=assign]{padding-left:1.5rem}.dtable-custom-cell[data-type=control]{align-items:center;display:flex;justify-content:center;padding-left:.125rem;padding-right:.125rem;z-index:1}.arrow,.arrow:before{background:inherit;height:calc(var(--arrow-size)*1.4142);position:absolute;width:calc(var(--arrow-size)*1.4142)}.arrow{--arrow-size:5px;visibility:hidden}.arrow:before{--tw-rotate:45deg;border:inherit;content:"";transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));visibility:visible}.arrow-top,.arrow-up{border-bottom:inherit;border-right:inherit;border-width:1px 0 0 1px;top:calc(1px - var(--arrow-size))}.arrow-bottom,.arrow-down{border-left:inherit;border-top:inherit;border-width:0 1px 1px 0;bottom:calc(1px - var(--arrow-size))}.arrow-left{border-right:inherit;border-top:inherit;border-width:0 0 1px 1px;left:calc(1px - var(--arrow-size))}.arrow-right{border-bottom:inherit;border-left:inherit;border-width:1px 1px 0 0;right:calc(1px - var(--arrow-size))}.caret,.caret-down,.caret-left,.caret-right,.caret-up{border:var(--caret-size,4px) solid transparent;display:inline-block;height:0;opacity:var(--caret-opacity,.5);width:0}:focus>.caret,:hover>.caret{opacity:inherit}.caret,.caret-down{border-bottom-width:0;border-top-color:currentColor}.caret-up{border-bottom-color:currentColor;border-top-width:0}.caret-right{border-left-color:currentColor;border-right-width:0}.caret-left{border-left-width:0;border-right-color:currentColor}:root{--toggle-icon-size:calc(var(--font-size-root)*3/4 + 1px)}.toggle-icon,.toggle-icon-collapse,.toggle-icon-expand{border-color:var(--color-current);border-width:1px;display:block;opacity:.5;position:relative}.toggle-icon-collapse:hover,.toggle-icon-expand:hover,.toggle-icon:hover{opacity:.9}.toggle-icon,.toggle-icon-collapse,.toggle-icon-expand{border-radius:inherit;height:var(--toggle-icon-size);width:var(--toggle-icon-size)}.is-collapsed .toggle-icon:after,.is-collapsed .toggle-icon:before,.is-expanded .toggle-icon:before,.toggle-icon-collapse:after,.toggle-icon-collapse:before,.toggle-icon-expand:before{background-color:var(--color-current);content:" ";display:block;height:1px;left:2px;position:absolute;right:2px;top:calc((var(--toggle-icon-size) - 3px)/2)}.is-collapsed .toggle-icon:after,.toggle-icon-collapse:after{--tw-rotate:90deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.close{aspect-ratio:1/1;display:block;position:relative;width:1em}.close:after,.close:before{--tw-rotate:45deg;background-color:var(--color-current);border-radius:var(--radius-full);content:"";display:block;height:1px;left:0;position:absolute;top:calc(50% - .5px);width:100%}.close:after,.close:before{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.close:after{--tw-rotate:-45deg}.spinner,.spinner:after,.spinner:before{display:block;height:1em;position:relative;width:1em}.spinner:after,.spinner:before{border-radius:var(--radius-full);content:" ";position:absolute}.spinner:before{animation:-spin 1s cubic-bezier(.6,0,.4,1) infinite;border:.16667em solid transparent;border-top-color:currentcolor}.spinner:after{border:.16667em solid;opacity:.2}.magnifier{display:inline-block;height:1em;position:relative;width:1em}.magnifier:after,.magnifier:before{border-radius:var(--radius-full);content:"";display:block;position:absolute}.magnifier:before{border:1px solid;height:.75em;width:.75em}.magnifier:after{--tw-rotate:45deg;background-color:var(--color-current);height:1px;left:.55em;top:.7em;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));width:.5em}.more,.more-vert{margin:.5rem;position:relative}.more,.more-vert,.more-vert:after,.more-vert:before,.more:after,.more:before{background-color:var(--color-current);border-radius:var(--radius-full);height:.125rem;width:.125rem}.more-vert:after,.more-vert:before,.more:after,.more:before{--tw-content:"";content:var(--tw-content);display:block;left:-5px;position:absolute;top:0}.more-vert:after,.more:after{left:5px}.more-vert{--tw-rotate:90deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.chevron-down,.chevron-left,.chevron-right,.chevron-up{align-items:center;display:inline-flex;height:1em;justify-content:center;position:relative;width:1em}.chevron-down:before,.chevron-left:before,.chevron-right:before,.chevron-up:before{--tw-translate-y:-.125rem;--tw-rotate:45deg;--tw-content:"";border-color:var(--color-current);border-width:0 1px 1px 0;content:var(--tw-content);display:block;height:.6923077em;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));transform-origin:center;width:.6923077em}.chevron-left:before{--tw-translate-y:0px;--tw-translate-x:.125rem;--tw-rotate:135deg}.chevron-left:before,.chevron-right:before{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.chevron-right:before{--tw-translate-y:0px;--tw-translate-x:-.125rem;--tw-rotate:-45deg}.chevron-up:before{--tw-translate-y:.125rem;--tw-rotate:225deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.i-time{border-color:var(--color-current);border-radius:50%;border-width:.08em;display:inline-block;height:1em;position:relative;width:1em}.i-time:after{--tw-content:"";border-color:var(--color-current);border-width:0 0 .08em .08em;content:var(--tw-content);height:.385em;left:.3846em;position:absolute;top:.08em;width:.385em}.i-calendar{border-color:var(--color-current);border-radius:var(--radius);border-width:.08em;display:inline-block;height:.79em;margin-top:.16em;position:relative;width:1em}.i-calendar:after,.i-calendar:before{--tw-content:"";border-color:var(--color-current);border-width:.08em;content:var(--tw-content);position:absolute}.i-calendar:before{border-bottom-width:0;left:.15em;top:.307em;width:.6em}.i-calendar:after{border-bottom-width:0;border-top-width:0;height:.3077em;left:.17em;top:-.154em;width:.538em}:root{--state-color:rgba(0,0,0,.05);--state-scale:.9;--state-active-color:rgba(0,0,0,.1);--state-focus-color:rgba(0,0,0,.125);--state-disabled-opacity:.65;--state-muted-opacity:.5}.btn,.nav-item>a,.state{cursor:pointer;position:relative}.btn:before,.nav-item>a:before,.state:before{background:var(--state-color);border-radius:inherit;content:" ";display:block;inset:0;opacity:0;pointer-events:none;position:absolute;transform:scale(var(--state-scale));transition-duration:.2s;transition-property:opacity,transform,box-shadow;transition-timing-function:cubic-bezier(.4,0,.2,1)}.btn:active:before,.btn:focus-visible:before,.btn:hover:before,.nav-item>a:active:before,.nav-item>a:focus-visible:before,.nav-item>a:hover:before,.state:active:before,.state:focus-visible:before,.state:hover:before{--tw-scale-x:1;--tw-scale-y:1;opacity:1;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.btn:focus-visible,.nav-item>a:focus-visible,.state:focus-visible{outline:2px solid transparent;outline-offset:2px}.btn:focus-visible:before,.nav-item>a:focus-visible:before,.state:focus-visible:before{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-focus-rgb),var(--tw-ring-opacity));background:var(--state-focus-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.btn:active:before,.nav-item>a:active:before,.state:active:before{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);--tw-ring-color:var(--color-current);background:var(--state-active-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);transition-duration:.7s}.btn.disabled:before,.btn[disabled]:before,.nav-item>a.disabled:before,.nav-item>a[disabled]:before,.state.disabled:before,.state[disabled]:before{display:none}.disabled,.disabled *,[disabled],[disabled] *{--tw-grayscale:grayscale(100%);cursor:not-allowed!important;filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);opacity:var(--state-disabled-opacity)}.muted{opacity:var(--state-muted-opacity)}.load-indicator:after,.load-indicator:before{display:block;opacity:0;position:absolute;transition-delay:0s;transition-duration:.3s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);visibility:hidden}.load-indicator:before{--tw-content:attr(data-loading);align-items:center;background-color:rgba(var(--color-canvas-rgb),.7);border-radius:inherit;content:var(--tw-content);display:flex;font-size:.75rem;inset:0;justify-content:center;line-height:1rem;z-index:99}.load-indicator[data-loading]:before{padding-top:3.5rem}.load-indicator:after{--tw-content:"";border-color:var(--color-current);border-radius:var(--radius-full);border-style:dotted;border-top-color:var(--color-transparent);border-width:4px 3px 4px 4px;content:var(--tw-content);height:2rem;left:50%;margin-left:-1rem;margin-top:-1rem;top:50%;width:2rem;z-index:100}.load-indicator.loading:after,.load-indicator.loading:before{opacity:1;transition-delay:.5s;visibility:visible}.load-indicator.loading:after{animation:-spin 1s linear infinite;opacity:.5}.events-none{pointer-events:none}.events-auto{pointer-events:auto}.scroll-auto{scroll-behavior:auto}.scroll-smooth{scroll-behavior:smooth}.select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.select-text{-webkit-user-select:text;-moz-user-select:text;user-select:text}.select-all{-webkit-user-select:all;-moz-user-select:all;user-select:all}.select-auto{-webkit-user-select:auto;-moz-user-select:auto;user-select:auto}.cursor-auto{cursor:auto}.cursor-default{cursor:default}.cursor-pointer{cursor:pointer}.cursor-wait{cursor:wait}.cursor-text{cursor:text}.cursor-move{cursor:move}.cursor-help{cursor:help}.cursor-not-allowed{cursor:not-allowed}.active\:opacity-100.active,.active\:opacity-100:active,.group.active .group-active\:opacity-100,.group:active .group-active\:opacity-100,.group:hover .group-hover\:opacity-100,.hover\:opacity-100:hover{opacity:1}.active\:text-primary.active,.active\:text-primary:active,.group.active .group-active\:text-primary,.group:active .group-active\:text-primary,.group:hover .group-hover\:text-primary,.hover\:text-primary:hover{--tw-text-opacity:1;color:rgba(var(--color-primary-500-rgb),var(--tw-text-opacity))}.active\:primary.active,.active\:primary:active,.group.active .group-active\:primary,.group:active .group-active\:primary,.group:hover .group-hover\:primary,.hover\:primary:hover{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgba(var(--color-primary-500-rgb),var(--tw-bg-opacity));color:rgba(var(--color-canvas-rgb),var(--tw-text-opacity))}.active\:canvas.active,.active\:canvas:active,.group.active .group-active\:canvas,.group:active .group-active\:canvas,.group:hover .group-hover\:canvas,.hover\:canvas:hover{--tw-bg-opacity:1;background-color:rgba(var(--color-canvas-rgb),var(--tw-bg-opacity))}.active\:font-bold.active,.active\:font-bold:active,.group.active .group-active\:font-bold,.group:active .group-active\:font-bold,.group:hover .group-hover\:font-bold,.hover\:font-bold:hover{font-weight:700}.aspect-auto{aspect-ratio:auto}.aspect-square{aspect-ratio:1/1}.aspect-video{aspect-ratio:16/9}.container{width:100%}@media (min-width:1720px){.container{max-width:1720px}}.container{margin-left:auto;margin-right:auto}.popup{--tw-bg-opacity:.85;--tw-shadow:var(--shadow-xl);--tw-shadow-colored:var(--shadow-xl);--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);--tw-ring-color:rgba(var(--color-inverse-rgb),var(--tw-ring-opacity));--tw-ring-opacity:.05;--tw-backdrop-blur:blur(16px);background-color:rgba(var(--color-canvas-rgb),var(--tw-bg-opacity));border-radius:var(--radius);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.popup,.popup .popup{-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.popup .popup{--tw-bg-opacity:1;--tw-backdrop-blur:blur(0)}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.table-cell{display:table-cell}.table-row{display:table-row}.list-item{display:list-item}.hidden{display:none!important}.pull-right{float:right}.pull-left{float:left}.clearfix:after{clear:both;content:"";display:block}.object-contain{-o-object-fit:contain;object-fit:contain}.object-cover{-o-object-fit:cover;object-fit:cover}.object-fill{-o-object-fit:fill;object-fit:fill}.object-none{-o-object-fit:none;object-fit:none}.object-scale-down{-o-object-fit:scale-down;object-fit:scale-down}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-clip{overflow:clip}.overflow-visible{overflow:visible}.overflow-scroll{overflow:scroll}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.overflow-x-hidden{overflow-x:hidden}.overflow-y-hidden{overflow-y:hidden}.overflow-x-clip{overflow-x:clip}.overflow-y-clip{overflow-y:clip}.overflow-x-visible{overflow-x:visible}.overflow-y-visible{overflow-y:visible}.overflow-x-scroll{overflow-x:scroll}.overflow-y-scroll{overflow-y:scroll}.overflow-overlay{overflow:overlay}.static{position:static}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.sticky{position:sticky}.inset-0{inset:0}.inset-auto{inset:auto}.inset-x-0{left:0;right:0}.inset-y-0{bottom:0;top:0}.top-0{top:0}.right-0{right:0}.bottom-0{bottom:0}.left-0{left:0}.top-full{top:100%}.right-full{right:100%}.bottom-full{bottom:100%}.left-full{left:100%}.top-auto{top:auto}.right-auto{right:auto}.bottom-auto{bottom:auto}.left-auto{left:auto}.top-px{top:1px}.right-px{right:1px}.bottom-px{bottom:1px}.left-px{left:1px}.top-0\.5{top:.125rem}.right-0\.5{right:.125rem}.bottom-0\.5{bottom:.125rem}.left-0\.5{left:.125rem}.top-1{top:.25rem}.right-1{right:.25rem}.bottom-1{bottom:.25rem}.left-1{left:.25rem}.top-1\.5{top:.375rem}.right-1\.5{right:.375rem}.bottom-1\.5{bottom:.375rem}.left-1\.5{left:.375rem}.top-2{top:.5rem}.right-2{right:.5rem}.bottom-2{bottom:.5rem}.left-2{left:.5rem}.top-2\.5{top:.625rem}.right-2\.5{right:.625rem}.bottom-2\.5{bottom:.625rem}.left-2\.5{left:.625rem}.top-3{top:.75rem}.right-3{right:.75rem}.bottom-3{bottom:.75rem}.left-3{left:.75rem}.top-3\.5{top:.875rem}.right-3\.5{right:.875rem}.bottom-3\.5{bottom:.875rem}.left-3\.5{left:.875rem}.top-4{top:1rem}.right-4{right:1rem}.bottom-4{bottom:1rem}.left-4{left:1rem}.top-5{top:1.25rem}.right-5{right:1.25rem}.bottom-5{bottom:1.25rem}.left-5{left:1.25rem}.top-6{top:1.5rem}.right-6{right:1.5rem}.bottom-6{bottom:1.5rem}.left-6{left:1.5rem}.top-7{top:1.75rem}.right-7{right:1.75rem}.bottom-7{bottom:1.75rem}.left-7{left:1.75rem}.top-8{top:2rem}.right-8{right:2rem}.bottom-8{bottom:2rem}.left-8{left:2rem}.visible{visibility:visible!important}.invisible{visibility:hidden!important}.z-0{z-index:0}.z-10{z-index:10}.z-20{z-index:20}.z-30{z-index:30}.z-40{z-index:40}.z-50{z-index:50}.z-auto{z-index:auto}.basis-0{flex-basis:0px}.basis-1{flex-basis:.25rem}.basis-2{flex-basis:.5rem}.basis-3{flex-basis:.75rem}.basis-4{flex-basis:1rem}.basis-5{flex-basis:1.25rem}.basis-6{flex-basis:1.5rem}.basis-7{flex-basis:1.75rem}.basis-8{flex-basis:2rem}.basis-9{flex-basis:2.25rem}.basis-10{flex-basis:2.5rem}.basis-11{flex-basis:2.75rem}.basis-12{flex-basis:3rem}.basis-14{flex-basis:3.5rem}.basis-16{flex-basis:4rem}.basis-20{flex-basis:5rem}.basis-24{flex-basis:6rem}.basis-28{flex-basis:7rem}.basis-32{flex-basis:8rem}.basis-36{flex-basis:9rem}.basis-40{flex-basis:10rem}.basis-44{flex-basis:11rem}.basis-48{flex-basis:12rem}.basis-52{flex-basis:13rem}.basis-56{flex-basis:14rem}.basis-60{flex-basis:15rem}.basis-64{flex-basis:16rem}.basis-72{flex-basis:18rem}.basis-80{flex-basis:20rem}.basis-96{flex-basis:24rem}.basis-auto{flex-basis:auto}.basis-px{flex-basis:1px}.basis-0\.5{flex-basis:.125rem}.basis-1\.5{flex-basis:.375rem}.basis-2\.5{flex-basis:.625rem}.basis-3\.5{flex-basis:.875rem}.basis-1\/2{flex-basis:50%}.basis-1\/3{flex-basis:33.333333%}.basis-2\/3{flex-basis:66.666667%}.basis-1\/4{flex-basis:25%}.basis-2\/4{flex-basis:50%}.basis-3\/4{flex-basis:75%}.basis-1\/5{flex-basis:20%}.basis-2\/5{flex-basis:40%}.basis-3\/5{flex-basis:60%}.basis-4\/5{flex-basis:80%}.basis-1\/6{flex-basis:16.666667%}.basis-2\/6{flex-basis:33.333333%}.basis-3\/6{flex-basis:50%}.basis-4\/6{flex-basis:66.666667%}.basis-5\/6{flex-basis:83.333333%}.basis-1\/12{flex-basis:8.333333%}.basis-2\/12{flex-basis:16.666667%}.basis-3\/12{flex-basis:25%}.basis-4\/12{flex-basis:33.333333%}.basis-5\/12{flex-basis:41.666667%}.basis-6\/12{flex-basis:50%}.basis-7\/12{flex-basis:58.333333%}.basis-8\/12{flex-basis:66.666667%}.basis-9\/12{flex-basis:75%}.basis-10\/12{flex-basis:83.333333%}.basis-11\/12{flex-basis:91.666667%}.basis-full{flex-basis:100%}.row{display:flex;flex-direction:row}.center,.col{display:flex;flex-direction:column}.center,.center-row{align-items:center;justify-content:center}.center-row{display:flex;flex-direction:row}.center-x,.center-y{align-items:center;display:flex}.center-y{flex-direction:column}.row-reverse{display:flex;flex-direction:row-reverse}.col-reverse{display:flex;flex-direction:column-reverse}.flex-wrap{flex-wrap:wrap}.flex-wrap-reverse{flex-wrap:wrap-reverse}.flex-nowrap{flex-wrap:nowrap}.flex-1{flex:1 1 0%}.flex-auto{flex:1 1 auto}.flex-initial{flex:0 1 auto}.flex-none{flex:none}.grow{flex-grow:1!important}.grow-0{flex-grow:0!important}.shrink{flex-shrink:1}.shrink-0{flex-shrink:0}.order-1{order:1}.order-2{order:2}.order-3{order:3}.order-4{order:4}.order-5{order:5}.order-6{order:6}.order-7{order:7}.order-8{order:8}.order-9{order:9}.order-10{order:10}.order-11{order:11}.order-12{order:12}.order-first{order:-9999}.order-last{order:9999}.order-none{order:0}.gap-0{gap:0}.gap-x-0{-moz-column-gap:0;column-gap:0}.gap-y-0{row-gap:0}.gap-px{gap:1px}.gap-x-px{-moz-column-gap:1px;column-gap:1px}.gap-y-px{row-gap:1px}.gap-0\.5{gap:.125rem}.gap-x-0\.5{-moz-column-gap:.125rem;column-gap:.125rem}.gap-y-0\.5{row-gap:.125rem}.gap-3px{gap:3px}.gap-1{gap:.25rem}.gap-x-1{-moz-column-gap:.25rem;column-gap:.25rem}.gap-y-1{row-gap:.25rem}.gap-1\.5{gap:.375rem}.gap-x-1\.5{-moz-column-gap:.375rem;column-gap:.375rem}.gap-y-1\.5{row-gap:.375rem}.gap-2{gap:.5rem}.gap-x-2{-moz-column-gap:.5rem;column-gap:.5rem}.gap-y-2{row-gap:.5rem}.gap-2\.5{gap:.625rem}.gap-x-2\.5{-moz-column-gap:.625rem;column-gap:.625rem}.gap-y-2\.5{row-gap:.625rem}.gap-3{gap:.75rem}.gap-x-3{-moz-column-gap:.75rem;column-gap:.75rem}.gap-y-3{row-gap:.75rem}.gap-3\.5{gap:.875rem}.gap-x-3\.5{-moz-column-gap:.875rem;column-gap:.875rem}.gap-y-3\.5{row-gap:.875rem}.gap-4{gap:1rem}.gap-x-4{-moz-column-gap:1rem;column-gap:1rem}.gap-y-4{row-gap:1rem}.gap-5{gap:1.25rem}.gap-x-5{-moz-column-gap:1.25rem;column-gap:1.25rem}.gap-y-5{row-gap:1.25rem}.gap-6{gap:1.5rem}.gap-x-6{-moz-column-gap:1.5rem;column-gap:1.5rem}.gap-y-6{row-gap:1.5rem}.gap-7{gap:1.75rem}.gap-x-7{-moz-column-gap:1.75rem;column-gap:1.75rem}.gap-y-7{row-gap:1.75rem}.gap-8{gap:2rem}.gap-x-8{-moz-column-gap:2rem;column-gap:2rem}.gap-y-8{row-gap:2rem}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.justify-around{justify-content:space-around}.justify-evenly{justify-content:space-evenly}.self-auto{align-self:auto}.self-start{align-self:flex-start}.self-end{align-self:flex-end}.self-center{align-self:center}.self-stretch{align-self:stretch}.self-baseline{align-self:baseline}.content-center{align-content:center}.content-start{align-content:flex-start}.content-end{align-content:flex-end}.content-between{align-content:space-between}.content-around{align-content:space-around}.content-evenly{align-content:space-evenly}.items-start{align-items:flex-start}.items-end{align-items:flex-end}.items-center{align-items:center}.items-baseline{align-items:baseline}.items-stretch{align-items:stretch}.m-0{margin:0}.mx-0{margin-left:0;margin-right:0}.my-0{margin-bottom:0}.mt-0,.my-0{margin-top:0}.mr-0{margin-right:0}.mb-0{margin-bottom:0}.ml-0{margin-left:0}.m-auto{margin:auto}.mx-auto{margin-left:auto;margin-right:auto}.my-auto{margin-bottom:auto}.mt-auto,.my-auto{margin-top:auto}.mr-auto{margin-right:auto}.mb-auto{margin-bottom:auto}.ml-auto{margin-left:auto}.m-px{margin:1px}.mx-px{margin-left:1px;margin-right:1px}.my-px{margin-bottom:1px}.mt-px,.my-px{margin-top:1px}.mr-px{margin-right:1px}.mb-px{margin-bottom:1px}.ml-px{margin-left:1px}.m-0\.5{margin:.125rem}.mx-0\.5{margin-left:.125rem;margin-right:.125rem}.my-0\.5{margin-bottom:.125rem}.mt-0\.5,.my-0\.5{margin-top:.125rem}.mr-0\.5{margin-right:.125rem}.mb-0\.5{margin-bottom:.125rem}.ml-0\.5{margin-left:.125rem}.m-1{margin:.25rem}.mx-1{margin-left:.25rem;margin-right:.25rem}.my-1{margin-bottom:.25rem}.mt-1,.my-1{margin-top:.25rem}.mr-1{margin-right:.25rem}.mb-1{margin-bottom:.25rem}.ml-1{margin-left:.25rem}.m-1\.5{margin:.375rem}.mx-1\.5{margin-left:.375rem;margin-right:.375rem}.my-1\.5{margin-bottom:.375rem}.mt-1\.5,.my-1\.5{margin-top:.375rem}.mr-1\.5{margin-right:.375rem}.mb-1\.5{margin-bottom:.375rem}.ml-1\.5{margin-left:.375rem}.m-2{margin:.5rem}.mx-2{margin-left:.5rem;margin-right:.5rem}.my-2{margin-bottom:.5rem}.mt-2,.my-2{margin-top:.5rem}.mr-2{margin-right:.5rem}.mb-2{margin-bottom:.5rem}.ml-2{margin-left:.5rem}.m-2\.5{margin:.625rem}.mx-2\.5{margin-left:.625rem;margin-right:.625rem}.my-2\.5{margin-bottom:.625rem}.mt-2\.5,.my-2\.5{margin-top:.625rem}.mr-2\.5{margin-right:.625rem}.mb-2\.5{margin-bottom:.625rem}.ml-2\.5{margin-left:.625rem}.m-3{margin:.75rem}.mx-3{margin-left:.75rem;margin-right:.75rem}.my-3{margin-bottom:.75rem}.mt-3,.my-3{margin-top:.75rem}.mr-3{margin-right:.75rem}.mb-3{margin-bottom:.75rem}.ml-3{margin-left:.75rem}.m-3\.5{margin:.875rem}.mx-3\.5{margin-left:.875rem;margin-right:.875rem}.my-3\.5{margin-bottom:.875rem}.mt-3\.5,.my-3\.5{margin-top:.875rem}.mr-3\.5{margin-right:.875rem}.mb-3\.5{margin-bottom:.875rem}.ml-3\.5{margin-left:.875rem}.m-4{margin:1rem}.mx-4{margin-left:1rem;margin-right:1rem}.my-4{margin-bottom:1rem}.mt-4,.my-4{margin-top:1rem}.mr-4{margin-right:1rem}.mb-4{margin-bottom:1rem}.ml-4{margin-left:1rem}.m-5{margin:1.25rem}.mx-5{margin-left:1.25rem;margin-right:1.25rem}.my-5{margin-bottom:1.25rem}.mt-5,.my-5{margin-top:1.25rem}.mr-5{margin-right:1.25rem}.mb-5{margin-bottom:1.25rem}.ml-5{margin-left:1.25rem}.m-6{margin:1.5rem}.mx-6{margin-left:1.5rem;margin-right:1.5rem}.my-6{margin-bottom:1.5rem}.mt-6,.my-6{margin-top:1.5rem}.mr-6{margin-right:1.5rem}.mb-6{margin-bottom:1.5rem}.ml-6{margin-left:1.5rem}.m-7{margin:1.75rem}.mx-7{margin-left:1.75rem;margin-right:1.75rem}.my-7{margin-bottom:1.75rem}.mt-7,.my-7{margin-top:1.75rem}.mr-7{margin-right:1.75rem}.mb-7{margin-bottom:1.75rem}.ml-7{margin-left:1.75rem}.m-8{margin:2rem}.mx-8{margin-left:2rem;margin-right:2rem}.my-8{margin-bottom:2rem}.mt-8,.my-8{margin-top:2rem}.mr-8{margin-right:2rem}.mb-8{margin-bottom:2rem}.ml-8{margin-left:2rem}.m-9{margin:2.25rem}.mx-9{margin-left:2.25rem;margin-right:2.25rem}.my-9{margin-bottom:2.25rem}.mt-9,.my-9{margin-top:2.25rem}.mr-9{margin-right:2.25rem}.mb-9{margin-bottom:2.25rem}.ml-9{margin-left:2.25rem}.m-10{margin:2.5rem}.mx-10{margin-left:2.5rem;margin-right:2.5rem}.my-10{margin-bottom:2.5rem}.mt-10,.my-10{margin-top:2.5rem}.mr-10{margin-right:2.5rem}.mb-10{margin-bottom:2.5rem}.ml-10{margin-left:2.5rem}.p-0{padding:0}.px-0{padding-left:0;padding-right:0}.py-0{padding-bottom:0}.pt-0,.py-0{padding-top:0}.pr-0{padding-right:0}.pb-0{padding-bottom:0}.pl-0{padding-left:0}.p-px{padding:1px}.px-px{padding-left:1px;padding-right:1px}.py-px{padding-bottom:1px}.pt-px,.py-px{padding-top:1px}.pr-px{padding-right:1px}.pb-px{padding-bottom:1px}.pl-px{padding-left:1px}.p-0\.5{padding:.125rem}.px-0\.5{padding-left:.125rem;padding-right:.125rem}.py-0\.5{padding-bottom:.125rem}.pt-0\.5,.py-0\.5{padding-top:.125rem}.pr-0\.5{padding-right:.125rem}.pb-0\.5{padding-bottom:.125rem}.pl-0\.5{padding-left:.125rem}.p-1{padding:.25rem}.px-1{padding-left:.25rem;padding-right:.25rem}.py-1{padding-bottom:.25rem}.pt-1,.py-1{padding-top:.25rem}.pr-1{padding-right:.25rem}.pb-1{padding-bottom:.25rem}.pl-1{padding-left:.25rem}.p-1\.5{padding:.375rem}.px-1\.5{padding-left:.375rem;padding-right:.375rem}.py-1\.5{padding-bottom:.375rem}.pt-1\.5,.py-1\.5{padding-top:.375rem}.pr-1\.5{padding-right:.375rem}.pb-1\.5{padding-bottom:.375rem}.pl-1\.5{padding-left:.375rem}.p-2{padding:.5rem}.px-2{padding-left:.5rem;padding-right:.5rem}.py-2{padding-bottom:.5rem}.pt-2,.py-2{padding-top:.5rem}.pr-2{padding-right:.5rem}.pb-2{padding-bottom:.5rem}.pl-2{padding-left:.5rem}.p-2\.5{padding:.625rem}.px-2\.5{padding-left:.625rem;padding-right:.625rem}.py-2\.5{padding-bottom:.625rem}.pt-2\.5,.py-2\.5{padding-top:.625rem}.pr-2\.5{padding-right:.625rem}.pb-2\.5{padding-bottom:.625rem}.pl-2\.5{padding-left:.625rem}.p-3{padding:.75rem}.px-3{padding-left:.75rem;padding-right:.75rem}.py-3{padding-bottom:.75rem}.pt-3,.py-3{padding-top:.75rem}.pr-3{padding-right:.75rem}.pb-3{padding-bottom:.75rem}.pl-3{padding-left:.75rem}.p-3\.5{padding:.875rem}.px-3\.5{padding-left:.875rem;padding-right:.875rem}.py-3\.5{padding-bottom:.875rem}.pt-3\.5,.py-3\.5{padding-top:.875rem}.pr-3\.5{padding-right:.875rem}.pb-3\.5{padding-bottom:.875rem}.pl-3\.5{padding-left:.875rem}.p-4{padding:1rem}.px-4{padding-left:1rem;padding-right:1rem}.py-4{padding-bottom:1rem}.pt-4,.py-4{padding-top:1rem}.pr-4{padding-right:1rem}.pb-4{padding-bottom:1rem}.pl-4{padding-left:1rem}.p-5{padding:1.25rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.py-5{padding-bottom:1.25rem}.pt-5,.py-5{padding-top:1.25rem}.pr-5{padding-right:1.25rem}.pb-5{padding-bottom:1.25rem}.pl-5{padding-left:1.25rem}.p-6{padding:1.5rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-6{padding-bottom:1.5rem}.pt-6,.py-6{padding-top:1.5rem}.pr-6{padding-right:1.5rem}.pb-6{padding-bottom:1.5rem}.pl-6{padding-left:1.5rem}.p-7{padding:1.75rem}.px-7{padding-left:1.75rem;padding-right:1.75rem}.py-7{padding-bottom:1.75rem}.pt-7,.py-7{padding-top:1.75rem}.pr-7{padding-right:1.75rem}.pb-7{padding-bottom:1.75rem}.pl-7{padding-left:1.75rem}.p-8{padding:2rem}.px-8{padding-left:2rem;padding-right:2rem}.py-8{padding-bottom:2rem}.pt-8,.py-8{padding-top:2rem}.pr-8{padding-right:2rem}.pb-8{padding-bottom:2rem}.pl-8{padding-left:2rem}.p-9{padding:2.25rem}.px-9{padding-left:2.25rem;padding-right:2.25rem}.py-9{padding-bottom:2.25rem}.pt-9,.py-9{padding-top:2.25rem}.pr-9{padding-right:2.25rem}.pb-9{padding-bottom:2.25rem}.pl-9{padding-left:2.25rem}.p-10{padding:2.5rem}.px-10{padding-left:2.5rem;padding-right:2.5rem}.py-10{padding-bottom:2.5rem}.pt-10,.py-10{padding-top:2.5rem}.pr-10{padding-right:2.5rem}.pb-10{padding-bottom:2.5rem}.pl-10{padding-left:2.5rem}.space-x-0>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(0px*(1 - var(--tw-space-x-reverse)));margin-right:calc(0px*var(--tw-space-x-reverse))}.space-y-0>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(0px*var(--tw-space-y-reverse));margin-top:calc(0px*(1 - var(--tw-space-y-reverse)))}.space-x-0\.5>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.125rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.125rem*var(--tw-space-x-reverse))}.space-y-0\.5>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.125rem*var(--tw-space-y-reverse));margin-top:calc(.125rem*(1 - var(--tw-space-y-reverse)))}.space-x-1>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.25rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.25rem*var(--tw-space-x-reverse))}.space-y-1>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.25rem*var(--tw-space-y-reverse));margin-top:calc(.25rem*(1 - var(--tw-space-y-reverse)))}.space-x-1\.5>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.375rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.375rem*var(--tw-space-x-reverse))}.space-y-1\.5>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.375rem*var(--tw-space-y-reverse));margin-top:calc(.375rem*(1 - var(--tw-space-y-reverse)))}.space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.5rem*var(--tw-space-x-reverse))}.space-y-2>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.5rem*var(--tw-space-y-reverse));margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)))}.space-x-2\.5>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.625rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.625rem*var(--tw-space-x-reverse))}.space-y-2\.5>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.625rem*var(--tw-space-y-reverse));margin-top:calc(.625rem*(1 - var(--tw-space-y-reverse)))}.space-x-3>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.75rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.75rem*var(--tw-space-x-reverse))}.space-y-3>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.75rem*var(--tw-space-y-reverse));margin-top:calc(.75rem*(1 - var(--tw-space-y-reverse)))}.space-x-3\.5>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.875rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.875rem*var(--tw-space-x-reverse))}.space-y-3\.5>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.875rem*var(--tw-space-y-reverse));margin-top:calc(.875rem*(1 - var(--tw-space-y-reverse)))}.space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1rem*var(--tw-space-y-reverse));margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)))}.space-x-5>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1.25rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1.25rem*var(--tw-space-x-reverse))}.space-y-5>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1.25rem*var(--tw-space-y-reverse));margin-top:calc(1.25rem*(1 - var(--tw-space-y-reverse)))}.space-x-6>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1.5rem*var(--tw-space-x-reverse))}.space-y-6>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1.5rem*var(--tw-space-y-reverse));margin-top:calc(1.5rem*(1 - var(--tw-space-y-reverse)))}.space-x-7>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1.75rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1.75rem*var(--tw-space-x-reverse))}.space-y-7>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1.75rem*var(--tw-space-y-reverse));margin-top:calc(1.75rem*(1 - var(--tw-space-y-reverse)))}.space-x-8>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(2rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(2rem*var(--tw-space-x-reverse))}.space-y-8>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(2rem*var(--tw-space-y-reverse));margin-top:calc(2rem*(1 - var(--tw-space-y-reverse)))}.w-0{width:0}.w-px{width:1px}.w-0\.5{width:.125rem}.w-1{width:.25rem}.w-1\.5{width:.375rem}.w-2{width:.5rem}.w-2\.5{width:.625rem}.w-3{width:.75rem}.w-3\.5{width:.875rem}.w-4{width:1rem}.w-5{width:1.25rem}.w-6{width:1.5rem}.w-7{width:1.75rem}.w-8{width:2rem}.w-9{width:2.25rem}.w-10{width:2.5rem}.w-11{width:2.75rem}.w-12{width:3rem}.w-14{width:3.5rem}.w-16{width:4rem}.w-20{width:5rem}.w-24{width:6rem}.w-28{width:7rem}.w-32{width:8rem}.w-36{width:9rem}.w-40{width:10rem}.w-44{width:11rem}.w-48{width:12rem}.w-52{width:13rem}.w-56{width:14rem}.w-60{width:15rem}.w-64{width:16rem}.w-72{width:18rem}.w-80{width:20rem}.w-96{width:24rem}.w-auto{width:auto}.w-1\/2{width:50%}.w-1\/3{width:33.333333%}.w-2\/3{width:66.666667%}.w-1\/4{width:25%}.w-2\/4{width:50%}.w-3\/4{width:75%}.w-1\/5{width:20%}.w-2\/5{width:40%}.w-3\/5{width:60%}.w-4\/5{width:80%}.w-1\/6{width:16.666667%}.w-2\/6{width:33.333333%}.w-3\/6{width:50%}.w-4\/6{width:66.666667%}.w-5\/6{width:83.333333%}.w-1\/12{width:8.333333%}.w-2\/12{width:16.666667%}.w-3\/12{width:25%}.w-4\/12{width:33.333333%}.w-5\/12{width:41.666667%}.w-6\/12{width:50%}.w-7\/12{width:58.333333%}.w-8\/12{width:66.666667%}.w-9\/12{width:75%}.w-10\/12{width:83.333333%}.w-11\/12{width:91.666667%}.w-full{width:100%}.w-screen{width:100vw}.w-min{width:-moz-min-content;width:min-content}.w-max{width:-moz-max-content;width:max-content}.w-fit{width:-moz-fit-content;width:fit-content}.max-w-full{max-width:100%}.min-w-0{min-width:0}.h-0{height:0}.h-px{height:1px}.h-0\.5{height:.125rem}.h-1{height:.25rem}.h-1\.5{height:.375rem}.h-2{height:.5rem}.h-2\.5{height:.625rem}.h-3{height:.75rem}.h-3\.5{height:.875rem}.h-4{height:1rem}.h-5{height:1.25rem}.h-6{height:1.5rem}.h-7{height:1.75rem}.h-8{height:2rem}.h-9{height:2.25rem}.h-10{height:2.5rem}.h-11{height:2.75rem}.h-12{height:3rem}.h-14{height:3.5rem}.h-16{height:4rem}.h-20{height:5rem}.h-24{height:6rem}.h-28{height:7rem}.h-32{height:8rem}.h-36{height:9rem}.h-40{height:10rem}.h-44{height:11rem}.h-48{height:12rem}.h-52{height:13rem}.h-56{height:14rem}.h-60{height:15rem}.h-64{height:16rem}.h-72{height:18rem}.h-80{height:20rem}.h-96{height:24rem}.h-auto{height:auto}.h-1\/2{height:50%}.h-1\/3{height:33.333333%}.h-2\/3{height:66.666667%}.h-1\/4{height:25%}.h-2\/4{height:50%}.h-3\/4{height:75%}.h-1\/5{height:20%}.h-2\/5{height:40%}.h-3\/5{height:60%}.h-4\/5{height:80%}.h-1\/6{height:16.666667%}.h-2\/6{height:33.333333%}.h-3\/6{height:50%}.h-4\/6{height:66.666667%}.h-5\/6{height:83.333333%}.h-full{height:100%}.h-screen{height:100vh}.h-min{height:-moz-min-content;height:min-content}.h-max{height:-moz-max-content;height:max-content}.h-fit{height:-moz-fit-content;height:fit-content}.max-h-full{max-height:100%}.min-h-0{min-height:0}.primary-outline{--tw-text-opacity:1;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-primary-500-rgb),var(--tw-ring-opacity));color:rgba(var(--color-primary-500-rgb),var(--tw-text-opacity))}.primary-outline,.secondary-outline{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.secondary-outline{--tw-text-opacity:1;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-secondary-500-rgb),var(--tw-ring-opacity));color:rgba(var(--color-secondary-500-rgb),var(--tw-text-opacity))}.success-outline{--tw-text-opacity:1;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-success-500-rgb),var(--tw-ring-opacity));color:rgba(var(--color-success-500-rgb),var(--tw-text-opacity))}.success-outline,.warning-outline{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.warning-outline{--tw-text-opacity:1;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-warning-500-rgb),var(--tw-ring-opacity));color:rgba(var(--color-warning-500-rgb),var(--tw-text-opacity))}.danger-outline{--tw-text-opacity:1;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-danger-500-rgb),var(--tw-ring-opacity));color:rgba(var(--color-danger-500-rgb),var(--tw-text-opacity))}.danger-outline,.important-outline{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.important-outline{--tw-text-opacity:1;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-important-500-rgb),var(--tw-ring-opacity));color:rgba(var(--color-important-500-rgb),var(--tw-text-opacity))}.special-outline{--tw-text-opacity:1;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-special-500-rgb),var(--tw-ring-opacity));color:rgba(var(--color-special-500-rgb),var(--tw-text-opacity))}.lighter-outline,.special-outline{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.lighter-outline{--tw-text-opacity:1;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-gray-100-rgb),var(--tw-ring-opacity));color:rgba(var(--color-gray-100-rgb),var(--tw-text-opacity))}.light-outline{--tw-text-opacity:1;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-gray-300-rgb),var(--tw-ring-opacity));color:rgba(var(--color-gray-300-rgb),var(--tw-text-opacity))}.gray-outline,.light-outline{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.gray-outline{--tw-text-opacity:1;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-gray-500-rgb),var(--tw-ring-opacity));color:rgba(var(--color-gray-500-rgb),var(--tw-text-opacity))}.darken-outline{--tw-text-opacity:1;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-gray-700-rgb),var(--tw-ring-opacity));color:rgba(var(--color-gray-700-rgb),var(--tw-text-opacity))}.darken-outline,.darker-outline{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.darker-outline{--tw-text-opacity:1;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-gray-900-rgb),var(--tw-ring-opacity));color:rgba(var(--color-gray-900-rgb),var(--tw-text-opacity))}.black-outline{--tw-text-opacity:1;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-black-rgb),var(--tw-ring-opacity));box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);color:rgba(var(--color-black-rgb),var(--tw-text-opacity))}.primary-pale{--tw-bg-opacity:1;--tw-text-opacity:1;--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-primary-100-rgb),var(--tw-ring-opacity));background-color:rgba(var(--color-primary-100-rgb),var(--tw-bg-opacity));color:rgba(var(--color-primary-500-rgb),var(--tw-text-opacity))}.secondary-pale{--tw-bg-opacity:1;--tw-text-opacity:1;--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-secondary-100-rgb),var(--tw-ring-opacity));background-color:rgba(var(--color-secondary-100-rgb),var(--tw-bg-opacity));color:rgba(var(--color-secondary-500-rgb),var(--tw-text-opacity))}.success-pale{--tw-bg-opacity:1;--tw-text-opacity:1;--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-success-100-rgb),var(--tw-ring-opacity));background-color:rgba(var(--color-success-100-rgb),var(--tw-bg-opacity));color:rgba(var(--color-success-500-rgb),var(--tw-text-opacity))}.warning-pale{--tw-bg-opacity:1;--tw-text-opacity:1;--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-warning-100-rgb),var(--tw-ring-opacity));background-color:rgba(var(--color-warning-100-rgb),var(--tw-bg-opacity));color:rgba(var(--color-warning-500-rgb),var(--tw-text-opacity))}.danger-pale{--tw-bg-opacity:1;--tw-text-opacity:1;--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-danger-100-rgb),var(--tw-ring-opacity));background-color:rgba(var(--color-danger-100-rgb),var(--tw-bg-opacity));color:rgba(var(--color-danger-500-rgb),var(--tw-text-opacity))}.important-pale{--tw-bg-opacity:1;--tw-text-opacity:1;--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-important-100-rgb),var(--tw-ring-opacity));background-color:rgba(var(--color-important-100-rgb),var(--tw-bg-opacity));color:rgba(var(--color-important-500-rgb),var(--tw-text-opacity))}.special-pale{--tw-bg-opacity:1;--tw-text-opacity:1;--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-special-100-rgb),var(--tw-ring-opacity));background-color:rgba(var(--color-special-100-rgb),var(--tw-bg-opacity));color:rgba(var(--color-special-500-rgb),var(--tw-text-opacity))}.lighter-pale{--tw-bg-opacity:1;--tw-text-opacity:1;--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-gray-100-rgb),var(--tw-ring-opacity));background-color:rgba(var(--color-gray-100-rgb),var(--tw-bg-opacity));color:rgba(var(--color-gray-500-rgb),var(--tw-text-opacity))}.light-pale{--tw-bg-opacity:1;--tw-text-opacity:1;--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-gray-200-rgb),var(--tw-ring-opacity));background-color:rgba(var(--color-gray-200-rgb),var(--tw-bg-opacity));color:rgba(var(--color-gray-600-rgb),var(--tw-text-opacity))}.gray-pale{--tw-bg-opacity:1;--tw-text-opacity:1;--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-gray-300-rgb),var(--tw-ring-opacity));background-color:rgba(var(--color-gray-300-rgb),var(--tw-bg-opacity))}.darken-pale,.gray-pale{color:rgba(var(--color-gray-700-rgb),var(--tw-text-opacity))}.darken-pale{--tw-bg-opacity:1;--tw-text-opacity:1;--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-gray-400-rgb),var(--tw-ring-opacity));background-color:rgba(var(--color-gray-400-rgb),var(--tw-bg-opacity))}.primary{--tw-bg-opacity:1;--tw-text-opacity:1;--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-primary-500-rgb),var(--tw-ring-opacity));background-color:rgba(var(--color-primary-500-rgb),var(--tw-bg-opacity))}.primary,.primary:hover{color:rgba(var(--color-white-rgb),var(--tw-text-opacity))}.primary:hover{--tw-text-opacity:1}.secondary{--tw-bg-opacity:1;--tw-text-opacity:1;--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-secondary-500-rgb),var(--tw-ring-opacity));background-color:rgba(var(--color-secondary-500-rgb),var(--tw-bg-opacity))}.secondary,.secondary:hover{color:rgba(var(--color-white-rgb),var(--tw-text-opacity))}.secondary:hover{--tw-text-opacity:1}.success{--tw-bg-opacity:1;--tw-text-opacity:1;--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-success-500-rgb),var(--tw-ring-opacity));background-color:rgba(var(--color-success-500-rgb),var(--tw-bg-opacity))}.success,.success:hover{color:rgba(var(--color-white-rgb),var(--tw-text-opacity))}.success:hover{--tw-text-opacity:1}.warning{--tw-bg-opacity:1;--tw-text-opacity:1;--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-warning-500-rgb),var(--tw-ring-opacity));background-color:rgba(var(--color-warning-500-rgb),var(--tw-bg-opacity))}.warning,.warning:hover{color:rgba(var(--color-white-rgb),var(--tw-text-opacity))}.warning:hover{--tw-text-opacity:1}.danger{--tw-bg-opacity:1;--tw-text-opacity:1;--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-danger-500-rgb),var(--tw-ring-opacity));background-color:rgba(var(--color-danger-500-rgb),var(--tw-bg-opacity))}.danger,.danger:hover{color:rgba(var(--color-white-rgb),var(--tw-text-opacity))}.danger:hover{--tw-text-opacity:1}.important{--tw-bg-opacity:1;--tw-text-opacity:1;--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-important-500-rgb),var(--tw-ring-opacity));background-color:rgba(var(--color-important-500-rgb),var(--tw-bg-opacity))}.important,.important:hover{color:rgba(var(--color-white-rgb),var(--tw-text-opacity))}.important:hover{--tw-text-opacity:1}.special{--tw-bg-opacity:1;--tw-text-opacity:1;--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-special-500-rgb),var(--tw-ring-opacity));background-color:rgba(var(--color-special-500-rgb),var(--tw-bg-opacity))}.special,.special:hover{color:rgba(var(--color-white-rgb),var(--tw-text-opacity))}.special:hover{--tw-text-opacity:1}.white{--tw-bg-opacity:1;--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-white-rgb),var(--tw-ring-opacity));background-color:rgba(var(--color-white-rgb),var(--tw-bg-opacity))}.lighter{--tw-bg-opacity:1;--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-gray-100-rgb),var(--tw-ring-opacity));background-color:rgba(var(--color-gray-100-rgb),var(--tw-bg-opacity))}.light{--tw-bg-opacity:1;--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-gray-300-rgb),var(--tw-ring-opacity));background-color:rgba(var(--color-gray-300-rgb),var(--tw-bg-opacity))}.gray{--tw-bg-opacity:1;--tw-text-opacity:1;--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-gray-500-rgb),var(--tw-ring-opacity));background-color:rgba(var(--color-gray-500-rgb),var(--tw-bg-opacity))}.gray,.gray:hover{color:rgba(var(--color-white-rgb),var(--tw-text-opacity))}.gray:hover{--tw-text-opacity:1}.darken{--tw-bg-opacity:1;--tw-text-opacity:1;--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-gray-700-rgb),var(--tw-ring-opacity));background-color:rgba(var(--color-gray-700-rgb),var(--tw-bg-opacity))}.darken,.darken:hover{color:rgba(var(--color-white-rgb),var(--tw-text-opacity))}.darken:hover{--tw-text-opacity:1}.darker{--tw-bg-opacity:1;--tw-text-opacity:1;--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-gray-900-rgb),var(--tw-ring-opacity));background-color:rgba(var(--color-gray-900-rgb),var(--tw-bg-opacity))}.darker,.darker:hover{color:rgba(var(--color-white-rgb),var(--tw-text-opacity))}.darker:hover{--tw-text-opacity:1}.black{--tw-bg-opacity:1;--tw-text-opacity:1;--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-black-rgb),var(--tw-ring-opacity));background-color:rgba(var(--color-black-rgb),var(--tw-bg-opacity))}.black,.black:hover{color:rgba(var(--color-white-rgb),var(--tw-text-opacity))}.black:hover{--tw-text-opacity:1}.surface{--tw-bg-opacity:1;--tw-text-opacity:1;--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-surface-rgb),var(--tw-ring-opacity));background-color:rgba(var(--color-surface-rgb),var(--tw-bg-opacity))}.canvas,.surface{color:rgba(var(--color-fore-rgb),var(--tw-text-opacity))}.canvas{--tw-bg-opacity:1;--tw-text-opacity:1;--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-canvas-rgb),var(--tw-ring-opacity));background-color:rgba(var(--color-canvas-rgb),var(--tw-bg-opacity))}.inverse{--tw-bg-opacity:1;--tw-text-opacity:1;--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-fore-rgb),var(--tw-ring-opacity));background-color:rgba(var(--color-fore-rgb),var(--tw-bg-opacity));color:rgba(var(--color-canvas-rgb),var(--tw-text-opacity))}.ghost{--tw-ring-color:var(--color-transparent);background-color:var(--color-transparent)}.font-sans{font-family:-apple-system,Noto Sans,Helvetica Neue,Helvetica,Nimbus Sans L,Arial,Liberation Sans,PingFang SC,Hiragino Sans GB,Noto Sans CJK SC,Source Han Sans SC,Source Han Sans CN,Microsoft YaHei,Wenquanyi Micro Hei,WenQuanYi Zen Hei,ST Heiti,SimHei,WenQuanYi Zen Hei Sharp,sans-serif}.font-serif{font-family:Nimbus Roman No9 L,Songti SC,Noto Serif CJK SC,Source Han Serif SC,Source Han Serif CN,STSong,AR PL New Sung,AR PL SungtiL GB,NSimSun,SimSun,TW-Sung,WenQuanYi Bitmap Song,AR PL UMing CN,AR PL UMing HK,AR PL UMing TW,AR PL UMing TW MBE,PMingLiU,MingLiU,serif}.font-mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.text-root{font-size:16px}.text-sm{font-size:.75rem;line-height:1rem}.text-base{font-size:.8125rem;line-height:1.25rem}.text-md{font-size:.875rem;line-height:1.3rem}.text-lg{font-size:1rem;line-height:1.5rem}.text-xl{font-size:1.125rem;line-height:1.75rem}.text-2xl{font-size:1.5rem;line-height:2rem}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-4xl{font-size:2.25rem;line-height:2.5rem}.font-thin{font-weight:100}.font-light{font-weight:300}.font-normal{font-weight:400}.font-medium{font-weight:500}.font-semibold{font-weight:600}.font-bold{font-weight:700}.font-black{font-weight:900}.leading-3{line-height:.75rem}.leading-4{line-height:1rem}.leading-5{line-height:1.25rem}.leading-6{line-height:1.5rem}.leading-7{line-height:1.75rem}.leading-8{line-height:2rem}.leading-9{line-height:2.25rem}.leading-10{line-height:2.5rem}.leading-none{line-height:1}.leading-tight{line-height:1.25}.leading-snug{line-height:1.375}.leading-normal{line-height:1.5}.leading-relaxed{line-height:1.625}.leading-loose{line-height:2}.line-2{-webkit-line-clamp:2}.line-2,.line-3{-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}.line-3{-webkit-line-clamp:3}.line-4{-webkit-line-clamp:4}.line-4,.line-5{-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}.line-5{-webkit-line-clamp:5}.line-6{-webkit-box-orient:vertical;-webkit-line-clamp:6;display:-webkit-box;overflow:hidden}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.text-justify{text-align:justify}.align-middle{vertical-align:middle}.align-top{vertical-align:top}.align-bottom{vertical-align:bottom}.align-sub{vertical-align:sub}.align-super{vertical-align:super}.text-primary{--tw-text-opacity:1;color:rgba(var(--color-primary-500-rgb),var(--tw-text-opacity))}.text-secondary{--tw-text-opacity:1;color:rgba(var(--color-secondary-500-rgb),var(--tw-text-opacity))}.text-success{--tw-text-opacity:1;color:rgba(var(--color-success-500-rgb),var(--tw-text-opacity))}.text-warning{--tw-text-opacity:1;color:rgba(var(--color-warning-500-rgb),var(--tw-text-opacity))}.text-danger{--tw-text-opacity:1;color:rgba(var(--color-danger-500-rgb),var(--tw-text-opacity))}.text-important{--tw-text-opacity:1;color:rgba(var(--color-important-500-rgb),var(--tw-text-opacity))}.text-special{--tw-text-opacity:1;color:rgba(var(--color-special-500-rgb),var(--tw-text-opacity))}.text-white{--tw-text-opacity:1;color:rgba(var(--color-white-rgb),var(--tw-text-opacity))}.text-lighter{--tw-text-opacity:1;color:rgba(var(--color-gray-300-rgb),var(--tw-text-opacity))}.text-light{--tw-text-opacity:1;color:rgba(var(--color-gray-400-rgb),var(--tw-text-opacity))}.text-gray{--tw-text-opacity:1;color:rgba(var(--color-gray-500-rgb),var(--tw-text-opacity))}.text-dark{--tw-text-opacity:1;color:rgba(var(--color-gray-600-rgb),var(--tw-text-opacity))}.text-darken{--tw-text-opacity:1;color:rgba(var(--color-gray-700-rgb),var(--tw-text-opacity))}.text-darker{--tw-text-opacity:1;color:rgba(var(--color-gray-900-rgb),var(--tw-text-opacity))}.text-black{--tw-text-opacity:1;color:rgba(var(--color-black-rgb),var(--tw-text-opacity))}.text-canvas{--tw-text-opacity:1;color:rgba(var(--color-canvas-rgb),var(--tw-text-opacity))}.text-surface{--tw-text-opacity:1;color:rgba(var(--color-surface-rgb),var(--tw-text-opacity))}.text-inverse{--tw-text-opacity:1;color:rgba(var(--color-inverse-rgb),var(--tw-text-opacity))}.text-fore{--tw-text-opacity:1;color:rgba(var(--color-fore-rgb),var(--tw-text-opacity))}.text-focus{--tw-text-opacity:1;color:rgba(var(--color-focus-rgb),var(--tw-text-opacity))}.text-link{--tw-text-opacity:1;color:rgba(var(--color-link-rgb),var(--tw-text-opacity))}.text-link-hover{--tw-text-opacity:1;color:rgba(var(--color-link-hover-rgb),var(--tw-text-opacity))}.text-transparent{color:transparent}.text-current{color:currentColor}.text-inherit{color:inherit}.clip,.ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.clip{text-overflow:clip}.nowrap{white-space:nowrap}.pre{white-space:pre}.pre-line{white-space:pre-line}.pre-wrap{white-space:pre-wrap}.break-normal{overflow-wrap:normal;word-break:normal}.break-words{overflow-wrap:break-word}.break-all{word-break:break-all}.text-opacity-0{--tw-text-opacity:0}.text-opacity-10{--tw-text-opacity:.1}.text-opacity-20{--tw-text-opacity:.2}.text-opacity-30{--tw-text-opacity:.3}.text-opacity-40{--tw-text-opacity:.4}.text-opacity-50{--tw-text-opacity:.5}.text-opacity-60{--tw-text-opacity:.6}.text-opacity-70{--tw-text-opacity:.7}.text-opacity-80{--tw-text-opacity:.8}.text-opacity-90{--tw-text-opacity:.9}.text-opacity-100{--tw-text-opacity:1}.uppercase{text-transform:uppercase}.lowercase{text-transform:lowercase}.capitalize{text-transform:capitalize}.normal-case{text-transform:none}.underline{text-decoration-line:underline}.overline{text-decoration-line:overline}.line-through{text-decoration-line:line-through}.no-underline{text-decoration-line:none}.bg-primary{--tw-bg-opacity:1;background-color:rgba(var(--color-primary-500-rgb),var(--tw-bg-opacity))}.bg-secondary{--tw-bg-opacity:1;background-color:rgba(var(--color-secondary-500-rgb),var(--tw-bg-opacity))}.bg-success{--tw-bg-opacity:1;background-color:rgba(var(--color-success-500-rgb),var(--tw-bg-opacity))}.bg-warning{--tw-bg-opacity:1;background-color:rgba(var(--color-warning-500-rgb),var(--tw-bg-opacity))}.bg-danger{--tw-bg-opacity:1;background-color:rgba(var(--color-danger-500-rgb),var(--tw-bg-opacity))}.bg-important{--tw-bg-opacity:1;background-color:rgba(var(--color-important-500-rgb),var(--tw-bg-opacity))}.bg-special{--tw-bg-opacity:1;background-color:rgba(var(--color-special-500-rgb),var(--tw-bg-opacity))}.bg-white{--tw-bg-opacity:1;background-color:rgba(var(--color-white-rgb),var(--tw-bg-opacity))}.bg-lighter{--tw-bg-opacity:1;background-color:rgba(var(--color-gray-300-rgb),var(--tw-bg-opacity))}.bg-light{--tw-bg-opacity:1;background-color:rgba(var(--color-gray-400-rgb),var(--tw-bg-opacity))}.bg-gray{--tw-bg-opacity:1;background-color:rgba(var(--color-gray-500-rgb),var(--tw-bg-opacity))}.bg-dark{--tw-bg-opacity:1;background-color:rgba(var(--color-gray-600-rgb),var(--tw-bg-opacity))}.bg-darken{--tw-bg-opacity:1;background-color:rgba(var(--color-gray-700-rgb),var(--tw-bg-opacity))}.bg-darker{--tw-bg-opacity:1;background-color:rgba(var(--color-gray-900-rgb),var(--tw-bg-opacity))}.bg-black{--tw-bg-opacity:1;background-color:rgba(var(--color-black-rgb),var(--tw-bg-opacity))}.bg-canvas{--tw-bg-opacity:1;background-color:rgba(var(--color-canvas-rgb),var(--tw-bg-opacity))}.bg-surface{--tw-bg-opacity:1;background-color:rgba(var(--color-surface-rgb),var(--tw-bg-opacity))}.bg-inverse{--tw-bg-opacity:1;background-color:rgba(var(--color-fore-rgb),var(--tw-bg-opacity))}.bg-transparent{background-color:transparent}.bg-inherit{background-color:inherit}.bg-none{background:none}.bg-current{background:currentColor}.bg-opacity-0{--tw-bg-opacity:0}.bg-opacity-10{--tw-bg-opacity:.1}.bg-opacity-20{--tw-bg-opacity:.2}.bg-opacity-30{--tw-bg-opacity:.3}.bg-opacity-40{--tw-bg-opacity:.4}.bg-opacity-50{--tw-bg-opacity:.5}.bg-opacity-60{--tw-bg-opacity:.6}.bg-opacity-70{--tw-bg-opacity:.7}.bg-opacity-80{--tw-bg-opacity:.8}.bg-opacity-90{--tw-bg-opacity:.9}.bg-opacity-100{--tw-bg-opacity:1}.border{border-width:1px}.border-t{border-top-width:1px}.border-l{border-left-width:1px}.border-r{border-right-width:1px}.border-b{border-bottom-width:1px}.border-2{border-width:2px}.border-t-2{border-top-width:2px}.border-l-2{border-left-width:2px}.border-r-2{border-right-width:2px}.border-b-2{border-bottom-width:2px}.border-4{border-width:4px}.border-t-4{border-top-width:4px}.border-l-4{border-left-width:4px}.border-r-4{border-right-width:4px}.border-b-4{border-bottom-width:4px}.border-0{border-width:0}.border-t-0{border-top-width:0}.border-r-0{border-right-width:0}.border-b-0{border-bottom-width:0}.border-l-0{border-left-width:0}.border-primary{--tw-border-opacity:1;border-color:rgba(var(--color-primary-500-rgb),var(--tw-border-opacity))}.border-secondary{--tw-border-opacity:1;border-color:rgba(var(--color-secondary-500-rgb),var(--tw-border-opacity))}.border-success{--tw-border-opacity:1;border-color:rgba(var(--color-success-500-rgb),var(--tw-border-opacity))}.border-warning{--tw-border-opacity:1;border-color:rgba(var(--color-warning-500-rgb),var(--tw-border-opacity))}.border-danger{--tw-border-opacity:1;border-color:rgba(var(--color-danger-500-rgb),var(--tw-border-opacity))}.border-important{--tw-border-opacity:1;border-color:rgba(var(--color-important-500-rgb),var(--tw-border-opacity))}.border-special{--tw-border-opacity:1;border-color:rgba(var(--color-special-500-rgb),var(--tw-border-opacity))}.border-strong{--tw-border-opacity:1;border-color:rgba(var(--color-border-strong-rgb),var(--tw-border-opacity))}.border-white{--tw-border-opacity:1;border-color:rgba(var(--color-white-rgb),var(--tw-border-opacity))}.border-lighter{--tw-border-opacity:1;border-color:rgba(var(--color-gray-100-rgb),var(--tw-border-opacity))}.border-light{--tw-border-opacity:1;border-color:rgba(var(--color-gray-300-rgb),var(--tw-border-opacity))}.border-gray{--tw-border-opacity:1;border-color:rgba(var(--color-gray-500-rgb),var(--tw-border-opacity))}.border-darken{--tw-border-opacity:1;border-color:rgba(var(--color-gray-700-rgb),var(--tw-border-opacity))}.border-darker{--tw-border-opacity:1;border-color:rgba(var(--color-gray-900-rgb),var(--tw-border-opacity))}.border-black{--tw-border-opacity:1;border-color:rgba(var(--color-black-rgb),var(--tw-border-opacity))}.border-canvas{--tw-border-opacity:1;border-color:rgba(var(--color-canvas-rgb),var(--tw-border-opacity))}.border-surface{--tw-border-opacity:1;border-color:rgba(var(--color-surface-rgb),var(--tw-border-opacity))}.border-inverse{--tw-border-opacity:1;border-color:rgba(var(--color-fore-rgb),var(--tw-border-opacity))}.border-transparent{border-color:transparent}.border-current{border-color:currentColor}.border-inherit{border-color:inherit}.border-solid{border-style:solid}.border-dashed{border-style:dashed}.border-dotted{border-style:dotted}.border-double{border-style:double}.border-hidden{border-style:hidden}.border-none{border-style:none}.border-opacity-0{--tw-border-opacity:0}.border-opacity-10{--tw-border-opacity:.1}.border-opacity-20{--tw-border-opacity:.2}.border-opacity-30{--tw-border-opacity:.3}.border-opacity-40{--tw-border-opacity:.4}.border-opacity-50{--tw-border-opacity:.5}.border-opacity-60{--tw-border-opacity:.6}.border-opacity-70{--tw-border-opacity:.7}.border-opacity-80{--tw-border-opacity:.8}.border-opacity-90{--tw-border-opacity:.9}.border-opacity-100{--tw-border-opacity:1}.rounded-none{border-radius:var(--radius-none)}.rounded-sm{border-radius:var(--radius-sm)}.rounded{border-radius:var(--radius)}.rounded-md{border-radius:var(--radius-md)}.rounded-lg{border-radius:var(--radius-lg)}.rounded-xl{border-radius:var(--radius-xl)}.rounded-2xl{border-radius:var(--radius-2xl)}.rounded-3xl{border-radius:var(--radius-3xl)}.circle,.rounded-full{border-radius:var(--radius-full)}.rounded-l-none{border-bottom-left-radius:var(--radius-none);border-top-left-radius:var(--radius-none)}.rounded-t-none{border-top-left-radius:var(--radius-none)}.rounded-r-none,.rounded-t-none{border-top-right-radius:var(--radius-none)}.rounded-b-none,.rounded-r-none{border-bottom-right-radius:var(--radius-none)}.rounded-b-none{border-bottom-left-radius:var(--radius-none)}.rounded-br-none{border-bottom-right-radius:var(--radius-none)}.rounded-bl-none{border-bottom-left-radius:var(--radius-none)}.rounded-tr-none{border-top-right-radius:var(--radius-none)}.rounded-tl-none{border-top-left-radius:var(--radius-none)}.ring{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-border-strong-rgb),var(--tw-ring-opacity))}.ring,.ring-0{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.ring-0{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(var(--tw-ring-offset-width)) var(--tw-ring-color)}.ring-2{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.ring-2,.ring-3{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.ring-3{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.ring-4{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.ring-4,.ring-8{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.ring-8{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.ring-inset{--tw-ring-inset:inset}.ring-inverse{--tw-ring-opacity:1}.ring-inverse,.ring-light{--tw-ring-color:rgba(var(--color-inverse-rgb),var(--tw-ring-opacity))}.ring-light{--tw-ring-opacity:.05}.ring-dark{--tw-ring-color:rgba(var(--color-inverse-rgb),var(--tw-ring-opacity));--tw-ring-opacity:.2}.ring-darker{--tw-ring-color:rgba(var(--color-inverse-rgb),var(--tw-ring-opacity));--tw-ring-opacity:.3}.ring-darkest{--tw-ring-color:rgba(var(--color-inverse-rgb),var(--tw-ring-opacity));--tw-ring-opacity:.5}.ring-primary{--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-primary-500-rgb),var(--tw-ring-opacity))}.ring-secondary{--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-secondary-500-rgb),var(--tw-ring-opacity))}.ring-warning{--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-warning-500-rgb),var(--tw-ring-opacity))}.ring-success{--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-success-500-rgb),var(--tw-ring-opacity))}.ring-danger{--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-danger-500-rgb),var(--tw-ring-opacity))}.ring-important{--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-important-500-rgb),var(--tw-ring-opacity))}.ring-special{--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-special-500-rgb),var(--tw-ring-opacity))}.ring-inherit{--tw-ring-color:var(--color-inherit)}.ring-current{--tw-ring-color:var(--color-current)}.ring-transparent{--tw-ring-color:var(--color-transparent)}.ring-canvas{--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-canvas-rgb),var(--tw-ring-opacity))}.ring-black{--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-black-rgb),var(--tw-ring-opacity))}.ring-white{--tw-ring-opacity:1;--tw-ring-color:rgba(var(--color-white-rgb),var(--tw-ring-opacity))}.ring-opacity-0{--tw-ring-opacity:0}.ring-opacity-5{--tw-ring-opacity:.05}.ring-opacity-10{--tw-ring-opacity:.1}.ring-opacity-20{--tw-ring-opacity:.2}.ring-opacity-30{--tw-ring-opacity:.3}.ring-opacity-40{--tw-ring-opacity:.4}.ring-opacity-50{--tw-ring-opacity:.5}.ring-opacity-60{--tw-ring-opacity:.6}.ring-opacity-70{--tw-ring-opacity:.7}.ring-opacity-80{--tw-ring-opacity:.8}.ring-opacity-90{--tw-ring-opacity:.9}.ring-opacity-100{--tw-ring-opacity:1}.ring-offset-0{--tw-ring-offset-width:0px}.ring-offset-1{--tw-ring-offset-width:1px}.ring-offset-2{--tw-ring-offset-width:2px}.ring-offset-4{--tw-ring-offset-width:4px}.ring-offset-8{--tw-ring-offset-width:8px}.shadow-sm{--tw-shadow:var(--shadow-sm);--tw-shadow-colored:var(--shadow-sm)}.shadow,.shadow-sm{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow{--tw-shadow:var(--shadow);--tw-shadow-colored:var(--shadow)}.shadow-md{--tw-shadow:var(--shadow-md);--tw-shadow-colored:var(--shadow-md)}.shadow-lg,.shadow-md{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-lg{--tw-shadow:var(--shadow-lg);--tw-shadow-colored:var(--shadow-lg)}.shadow-xl{--tw-shadow:var(--shadow-xl);--tw-shadow-colored:var(--shadow-xl)}.shadow-2xl,.shadow-xl{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-2xl{--tw-shadow:var(--shadow-2xl);--tw-shadow-colored:var(--shadow-2xl)}.shadow-inner{--tw-shadow:var(--shadow-inner);--tw-shadow-colored:var(--shadow-inner)}.shadow-inner,.shadow-none{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-none{--tw-shadow:var(--shadow-none);--tw-shadow-colored:var(--shadow-none)}.shadow-primary{--tw-shadow-color:rgb(var(--color-primary-500-rgb));--tw-shadow:var(--tw-shadow-colored)}.shadow-secondary{--tw-shadow-color:rgb(var(--color-secondary-500-rgb));--tw-shadow:var(--tw-shadow-colored)}.shadow-success{--tw-shadow-color:rgb(var(--color-success-500-rgb));--tw-shadow:var(--tw-shadow-colored)}.shadow-warning{--tw-shadow-color:rgb(var(--color-warning-500-rgb));--tw-shadow:var(--tw-shadow-colored)}.shadow-danger{--tw-shadow-color:rgb(var(--color-danger-500-rgb));--tw-shadow:var(--tw-shadow-colored)}.shadow-important{--tw-shadow-color:rgb(var(--color-important-500-rgb));--tw-shadow:var(--tw-shadow-colored)}.shadow-special{--tw-shadow-color:rgb(var(--color-special-500-rgb));--tw-shadow:var(--tw-shadow-colored)}.shadow-white{--tw-shadow-color:rgb(var(--color-white-rgb));--tw-shadow:var(--tw-shadow-colored)}.shadow-lighter{--tw-shadow-color:rgb(var(--color-gray-100-rgb));--tw-shadow:var(--tw-shadow-colored)}.shadow-light{--tw-shadow-color:rgb(var(--color-gray-300-rgb));--tw-shadow:var(--tw-shadow-colored)}.shadow-gray{--tw-shadow-color:rgb(var(--color-gray-500-rgb));--tw-shadow:var(--tw-shadow-colored)}.shadow-dark{--tw-shadow-color:rgb(var(--color-gray-700-rgb));--tw-shadow:var(--tw-shadow-colored)}.shadow-darker{--tw-shadow-color:rgb(var(--color-gray-900-rgb));--tw-shadow:var(--tw-shadow-colored)}.shadow-black{--tw-shadow-color:rgb(var(--color-black-rgb));--tw-shadow:var(--tw-shadow-colored)}.shadow-transparent{--tw-shadow-color:var(--color-transparent);--tw-shadow:var(--tw-shadow-colored)}.shadow-current{--tw-shadow-color:var(--color-current);--tw-shadow:var(--tw-shadow-colored)}.shadow-inherit{--tw-shadow-color:var(--color-inherit);--tw-shadow:var(--tw-shadow-colored)}.opacity-0{opacity:0}.opacity-5{opacity:.05}.opacity-10{opacity:.1}.opacity-20{opacity:.2}.opacity-25{opacity:.25}.opacity-30{opacity:.3}.opacity-40{opacity:.4}.opacity-50{opacity:.5}.opacity-60{opacity:.6}.opacity-70{opacity:.7}.opacity-75{opacity:.75}.opacity-80{opacity:.8}.opacity-90{opacity:.9}.opacity-95{opacity:.95}.opacity-100{opacity:1}.blur-none{--tw-blur:blur(0)}.blur-none,.blur-sm{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.blur-sm{--tw-blur:blur(4px)}.blur{--tw-blur:blur(8px)}.blur,.blur-md{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.blur-md{--tw-blur:blur(12px)}.blur-lg{--tw-blur:blur(16px)}.blur-lg,.blur-xl{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.blur-xl{--tw-blur:blur(24px)}.grayscale{--tw-grayscale:grayscale(100%)}.grayscale,.invert{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.invert{--tw-invert:invert(100%)}.drop-shadow-none{--tw-drop-shadow:drop-shadow(0 0 #0000)}.drop-shadow-none,.drop-shadow-sm{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.drop-shadow-sm{--tw-drop-shadow:drop-shadow(0 1px 1px rgba(0,0,0,.05))}.drop-shadow{--tw-drop-shadow:drop-shadow(0 1px 2px rgba(0,0,0,.1)) drop-shadow(0 1px 1px rgba(0,0,0,.06))}.drop-shadow,.drop-shadow-md{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.drop-shadow-md{--tw-drop-shadow:drop-shadow(0 4px 3px rgba(0,0,0,.07)) drop-shadow(0 2px 2px rgba(0,0,0,.06))}.drop-shadow-lg{--tw-drop-shadow:drop-shadow(0 10px 8px rgba(0,0,0,.04)) drop-shadow(0 4px 3px rgba(0,0,0,.1))}.drop-shadow-lg,.drop-shadow-xl{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.drop-shadow-xl{--tw-drop-shadow:drop-shadow(0 20px 13px rgba(0,0,0,.03)) drop-shadow(0 8px 5px rgba(0,0,0,.08))}.drop-shadow-2xl{--tw-drop-shadow:drop-shadow(0 25px 25px rgba(0,0,0,.15));filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.backdrop-blur-none{--tw-backdrop-blur:blur(0)}.backdrop-blur-none,.backdrop-blur-sm{-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.backdrop-blur-sm{--tw-backdrop-blur:blur(4px)}.backdrop-blur{--tw-backdrop-blur:blur(8px)}.backdrop-blur,.backdrop-blur-md{-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.backdrop-blur-md{--tw-backdrop-blur:blur(12px)}.backdrop-blur-lg{--tw-backdrop-blur:blur(16px)}.backdrop-blur-lg,.backdrop-blur-xl{-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.backdrop-blur-xl{--tw-backdrop-blur:blur(24px)}.backdrop-blur-2xl{--tw-backdrop-blur:blur(40px)}.backdrop-blur-2xl,.backdrop-blur-3xl{-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.backdrop-blur-3xl{--tw-backdrop-blur:blur(64px)}.transition{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-all{transition-duration:.15s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-colors{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-opacity{transition-duration:.15s;transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-shadow{transition-duration:.15s;transition-property:box-shadow;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-transform{transition-duration:.15s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1)}.fade,.fade-from-bottom,.fade-from-center,.fade-from-left,.fade-from-right,.fade-from-top{opacity:0;transition-duration:.15s;transition-property:opacity,transform;transition-timing-function:cubic-bezier(.4,0,.2,1)}.fade-from-bottom,.fade-from-center,.fade-from-left,.fade-from-right,.fade-from-top{--tw-scale-x:.9;--tw-scale-y:.9}.fade-from-bottom,.fade-from-center,.fade-from-left,.fade-from-right,.fade-from-top{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.fade-from-bottom{--tw-translate-y:25%}.fade-from-top{--tw-translate-y:-25%}.fade-from-left,.fade-from-top{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.fade-from-left{--tw-translate-x:-25%}.fade-from-right{--tw-translate-x:25%}.fade-from-bottom.in,.fade-from-center.in,.fade-from-left.in,.fade-from-right,.fade-from-right.in,.fade-from-top.in,.fade.in{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.fade-from-bottom.in,.fade-from-center.in,.fade-from-left.in,.fade-from-right.in,.fade-from-top.in,.fade.in{--tw-translate-x:0px;--tw-translate-y:0px;--tw-scale-x:1;--tw-scale-y:1;opacity:1}.duration-75{transition-duration:75ms}.duration-100{transition-duration:.1s}.duration-200{transition-duration:.2s}.duration-300{transition-duration:.3s}.duration-500{transition-duration:.5s}.duration-1000{transition-duration:1s}@keyframes -spin{to{transform:rotate(1turn)}}.spin{animation:-spin 1s linear infinite}@keyframes -ping{75%,to{opacity:0;transform:scale(2)}}.ping{animation:-ping 1s cubic-bezier(0,0,.2,1) infinite}@keyframes -pulse{50%{opacity:.5}}.pulse{animation:-pulse 2s cubic-bezier(.4,0,.6,1) infinite}@keyframes -bounce{0%,to{animation-timing-function:cubic-bezier(.8,0,1,1);transform:translateY(-25%)}50%{animation-timing-function:cubic-bezier(0,0,.2,1);transform:none}}.bounce{animation:-bounce 1s infinite}.scale-0{--tw-scale-x:0;--tw-scale-y:0}.scale-0,.scale-50{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.scale-50{--tw-scale-x:.5;--tw-scale-y:.5}.scale-75{--tw-scale-x:.75;--tw-scale-y:.75}.scale-75,.scale-90{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.scale-90{--tw-scale-x:.9;--tw-scale-y:.9}.scale-95{--tw-scale-x:.95;--tw-scale-y:.95}.scale-100,.scale-95{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.scale-100{--tw-scale-x:1;--tw-scale-y:1}.scale-105{--tw-scale-x:1.05;--tw-scale-y:1.05}.scale-105,.scale-110{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.scale-110{--tw-scale-x:1.1;--tw-scale-y:1.1}.scale-125{--tw-scale-x:1.25;--tw-scale-y:1.25}.scale-125,.scale-150{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.scale-150{--tw-scale-x:1.5;--tw-scale-y:1.5}.flip-x{--tw-scale-x:-1}.flip-x,.flip-y{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.flip-y{--tw-scale-y:-1}.rotate-0{--tw-rotate:0deg}.rotate-0,.rotate-1{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.rotate-1{--tw-rotate:1deg}.rotate-2{--tw-rotate:2deg}.rotate-2,.rotate-3{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.rotate-3{--tw-rotate:3deg}.rotate-6{--tw-rotate:6deg}.rotate-12,.rotate-6{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.rotate-12{--tw-rotate:12deg}.rotate-45{--tw-rotate:45deg}.rotate-45,.rotate-90{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.rotate-90{--tw-rotate:90deg}.rotate-180{--tw-rotate:180deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@font-face{font-family:Oswald;font-weight:400;src:url(./@zentao/fonts/Oswald-Regular.ttf)}@font-face{font-family:Oswald;font-weight:500;src:url(./@zentao/fonts/Oswald-Medium.ttf)}@font-face{font-family:Oswald;font-weight:300;src:url(./@zentao/fonts/Oswald-Light.ttf)}.num{font-family:Oswald;font-weight:400}:root{--zt-page-bg:var(--color-gray-100);--zt-header-bg:var(--color-primary-500);--zt-header-color:var(--color-canvas);--zt-page-form-max-width:1000px;--zt-sidebar-width:160px}.size-sm{--zt-page-form-max-width:800px}.size-lg{--zt-page-form-max-width:1200px}body{background-color:var(--zt-page-bg)}.container{min-width:1200px}#header{background:var(--zt-header-bg);color:var(--zt-header-color);height:3rem}#header>.container{height:100%;position:relative}#heading{align-items:center;bottom:0;display:flex;gap:.25rem;left:1rem;position:absolute;top:0}#heading>.toolbar{margin-left:-.75rem}#navbar{align-items:center;display:flex;height:100%;justify-content:center}#navbar>.nav{--nav-active-color:var(--color-current)}#navbar>.nav>.nav-item>a{height:3rem;padding-left:.75rem;padding-right:.75rem}#navbar>.nav>.nav-item>a:after{--tw-scale-x:.5;background-color:var(--color-current);bottom:0;content:"";height:.125rem;left:.75rem;opacity:0;position:absolute;right:.75rem;transition-duration:.15s;transition-property:transform,opacity;transition-timing-function:cubic-bezier(.4,0,.2,1)}#navbar>.nav>.nav-item>.active:after,#navbar>.nav>.nav-item>a:after{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}#navbar>.nav>.nav-item>.active:after{--tw-scale-x:1;opacity:1}#toolbar{align-items:center;bottom:0;display:flex;gap:.25rem;position:absolute;right:1rem;top:0}#versionMenu .menu-item>a{padding-left:1.5rem;padding-right:1.5rem}#main{min-height:100vh}#header+#main{min-height:calc(100vh - 3rem)}#main>.container{padding-left:1rem;padding-right:1rem;position:relative}@media (min-width:1400px){#main>.container{padding-left:2.5rem;padding-right:2.5rem}}#mainNavbar{--tw-bg-opacity:1;background-color:rgba(var(--color-canvas-rgb),var(--tw-bg-opacity));height:2.5rem}#mainNavbar>.container{position:relative}#mainNavbar .nav{height:2.5rem;inset:0;justify-content:center;position:absolute}#mainNavbar .nav-item{font-size:.875rem;line-height:1.3rem}#mainNavbar .nav-item>a{border-radius:var(--radius)}#mainMenu{align-items:center;display:flex;gap:1rem;justify-content:space-between;padding-bottom:.75rem;padding-top:.75rem}#featureBar{flex:1 1 auto}#featureBar .nav .btn>.icon{--tw-text-opacity:1;color:rgba(var(--color-primary-500-rgb),var(--tw-text-opacity))}#actionBar{gap:.5rem}#actionBar>.nav-divider{margin-left:-.25rem;margin-right:-.25rem}#mainContent{padding-top:1rem}#mainMenu+#mainContent{padding-top:0}#mainContent.row{align-items:stretch;display:flex;gap:1rem;justify-content:space-between}#mainContent.row>*{flex:1 1 auto;min-width:0}.panel-form{max-width:var(--zt-page-form-max-width)}:root{--modal-radius:var(--radius);--avatar-bg:var(--color-gray-200)}.modal-alert .modal-footer{justify-content:center}.modal-body,.modal-header{padding:1.5rem 2rem}.modal-actions{top:1rem}.modal-header+.modal-actions+.modal-body,.modal-header+.modal-body{padding-top:0}.modal-condensed .modal-body,.modal-condensed .modal-header{padding:1rem 1.25rem}.modal-condensed .modal-actions{top:.75rem}.label[class$=-pale],.label[class*="-pale "]{--tw-bg-opacity:.4;--tw-ring-opacity:.4}.tree{--tree-indent:14px}.panel-form{--tw-bg-opacity:1;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(var(--tw-ring-offset-width)) var(--tw-ring-color);background-color:rgba(var(--color-canvas-rgb),var(--tw-bg-opacity));border-radius:var(--radius-md);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);margin-bottom:1rem;margin-left:auto;margin-right:auto;padding-bottom:1rem;padding-left:1rem;padding-right:1rem}.modal .panel-form{margin:0;padding:0}.modal .panel-body{padding:1px}.modal .history,.modal .panel-body>.form{padding:0}.bg-primary-50{--tw-bg-opacity:1;background-color:rgba(var(--color-primary-50-rgb),var(--tw-bg-opacity))}.bg-primary-100{--tw-bg-opacity:1;background-color:rgba(var(--color-primary-100-rgb),var(--tw-bg-opacity))}.bg-primary-200{--tw-bg-opacity:1;background-color:rgba(var(--color-primary-200-rgb),var(--tw-bg-opacity))}.bg-primary-300{--tw-bg-opacity:1;background-color:rgba(var(--color-primary-300-rgb),var(--tw-bg-opacity))}.bg-primary-400{--tw-bg-opacity:1;background-color:rgba(var(--color-primary-400-rgb),var(--tw-bg-opacity))}.bg-primary-500{--tw-bg-opacity:1;background-color:rgba(var(--color-primary-500-rgb),var(--tw-bg-opacity))}.bg-primary-600{--tw-bg-opacity:1;background-color:rgba(var(--color-primary-600-rgb),var(--tw-bg-opacity))}.bg-primary-700{--tw-bg-opacity:1;background-color:rgba(var(--color-primary-700-rgb),var(--tw-bg-opacity))}.bg-primary-800{--tw-bg-opacity:1;background-color:rgba(var(--color-primary-800-rgb),var(--tw-bg-opacity))}.bg-primary-900{--tw-bg-opacity:1;background-color:rgba(var(--color-primary-900-rgb),var(--tw-bg-opacity))}.bg-secondary-50{--tw-bg-opacity:1;background-color:rgba(var(--color-secondary-50-rgb),var(--tw-bg-opacity))}.bg-secondary-100{--tw-bg-opacity:1;background-color:rgba(var(--color-secondary-100-rgb),var(--tw-bg-opacity))}.bg-secondary-200{--tw-bg-opacity:1;background-color:rgba(var(--color-secondary-200-rgb),var(--tw-bg-opacity))}.bg-secondary-300{--tw-bg-opacity:1;background-color:rgba(var(--color-secondary-300-rgb),var(--tw-bg-opacity))}.bg-secondary-400{--tw-bg-opacity:1;background-color:rgba(var(--color-secondary-400-rgb),var(--tw-bg-opacity))}.bg-secondary-500{--tw-bg-opacity:1;background-color:rgba(var(--color-secondary-500-rgb),var(--tw-bg-opacity))}.bg-secondary-600{--tw-bg-opacity:1;background-color:rgba(var(--color-secondary-600-rgb),var(--tw-bg-opacity))}.bg-secondary-700{--tw-bg-opacity:1;background-color:rgba(var(--color-secondary-700-rgb),var(--tw-bg-opacity))}.bg-secondary-800{--tw-bg-opacity:1;background-color:rgba(var(--color-secondary-800-rgb),var(--tw-bg-opacity))}.bg-secondary-900{--tw-bg-opacity:1;background-color:rgba(var(--color-secondary-900-rgb),var(--tw-bg-opacity))}.text-primary-50{--tw-text-opacity:1;color:rgba(var(--color-primary-50-rgb),var(--tw-text-opacity))}.text-primary-100{--tw-text-opacity:1;color:rgba(var(--color-primary-100-rgb),var(--tw-text-opacity))}.text-primary-200{--tw-text-opacity:1;color:rgba(var(--color-primary-200-rgb),var(--tw-text-opacity))}.text-primary-300{--tw-text-opacity:1;color:rgba(var(--color-primary-300-rgb),var(--tw-text-opacity))}.text-primary-400{--tw-text-opacity:1;color:rgba(var(--color-primary-400-rgb),var(--tw-text-opacity))}.text-primary-500{--tw-text-opacity:1;color:rgba(var(--color-primary-500-rgb),var(--tw-text-opacity))}.text-primary-600{--tw-text-opacity:1;color:rgba(var(--color-primary-600-rgb),var(--tw-text-opacity))}.text-primary-700{--tw-text-opacity:1;color:rgba(var(--color-primary-700-rgb),var(--tw-text-opacity))}.text-primary-800{--tw-text-opacity:1;color:rgba(var(--color-primary-800-rgb),var(--tw-text-opacity))}.text-primary-900{--tw-text-opacity:1;color:rgba(var(--color-primary-900-rgb),var(--tw-text-opacity))}.text-secondary-50{--tw-text-opacity:1;color:rgba(var(--color-secondary-50-rgb),var(--tw-text-opacity))}.text-secondary-100{--tw-text-opacity:1;color:rgba(var(--color-secondary-100-rgb),var(--tw-text-opacity))}.text-secondary-200{--tw-text-opacity:1;color:rgba(var(--color-secondary-200-rgb),var(--tw-text-opacity))}.text-secondary-300{--tw-text-opacity:1;color:rgba(var(--color-secondary-300-rgb),var(--tw-text-opacity))}.text-secondary-400{--tw-text-opacity:1;color:rgba(var(--color-secondary-400-rgb),var(--tw-text-opacity))}.text-secondary-500{--tw-text-opacity:1;color:rgba(var(--color-secondary-500-rgb),var(--tw-text-opacity))}.text-secondary-600{--tw-text-opacity:1;color:rgba(var(--color-secondary-600-rgb),var(--tw-text-opacity))}.text-secondary-700{--tw-text-opacity:1;color:rgba(var(--color-secondary-700-rgb),var(--tw-text-opacity))}.text-secondary-800{--tw-text-opacity:1;color:rgba(var(--color-secondary-800-rgb),var(--tw-text-opacity))}.text-secondary-900{--tw-text-opacity:1;color:rgba(var(--color-secondary-900-rgb),var(--tw-text-opacity))}
diff --git a/www/js/zui3/zui.zentao.js b/www/js/zui3/zui.zentao.js
new file mode 100644
index 0000000000..4dd5cc7b74
--- /dev/null
+++ b/www/js/zui3/zui.zentao.js
@@ -0,0 +1,10617 @@
+var Uo = (s, e, t) => {
+ if (!e.has(s))
+ throw TypeError("Cannot " + t);
+};
+var y = (s, e, t) => (Uo(s, e, "read from private field"), t ? t.call(s) : e.get(s)), C = (s, e, t) => {
+ if (e.has(s))
+ throw TypeError("Cannot add the same private member more than once");
+ e instanceof WeakSet ? e.add(s) : e.set(s, t);
+}, $ = (s, e, t, n) => (Uo(s, e, "write to private field"), n ? n.call(s, t) : e.set(s, t), t);
+var _a = (s, e, t, n) => ({
+ set _(i) {
+ $(s, e, i, t);
+ },
+ get _() {
+ return y(s, e, n);
+ }
+}), j = (s, e, t) => (Uo(s, e, "access private method"), t);
+const Ft = document, Js = window, Vl = Ft.documentElement, Le = Ft.createElement.bind(Ft), Ul = Le("div"), qo = Le("table"), Kh = Le("tbody"), xa = Le("tr"), { isArray: Ro, prototype: ql } = Array, { concat: Yh, filter: Ar, indexOf: Gl, map: Kl, push: Xh, slice: Yl, some: Lr, splice: Jh } = ql, Zh = /^#(?:[\w-]|\\.|[^\x00-\xa0])*$/, Qh = /^\.(?:[\w-]|\\.|[^\x00-\xa0])*$/, td = /<.+>/, ed = /^\w+$/;
+function Or(s, e) {
+ const t = nd(e);
+ return !s || !t && !Re(e) && !X(e) ? [] : !t && Qh.test(s) ? e.getElementsByClassName(s.slice(1).replace(/\\/g, "")) : !t && ed.test(s) ? e.getElementsByTagName(s) : e.querySelectorAll(s);
+}
+class Io {
+ constructor(e, t) {
+ if (!e)
+ return;
+ if (or(e))
+ return e;
+ let n = e;
+ if (it(e)) {
+ const i = t || Ft;
+ if (n = Zh.test(e) && Re(i) ? i.getElementById(e.slice(1).replace(/\\/g, "")) : td.test(e) ? Zl(e) : or(i) ? i.find(e) : it(i) ? u(i).find(e) : Or(e, i), !n)
+ return;
+ } else if (Oe(e))
+ return this.ready(e);
+ (n.nodeType || n === Js) && (n = [n]), this.length = n.length;
+ for (let i = 0, o = this.length; i < o; i++)
+ this[i] = n[i];
+ }
+ init(e, t) {
+ return new Io(e, t);
+ }
+}
+const P = Io.prototype, u = P.init;
+u.fn = u.prototype = P;
+P.length = 0;
+P.splice = Jh;
+typeof Symbol == "function" && (P[Symbol.iterator] = ql[Symbol.iterator]);
+function or(s) {
+ return s instanceof Io;
+}
+function yn(s) {
+ return !!s && s === s.window;
+}
+function Re(s) {
+ return !!s && s.nodeType === 9;
+}
+function nd(s) {
+ return !!s && s.nodeType === 11;
+}
+function X(s) {
+ return !!s && s.nodeType === 1;
+}
+function sd(s) {
+ return !!s && s.nodeType === 3;
+}
+function id(s) {
+ return typeof s == "boolean";
+}
+function Oe(s) {
+ return typeof s == "function";
+}
+function it(s) {
+ return typeof s == "string";
+}
+function ct(s) {
+ return s === void 0;
+}
+function Pn(s) {
+ return s === null;
+}
+function Xl(s) {
+ return !isNaN(parseFloat(s)) && isFinite(s);
+}
+function jr(s) {
+ if (typeof s != "object" || s === null)
+ return !1;
+ const e = Object.getPrototypeOf(s);
+ return e === null || e === Object.prototype;
+}
+u.isWindow = yn;
+u.isFunction = Oe;
+u.isArray = Ro;
+u.isNumeric = Xl;
+u.isPlainObject = jr;
+function J(s, e, t) {
+ if (t) {
+ let n = s.length;
+ for (; n--; )
+ if (e.call(s[n], n, s[n]) === !1)
+ return s;
+ } else if (jr(s)) {
+ const n = Object.keys(s);
+ for (let i = 0, o = n.length; i < o; i++) {
+ const r = n[i];
+ if (e.call(s[r], r, s[r]) === !1)
+ return s;
+ }
+ } else
+ for (let n = 0, i = s.length; n < i; n++)
+ if (e.call(s[n], n, s[n]) === !1)
+ return s;
+ return s;
+}
+u.each = J;
+P.each = function(s) {
+ return J(this, s);
+};
+P.empty = function() {
+ return this.each((s, e) => {
+ for (; e.firstChild; )
+ e.removeChild(e.firstChild);
+ });
+};
+function Zs(...s) {
+ const e = id(s[0]) ? s.shift() : !1, t = s.shift(), n = s.length;
+ if (!t)
+ return {};
+ if (!n)
+ return Zs(e, u, t);
+ for (let i = 0; i < n; i++) {
+ const o = s[i];
+ for (const r in o)
+ e && (Ro(o[r]) || jr(o[r])) ? ((!t[r] || t[r].constructor !== o[r].constructor) && (t[r] = new o[r].constructor()), Zs(e, t[r], o[r])) : t[r] = o[r];
+ }
+ return t;
+}
+u.extend = Zs;
+P.extend = function(s) {
+ return Zs(P, s);
+};
+const od = /\S+/g;
+function Do(s) {
+ return it(s) ? s.match(od) || [] : [];
+}
+P.toggleClass = function(s, e) {
+ const t = Do(s), n = !ct(e);
+ return this.each((i, o) => {
+ X(o) && J(t, (r, a) => {
+ n ? e ? o.classList.add(a) : o.classList.remove(a) : o.classList.toggle(a);
+ });
+ });
+};
+P.addClass = function(s) {
+ return this.toggleClass(s, !0);
+};
+P.removeAttr = function(s) {
+ const e = Do(s);
+ return this.each((t, n) => {
+ X(n) && J(e, (i, o) => {
+ n.removeAttribute(o);
+ });
+ });
+};
+function rd(s, e) {
+ if (s) {
+ if (it(s)) {
+ if (arguments.length < 2) {
+ if (!this[0] || !X(this[0]))
+ return;
+ const t = this[0].getAttribute(s);
+ return Pn(t) ? void 0 : t;
+ }
+ return ct(e) ? this : Pn(e) ? this.removeAttr(s) : this.each((t, n) => {
+ X(n) && n.setAttribute(s, e);
+ });
+ }
+ for (const t in s)
+ this.attr(t, s[t]);
+ return this;
+ }
+}
+P.attr = rd;
+P.removeClass = function(s) {
+ return arguments.length ? this.toggleClass(s, !1) : this.attr("class", "");
+};
+P.hasClass = function(s) {
+ return !!s && Lr.call(this, (e) => X(e) && e.classList.contains(s));
+};
+P.get = function(s) {
+ return ct(s) ? Yl.call(this) : (s = Number(s), this[s < 0 ? s + this.length : s]);
+};
+P.eq = function(s) {
+ return u(this.get(s));
+};
+P.first = function() {
+ return this.eq(0);
+};
+P.last = function() {
+ return this.eq(-1);
+};
+function ad(s) {
+ return ct(s) ? this.get().map((e) => X(e) || sd(e) ? e.textContent : "").join("") : this.each((e, t) => {
+ X(t) && (t.textContent = s);
+ });
+}
+P.text = ad;
+function Wt(s, e, t) {
+ if (!X(s))
+ return;
+ const n = Js.getComputedStyle(s, null);
+ return t ? n.getPropertyValue(e) || void 0 : n[e] || s.style[e];
+}
+function St(s, e) {
+ return parseInt(Wt(s, e), 10) || 0;
+}
+function Ca(s, e) {
+ return St(s, `border${e ? "Left" : "Top"}Width`) + St(s, `padding${e ? "Left" : "Top"}`) + St(s, `padding${e ? "Right" : "Bottom"}`) + St(s, `border${e ? "Right" : "Bottom"}Width`);
+}
+const Go = {};
+function ld(s) {
+ if (Go[s])
+ return Go[s];
+ const e = Le(s);
+ Ft.body.insertBefore(e, null);
+ const t = Wt(e, "display");
+ return Ft.body.removeChild(e), Go[s] = t !== "none" ? t : "block";
+}
+function $a(s) {
+ return Wt(s, "display") === "none";
+}
+function Jl(s, e) {
+ const t = s && (s.matches || s.webkitMatchesSelector || s.msMatchesSelector);
+ return !!t && !!e && t.call(s, e);
+}
+function Ao(s) {
+ return it(s) ? (e, t) => Jl(t, s) : Oe(s) ? s : or(s) ? (e, t) => s.is(t) : s ? (e, t) => t === s : () => !1;
+}
+P.filter = function(s) {
+ const e = Ao(s);
+ return u(Ar.call(this, (t, n) => e.call(t, n, t)));
+};
+function he(s, e) {
+ return e ? s.filter(e) : s;
+}
+P.detach = function(s) {
+ return he(this, s).each((e, t) => {
+ t.parentNode && t.parentNode.removeChild(t);
+ }), this;
+};
+const cd = /^\s*<(\w+)[^>]*>/, hd = /^<(\w+)\s*\/?>(?:<\/\1>)?$/, ka = {
+ "*": Ul,
+ tr: Kh,
+ td: xa,
+ th: xa,
+ thead: qo,
+ tbody: qo,
+ tfoot: qo
+};
+function Zl(s) {
+ if (!it(s))
+ return [];
+ if (hd.test(s))
+ return [Le(RegExp.$1)];
+ const e = cd.test(s) && RegExp.$1, t = ka[e] || ka["*"];
+ return t.innerHTML = s, u(t.childNodes).detach().get();
+}
+u.parseHTML = Zl;
+P.has = function(s) {
+ const e = it(s) ? (t, n) => Or(s, n).length : (t, n) => n.contains(s);
+ return this.filter(e);
+};
+P.not = function(s) {
+ const e = Ao(s);
+ return this.filter((t, n) => (!it(s) || X(n)) && !e.call(n, t, n));
+};
+function Ut(s, e, t, n) {
+ const i = [], o = Oe(e), r = n && Ao(n);
+ for (let a = 0, l = s.length; a < l; a++)
+ if (o) {
+ const h = e(s[a]);
+ h.length && Xh.apply(i, h);
+ } else {
+ let h = s[a][e];
+ for (; h != null && !(n && r(-1, h)); )
+ i.push(h), h = t ? h[e] : null;
+ }
+ return i;
+}
+function Ql(s) {
+ return s.multiple && s.options ? Ut(Ar.call(s.options, (e) => e.selected && !e.disabled && !e.parentNode.disabled), "value") : s.value || "";
+}
+function dd(s) {
+ return arguments.length ? this.each((e, t) => {
+ const n = t.multiple && t.options;
+ if (n || ac.test(t.type)) {
+ const i = Ro(s) ? Kl.call(s, String) : Pn(s) ? [] : [String(s)];
+ n ? J(t.options, (o, r) => {
+ r.selected = i.indexOf(r.value) >= 0;
+ }, !0) : t.checked = i.indexOf(t.value) >= 0;
+ } else
+ t.value = ct(s) || Pn(s) ? "" : s;
+ }) : this[0] && Ql(this[0]);
+}
+P.val = dd;
+P.is = function(s) {
+ const e = Ao(s);
+ return Lr.call(this, (t, n) => e.call(t, n, t));
+};
+u.guid = 1;
+function Pt(s) {
+ return s.length > 1 ? Ar.call(s, (e, t, n) => Gl.call(n, e) === t) : s;
+}
+u.unique = Pt;
+P.add = function(s, e) {
+ return u(Pt(this.get().concat(u(s, e).get())));
+};
+P.children = function(s) {
+ return he(u(Pt(Ut(this, (e) => e.children))), s);
+};
+P.parent = function(s) {
+ return he(u(Pt(Ut(this, "parentNode"))), s);
+};
+P.index = function(s) {
+ const e = s ? u(s)[0] : this[0], t = s ? this : u(e).parent().children();
+ return Gl.call(t, e);
+};
+P.closest = function(s) {
+ const e = this.filter(s);
+ if (e.length)
+ return e;
+ const t = this.parent();
+ return t.length ? t.closest(s) : e;
+};
+P.siblings = function(s) {
+ return he(u(Pt(Ut(this, (e) => u(e).parent().children().not(e)))), s);
+};
+P.find = function(s) {
+ return u(Pt(Ut(this, (e) => Or(s, e))));
+};
+const ud = /^\s*\s*$/g, fd = /^$|^module$|\/(java|ecma)script/i, pd = ["type", "src", "nonce", "noModule"];
+function md(s, e) {
+ const t = u(s);
+ t.filter("script").add(t.find("script")).each((n, i) => {
+ if (fd.test(i.type) && Vl.contains(i)) {
+ const o = Le("script");
+ o.text = i.textContent.replace(ud, ""), J(pd, (r, a) => {
+ i[a] && (o[a] = i[a]);
+ }), e.head.insertBefore(o, null), e.head.removeChild(o);
+ }
+ });
+}
+function gd(s, e, t, n, i) {
+ n ? s.insertBefore(e, t ? s.firstChild : null) : s.nodeName === "HTML" ? s.parentNode.replaceChild(e, s) : s.parentNode.insertBefore(e, t ? s : s.nextSibling), i && md(e, s.ownerDocument);
+}
+function de(s, e, t, n, i, o, r, a) {
+ return J(s, (l, h) => {
+ J(u(h), (d, c) => {
+ J(u(e), (f, p) => {
+ const m = t ? c : p, b = t ? p : c, _ = t ? d : f;
+ gd(m, _ ? b.cloneNode(!0) : b, n, i, !_);
+ }, a);
+ }, r);
+ }, o), e;
+}
+P.after = function() {
+ return de(arguments, this, !1, !1, !1, !0, !0);
+};
+P.append = function() {
+ return de(arguments, this, !1, !1, !0);
+};
+function yd(s) {
+ if (!arguments.length)
+ return this[0] && this[0].innerHTML;
+ if (ct(s))
+ return this;
+ const e = /`);\n if (removeAfterRun) {\n $element.find(`#${id}`).remove();\n }\n }\n return;\n }\n $element.find('script').each((_, script) => {\n runJS($element, (script as HTMLScriptElement).innerHTML);\n script.remove();\n });\n}\n\n/* Declare types. */\ndeclare module 'cash-dom' {\n interface Cash {\n runJS(jsCode?: string): this;\n }\n\n interface CashStatic {\n runJS(jsCode: string, ...args: [name: string, value: unknown][]): T;\n }\n}\n\n/* Extend as $.runJS() */\n$.runJS = (jsCode: string, ...args: [name: string, value: unknown][]): T => {\n jsCode = jsCode.trim();\n if (!jsCode.startsWith('return ') && !jsCode.endsWith(';')) {\n jsCode = `return ${jsCode}`;\n }\n // eslint-disable-next-line @typescript-eslint/no-implied-eval\n const func = new Function(...args.map(([name]) => name), jsCode);\n return func(...args.map(([, value]) => value));\n};\n\n/* Extend as $.fn.runJS() */\n$.fn.runJS = function (this: Cash, jsCode?: string) {\n return this.each((_, ele) => {\n runJS(ele, jsCode);\n });\n};\n","import {$, Cash, Selector} from '../cash';\nimport {isVisible} from './is-visible';\n\n/**\n * Options for {@link scrollIntoView}.\n */\ntype CashScrollIntoViewOptions = ScrollIntoViewOptions & {\n ifNeeded?: boolean;\n};\n\n/**\n * Scroll into view.\n *\n * @param selector Element selector to scroll into view.\n * @param options Options.\n * @returns True if the element is visible.\n * @see https://stackoverflow.com/a/26039199\n */\nexport function scrollIntoView(selector: Selector, options?: CashScrollIntoViewOptions): Cash {\n const $element = $(selector);\n const {ifNeeded = true, ...other} = options || {};\n $element.each((_, ele) => {\n if (ifNeeded && isVisible(ele, {viewport: ele.getBoundingClientRect()})) {\n return;\n }\n ele.scrollIntoView(other);\n });\n return $element;\n}\n\n/* Declare types. */\ndeclare module 'cash-dom' {\n interface Cash {\n scrollIntoView(options?: CashScrollIntoViewOptions): this;\n }\n}\n\n/* Extend as $.fn.scrollIntoView() */\n$.fn.scrollIntoView = function (this: Cash, options?: CashScrollIntoViewOptions) {\n return this.each((_, ele) => {\n scrollIntoView(ele, options);\n });\n};\n","import {$} from '../cash';\n\n/* Declare types. */\ndeclare module 'cash-dom' {\n interface CashStatic {\n getScript(src: string, props?: ScriptProps, success?: () => void): Promise;\n }\n}\n\ntype ScriptProps = Partial<{\n charset: string;\n defer: boolean;\n noModule: boolean;\n type: string;\n integrity: string;\n}>;\n\n/** Define the $.getScript method. */\n$.getScript = function (src: string, props?: ScriptProps, success?: () => void): Promise {\n return new Promise((resolve) => {\n const $oldScripts = $(`script[src=\"${src}\"]`);\n const onLoad = () => {\n resolve();\n success?.();\n };\n if ($oldScripts.length) {\n if ($oldScripts.dataset('loaded')) {\n onLoad();\n } else {\n const callbacks = $oldScripts.data('loadCalls') || [];\n callbacks.push(onLoad);\n $oldScripts.data('loadCalls', callbacks);\n }\n return;\n }\n const script = document.createElement('script');\n script.async = true;\n if (props) {\n Object.assign(script, props);\n }\n script.onload = () => {\n onLoad();\n const callbacks = $(script).dataset('loaded', true).data('loadCalls') || [];\n callbacks.forEach((callback: () => void) => callback());\n $(script).removeData('loadCalls');\n };\n script.src = src;\n $('head').append(script);\n });\n};\n","var n,l,u,t,i,o,r,f,e,c={},s=[],a=/acit|ex(?:s|g|n|p|$)|rph|grid|ows|mnc|ntw|ine[ch]|zoo|^ord|itera/i,h=Array.isArray;function v(n,l){for(var u in l)n[u]=l[u];return n}function p(n){var l=n.parentNode;l&&l.removeChild(n)}function y(l,u,t){var i,o,r,f={};for(r in u)\"key\"==r?i=u[r]:\"ref\"==r?o=u[r]:f[r]=u[r];if(arguments.length>2&&(f.children=arguments.length>3?n.call(arguments,2):t),\"function\"==typeof l&&null!=l.defaultProps)for(r in l.defaultProps)void 0===f[r]&&(f[r]=l.defaultProps[r]);return d(l,f,i,o,null)}function d(n,t,i,o,r){var f={type:n,props:t,key:i,ref:o,__k:null,__:null,__b:0,__e:null,__d:void 0,__c:null,__h:null,constructor:void 0,__v:null==r?++u:r};return null==r&&null!=l.vnode&&l.vnode(f),f}function _(){return{current:null}}function k(n){return n.children}function b(n,l){this.props=n,this.context=l}function g(n,l){if(null==l)return n.__?g(n.__,n.__.__k.indexOf(n)+1):null;for(var u;ll&&i.sort(f));x.__r=0}function P(n,l,u,t,i,o,r,f,e,a,v){var p,y,_,b,g,m,w,x,P,S,H=0,I=t&&t.__k||s,T=I.length,j=T,z=l.length;for(u.__k=[],p=0;p0?d(b.type,b.props,b.key,b.ref?b.ref:null,b.__v):b)&&(b.__=u,b.__b=u.__b+1,-1===(x=A(b,I,w=p+H,j))?_=c:(_=I[x]||c,I[x]=void 0,j--),L(n,b,_,i,o,r,f,e,a,v),g=b.__e,(y=b.ref)&&_.ref!=y&&(_.ref&&O(_.ref,null,b),v.push(y,b.__c||g,b)),null!=g&&(null==m&&(m=g),S=!(P=_===c||null===_.__v)&&x===w,P?-1==x&&H--:x!==w&&(x===w+1?(H++,S=!0):x>w?j>z-w?(H+=x-w,S=!0):H--:H=x(null!=e?1:0))for(;r>=0||f=0){if((e=l[r])&&i==e.key&&o===e.type)return r;r--}if(f2&&(e.children=arguments.length>3?n.call(arguments,2):t),d(l.type,e,i||l.key,o||l.ref,null)}function G(n,l){var u={__c:l=\"__cC\"+e++,__:n,Consumer:function(n,l){return n.children(l)},Provider:function(n){var u,t;return this.getChildContext||(u=[],(t={})[l]=this,this.getChildContext=function(){return t},this.shouldComponentUpdate=function(n){this.props.value!==n.value&&u.some(function(n){n.__e=!0,w(n)})},this.sub=function(n){u.push(n);var l=n.componentWillUnmount;n.componentWillUnmount=function(){u.splice(u.indexOf(n),1),l&&l.call(n)}}),n.children}};return u.Provider.__=u.Consumer.contextType=u}n=s.slice,l={__e:function(n,l,u,t){for(var i,o,r;l=l.__;)if((i=l.__c)&&!i.__)try{if((o=i.constructor)&&null!=o.getDerivedStateFromError&&(i.setState(o.getDerivedStateFromError(n)),r=i.__d),null!=i.componentDidCatch&&(i.componentDidCatch(n,t||{}),r=i.__d),r)return i.__E=i}catch(l){n=l}throw n}},u=0,t=function(n){return null!=n&&void 0===n.constructor},b.prototype.setState=function(n,l){var u;u=null!=this.__s&&this.__s!==this.state?this.__s:this.__s=v({},this.state),\"function\"==typeof n&&(n=n(v({},u),this.props)),n&&v(u,n),null!=n&&this.__v&&(l&&this._sb.push(l),w(this))},b.prototype.forceUpdate=function(n){this.__v&&(this.__e=!0,n&&this.__h.push(n),w(this))},b.prototype.render=k,i=[],r=\"function\"==typeof Promise?Promise.prototype.then.bind(Promise.resolve()):setTimeout,f=function(n,l){return n.__v.__b-l.__v.__b},x.__r=0,e=0;export{b as Component,k as Fragment,F as cloneElement,G as createContext,y as createElement,_ as createRef,y as h,E as hydrate,t as isValidElement,l as options,D as render,S as toChildArray};\n//# sourceMappingURL=preact.module.js.map\n","var n=function(t,s,r,e){var u;s[0]=0;for(var h=1;h=5&&((e||!n&&5===r)&&(h.push(r,0,e,s),r=6),n&&(h.push(r,n,0,s),r=6)),e=\"\"},a=0;a\"===t?(r=1,e=\"\"):e=t+e[0]:u?t===u?u=\"\":e+=t:'\"'===t||\"'\"===t?u=t:\">\"===t?(p(),r=1):r&&(\"=\"===t?(r=5,s=e,e=\"\"):\"/\"===t&&(r<5||\">\"===n[a][l+1])?(p(),3===r&&(h=h[0]),r=h,(h=h[0]).push(2,0,r),r=0):\" \"===t||\"\\t\"===t||\"\\n\"===t||\"\\r\"===t?(p(),r=2):e+=t),3===r&&\"!--\"===e&&(r=4,h=h[0])}return p(),h}(s)),r),arguments,[])).length>1?r:r[0]}\n","import htm from 'htm';\nimport {h} from './preact';\n\nconst html = htm.bind(h);\n\nexport {\n htm,\n html as hh,\n};\n","import {h, Component} from 'preact';\nimport type {PreactDOMAttributes, JSX, RefObject, ComponentType, RenderableProps, ComponentChildren} from 'preact';\nimport {ClassNameLike, classes} from '../../helpers/classes';\n\n/**\n * The HTML props that can be passed to a component which root not is a html element.\n */\nexport interface HElementProps extends PreactDOMAttributes {\n /**\n * The component or the HTML element name.\n */\n component?: ComponentType | keyof JSX.IntrinsicElements;\n\n /**\n * The alternative class name of the element.\n */\n className?: ClassNameLike;\n\n /**\n * The alternative class name of the element.\n */\n class?: ClassNameLike;\n\n /**\n * The style of the element.\n */\n style?: JSX.CSSProperties;\n\n /**\n * The attributes of the element.\n */\n attrs?: Record;\n\n /**\n * The extra data.\n */\n data?: Record;\n\n /**\n * The ref of the element.\n */\n forwardRef?: RefObject;\n\n /**\n * The other props of the element.\n */\n [dataKey: `data-${string}`]: unknown;\n}\n\nexport class HElement extends Component
{\n protected _getClassName(props: RenderableProps
): ClassNameLike {\n return [props.className, props.class];\n }\n\n protected _getProps(props: RenderableProps
): Record {\n const {className, class: className2, attrs, data, forwardRef, children, style, ...others} = props;\n const other = Object.keys(others).reduce>((map, key) => {\n if (key === 'dangerouslySetInnerHTML' || key.startsWith('data-')) {\n map[key] = others[key as keyof typeof others];\n }\n return map;\n }, {});\n return {ref: forwardRef, class: classes(this._getClassName(props)), style, ...other, ...attrs};\n }\n\n protected _getComponent(props: RenderableProps): ComponentType | keyof JSX.IntrinsicElements {\n return props.component || 'div';\n }\n\n protected _getChildren(props: RenderableProps
): ComponentChildren {\n return props.children;\n }\n\n protected _beforeRender(props: RenderableProps
): RenderableProps
| undefined | void {\n return props;\n }\n\n render(props: RenderableProps
) {\n props = this._beforeRender(props) || props;\n return h(this._getComponent(props) as ComponentType, this._getProps(props), this._getChildren(props));\n }\n}\n","import{options as r}from\"preact\";export{Fragment}from\"preact\";var _=0;function o(o,e,n,t,f,l){var s,u,a={};for(u in e)\"ref\"==u?s=e[u]:a[u]=e[u];var i={type:o,props:a,key:n,ref:s,__k:null,__:null,__b:0,__e:null,__d:void 0,__c:null,__h:null,constructor:void 0,__v:--_,__source:f,__self:l};if(\"function\"==typeof o&&(s=o.defaultProps))for(u in s)void 0===a[u]&&(a[u]=s[u]);return r.vnode&&r.vnode(i),i}export{o as jsx,o as jsxDEV,o as jsxs};\n//# sourceMappingURL=jsxRuntime.module.js.map\n","import {Component, createRef} from 'preact';\nimport {$} from '../../cash';\nimport {HElement, HElementProps} from './h-element';\n\n/**\n * HTML content component props.\n */\nexport interface HtmlContentProps extends HElementProps {\n /**\n * HTML code.\n */\n html: string,\n\n /**\n * Execute script.\n */\n executeScript?: boolean,\n}\n\n/**\n * HTML content component.\n *\n * @example\n * // Render
Hello world
\n * Hello world\" />\n *\n * // Render and execute script\n * alert('Hello world')\" executeScript />\n */\nexport class HtmlContent extends Component {\n protected _ref = createRef();\n\n protected _runJS() {\n if (!this.props.executeScript) {\n return;\n }\n $(this._ref.current).runJS();\n }\n\n componentDidMount(): void {\n this._runJS();\n }\n\n componentDidUpdate(previousProps: Readonly): void {\n if (this.props.html !== previousProps.html) {\n this._runJS();\n }\n }\n\n render(props: HtmlContentProps) {\n const {executeScript, html, ...others} = props;\n return ;\n }\n}\n","import {h as _h, isValidElement, ComponentChildren, JSX, Attributes} from 'preact';\nimport {classes, ClassNameLike} from '../../helpers';\n\nexport type CustomRenderResultItem = Partial<{\n html: string;\n __html: string;\n style: JSX.CSSProperties;\n className: ClassNameLike;\n children: ComponentChildren;\n attrs: JSX.HTMLAttributes;\n [prop: string]: unknown;\n}>;\n\nexport type CustomRenderResultGenerator = unknown[], THIS = unknown> = (this: THIS, result: ComponentChildren[], ...args: T) => (ComponentChildren | CustomRenderResultItem)[] | undefined | void;\n\nexport type CustomRenderResult = unknown[], THIS = unknown> = CustomRenderResultGenerator | CustomRenderResultItem | ComponentChildren;\n\nexport type CustomRenderResultList = unknown[], THIS = unknown> = CustomRenderResult[];\n\nexport type CustomRenderProps = unknown[], THIS = unknown> = {\n tag?: string;\n className?: ClassNameLike;\n style?: JSX.CSSProperties;\n renders: CustomRenderResultList;\n generateArgs?: T;\n generators?: Record>;\n generatorThis?: THIS;\n onGenerate?: (this: THIS, generator: CustomRenderResultGenerator, result: ComponentChildren[], ...args: T) => (ComponentChildren | CustomRenderResultItem)[];\n onRenderItem?: (item: CustomRenderResultItem) => ComponentChildren;\n};\n\nexport function renderCustomResult(props: CustomRenderProps): [JSX.HTMLAttributes, ComponentChildren[]] {\n const {\n tag,\n className,\n style,\n renders,\n generateArgs = [],\n generatorThis,\n generators,\n onGenerate,\n onRenderItem,\n ...others\n } = props;\n const classList: ClassNameLike = [className];\n const rootStyle: JSX.CSSProperties = {...style};\n const result: ComponentChildren[] = [];\n const rawHtml: string[] = [];\n renders.forEach(render => {\n const items: (CustomRenderResultItem | ComponentChildren)[] = [];\n if (typeof render === 'string' && generators && generators[render]) {\n render = generators[render];\n }\n if (typeof render === 'function') {\n if (onGenerate) {\n items.push(...onGenerate.call(generatorThis, render as CustomRenderResultGenerator, result, ...generateArgs));\n } else {\n const renderResult = (render as CustomRenderResultGenerator).call(generatorThis, result, ...generateArgs);\n if (renderResult) {\n if (Array.isArray(renderResult)) {\n items.push(...renderResult);\n } else {\n items.push(renderResult);\n }\n }\n }\n } else {\n items.push(render);\n }\n items.forEach(item => {\n if (item === undefined || item === null) {\n return;\n }\n if (typeof item === 'object' && !isValidElement(item) && ('html' in item || '__html' in item || 'className' in item || 'style' in item || 'attrs' in item || 'children' in item)) {\n if (item.html) {\n result.push(\n )}>,\n );\n } else if (item.__html) {\n rawHtml.push(item.__html);\n } else {\n if (item.style) {\n Object.assign(rootStyle, item.style);\n }\n if (item.className) {\n classList.push(item.className);\n }\n if (item.children) {\n result.push(item.children);\n }\n if (item.attrs) {\n Object.assign(others, item.attrs);\n }\n }\n } else {\n result.push(item);\n }\n });\n });\n\n if (rawHtml.length) {\n Object.assign(others, {dangerouslySetInnerHTML: {__html: rawHtml}});\n }\n\n return [{\n className: classes(classList),\n style: rootStyle,\n ...others,\n }, result];\n}\n\nexport function CustomRender({\n tag = 'div',\n ...props\n}: CustomRenderProps) {\n const [attrs, children] = renderCustomResult(props);\n return _h(tag, attrs as Attributes, ...children);\n}\n","import {ComponentChildren, isValidElement, VNode} from 'preact';\nimport {HtmlContent, HtmlContentProps} from './html-content';\nimport {HElementProps, HElement} from './h-element';\n\nexport type CustomContentStatic = ComponentChildren | HtmlContentProps | HElementProps;\n\nexport type CustomContentGenerator = (this: THIS | undefined, ...args: ARGS | []) => CustomContentStatic;\n\nexport type CustomContentType = CustomContentStatic | CustomContentGenerator;\n\nexport type CustomContentProps = {\n content: CustomContentType | CustomContentType[];\n generatorThis?: THIS;\n generatorArgs?: ARGS;\n};\n\nexport function renderCustomContent(\n content: CustomContentType | CustomContentType[],\n generatorThis?: THIS,\n generatorArgs?: ARGS,\n): ComponentChildren {\n if (typeof content === 'function') {\n return (content as CustomContentGenerator).call(generatorThis, ...(generatorArgs as ARGS));\n }\n if (Array.isArray(content)) {\n return content.map((x) => renderCustomContent(x, generatorThis, generatorArgs));\n }\n if (isValidElement(content) || content === null) {\n return content;\n }\n if (typeof content === 'object') {\n if ((content as HtmlContentProps).html) {\n return ;\n }\n return ;\n }\n return content;\n}\n\n/**\n * Component for rendering custom content.\n *\n * @param props Custom content props.\n * @returns Custom content.\n */\nexport function CustomContent(props: CustomContentProps): VNode | null {\n const {content, generatorThis, generatorArgs} = props;\n const result = renderCustomContent(content, generatorThis, generatorArgs);\n if (result === undefined || result === null || typeof result === 'boolean') {\n return null;\n }\n if (isValidElement(result)) {\n return result;\n }\n return <>{result}>;\n}\n","import {JSX, VNode, isValidElement} from 'preact';\nimport {ClassNameLike, classes} from '../../helpers/classes';\n\nexport type IconType = string | JSX.HTMLAttributes | VNode;\n\nexport type IconProps = {\n icon?: IconType;\n className?: ClassNameLike;\n [key: string]: unknown;\n};\n\nconst createIconClass = (icon: string) => icon.startsWith('icon-') ? icon : `icon-${icon}`;\n\nexport function Icon(props: IconProps) {\n const {icon, className, ...others} = props;\n if (!icon) {\n return null;\n }\n if (isValidElement(icon)) {\n return icon;\n }\n const classList: ClassNameLike[] = ['icon', className as string];\n if (typeof icon === 'string') {\n classList.push(createIconClass(icon));\n } else if (typeof icon === 'object') {\n const {className: iconClass, icon: finalIcon, ...iconOthers} = icon;\n classList.push(iconClass as string, finalIcon ? createIconClass(finalIcon as string) : '');\n Object.assign(others, iconOthers);\n }\n return ;\n}\n","/* eslint-disable @typescript-eslint/no-explicit-any */\nimport {VNode, createElement, render, RenderableProps, ContainerNode} from 'preact';\n\n/**\n * @param {import('../../src/index').RenderableProps<{ context: any }>} props\n */\nfunction ContextProvider(this: any, props: RenderableProps<{context: any}>) {\n this.getChildContext = () => props.context;\n return props.children;\n}\n\n/**\n * Portal component\n * @this {import('preact').Component}\n * @param {object | null | undefined} props\n *\n * TODO: use createRoot() instead of fake root\n */\nfunction Portal(this: any, props: any) {\n // eslint-disable-next-line @typescript-eslint/no-this-alias\n const that = this;\n const container = props._container;\n\n that.componentWillUnmount = function () {\n render(null, that._temp);\n that._temp = null;\n that._container = null;\n };\n\n // When we change container we should clear our old container and\n // indicate a new mount.\n if (that._container && that._container !== container) {\n that.componentWillUnmount();\n }\n\n // When props.vnode is undefined/false/null we are dealing with some kind of\n // conditional vnode. This should not trigger a render.\n if (props._vnode) {\n if (!that._temp) {\n that._container = container;\n\n // Create a fake DOM parent node that manages a subset of `container`'s children:\n that._temp = {\n nodeType: 1,\n parentNode: container,\n childNodes: [],\n appendChild(child: VNode) {\n this.childNodes.push(child);\n that._container.appendChild(child);\n },\n // eslint-disable-next-line @typescript-eslint/no-unused-vars\n insertBefore(child: VNode, _before: VNode) {\n this.childNodes.push(child);\n that._container.appendChild(child);\n },\n removeChild(child: VNode) {\n this.childNodes.splice(this.childNodes.indexOf(child) >>> 1, 1);\n that._container.removeChild(child);\n },\n };\n }\n\n // Render our wrapping element into temp.\n render(\n createElement(ContextProvider as any, {context: that.context}, props._vnode),\n that._temp,\n );\n } else if (that._temp) {\n // When we come from a conditional render, on a mounted\n // portal we should clear the DOM.\n that.componentWillUnmount();\n }\n}\n\n/**\n * Create a `Portal` to continue rendering the vnode tree at a different DOM node\n *\n * @param {import('preact').VNode} vnode The vnode to render\n * @param {import('preact').PreactElement} container The DOM node to continue rendering in to.\n * @see https://github.com/developit/preact-portal/blob/master/src/preact-portal.js\n */\nexport function createPortal(vnode: VNode, container: ContainerNode): VNode {\n const el = createElement(Portal as any, {_vnode: vnode, _container: container}) as any;\n el.containerInfo = container;\n return el;\n}\n","import {i18n} from '../i18n';\nimport {$, Cash, Element, Selector} from '../cash';\nimport type {ComponentEventArgs, ComponentEventName, ComponentOptions, ComponentEvents, ComponentEventsDefnition} from './types';\n\n/**\n * The event callback for component.\n */\nexport type ComponentEventCallback> = (event: N extends keyof HTMLElementEventMap ? HTMLElementEventMap[N] : Event, args: [Component, ComponentEventArgs]) => void | false;\n\n/**\n * The component base class.\n */\nexport class Component {\n /**\n * The default options.\n */\n static DEFAULT = {};\n\n /**\n * The component name.\n * It usually equals to the class name.\n * The name must be provided in subclass.\n */\n static NAME: string;\n\n /**\n * Whether the component supports multiple instances.\n */\n static MULTI_INSTANCE = false;\n\n /**\n * ZUI name\n */\n static get ZUI() {\n return this.NAME.replace(/(^[A-Z]+)/, (match) => {\n return match.toLowerCase();\n });\n }\n\n /**\n * Component data key, like \"zui.menu\"\n */\n static get KEY(): `zui.${string}` {\n return `zui.${this.NAME}`;\n }\n\n /**\n * Component namespace, like \".zui.menu\"\n */\n static get NAMESPACE(): `.zui.${string}` {\n return `.zui.${this.ZUI}`;\n }\n\n static get DATA_KEY(): `data-zui-${string}` {\n return `data-zui-${this.NAME}`;\n }\n\n /**\n * Access to static properties via this.constructor.\n *\n * @see https://github.com/Microsoft/TypeScript/issues/3841#issuecomment-337560146\n */\n declare ['constructor']: typeof Component;\n\n /**\n * Store the component options.\n */\n private _options?: ComponentOptions;\n\n /**\n * Store the component element.\n */\n private _element?: U;\n\n /**\n * The component global ID.\n */\n private _gid: number;\n\n /**\n * The component key.\n */\n protected _key: string | number;\n\n /**\n * The component initialized flag.\n */\n private _inited = false;\n\n /**\n * The component constructor.\n *\n * @param options The component initial options.\n */\n constructor(element: Selector, options?: Partial>) {\n const {KEY, DATA_KEY, DEFAULT, MULTI_INSTANCE, NAME} = this.constructor;\n\n if (!NAME) {\n throw new Error('[ZUI] The component must have a \"NAME\" static property.');\n }\n\n const $element = $(element);\n if ($element.data(KEY) && !MULTI_INSTANCE) {\n throw new Error('[ZUI] The component has been initialized on element.');\n }\n\n const gid = $.guid++;\n this._gid = gid;\n this._element = $element[0] as U;\n\n $element.on('DOMNodeRemovedFromDocument', () => {\n this.destroy();\n });\n\n this._options = {...DEFAULT, ...$element.dataset()} as ComponentOptions;\n this.setOptions(options);\n this._key = this.options.key ?? `__${gid}`;\n\n $element.data(KEY, this).attr(DATA_KEY, `${gid}`);\n if (MULTI_INSTANCE) {\n const dataName = `${KEY}:ALL`;\n let instanceMap = $element.data(dataName);\n if (!instanceMap) {\n instanceMap = new Map();\n $element.data(dataName, instanceMap);\n }\n instanceMap.set(this._key, this);\n }\n\n this.init();\n requestAnimationFrame(() => {\n this._inited = true;\n this.afterInit();\n this.emit('inited', this.options);\n });\n }\n\n get inited() {\n return this._inited;\n }\n\n /**\n * Get the component element.\n */\n get element() {\n return this._element!;\n }\n\n get key() {\n return this._key;\n }\n\n /**\n * Get the component options.\n */\n get options() {\n return this._options!;\n }\n\n /**\n * Get the component global id.\n */\n get gid() {\n return this._gid;\n }\n\n /**\n * Get the component element as a jQuery like object.\n */\n get $element() {\n return $(this.element);\n }\n\n /**\n * Get the component event emitter.\n */\n get $emitter() {\n return this.$element;\n }\n\n /**\n * Initialize the component.\n */\n init() {}\n\n /**\n * Do something after the component initialized.\n */\n afterInit() {}\n\n /**\n * Render the component.\n *\n * @param options The component options to override before render.\n */\n render(options?: Partial>) {\n this.setOptions(options);\n }\n\n /**\n * Destroy the component.\n */\n destroy() {\n const {KEY, DATA_KEY, MULTI_INSTANCE} = this.constructor;\n const {$element} = this;\n\n (this.emit as ((event: string, ...args: unknown[]) => void))('destroyed');\n\n $element\n .off(this.namespace)\n .removeData(KEY)\n .attr(DATA_KEY, null);\n\n if (MULTI_INSTANCE) {\n const map = this.$element.data(`${KEY}:ALL`) as Map>;\n if (map) {\n map.delete(this._key);\n if (map.size === 0) {\n this.$element.removeData(`${KEY}:ALL`);\n } else {\n const nextInstance = map.values().next().value;\n $element.data(KEY, nextInstance).attr(DATA_KEY, nextInstance.gid);\n }\n }\n }\n\n this._options = undefined;\n this._element = undefined;\n }\n\n /**\n * Set the component options.\n *\n * @param options The component options to set.\n * @returns The component options.\n */\n setOptions(options?: Partial>) {\n if (options) {\n $.extend(this._options, options);\n }\n return this._options;\n }\n\n /**\n * Emit a component event.\n * @param event The event name.\n * @param args The event arguments.\n */\n emit>(event: N, ...args: ComponentEventArgs): Event {\n const eventObject = $.Event(event);\n (eventObject as unknown as {__src?: unknown}).__src = this;\n this.$emitter.trigger(eventObject, [this, ...args]);\n return eventObject as unknown as Event;\n }\n\n /**\n * Listen to a component event.\n *\n * @param event The event name.\n * @param callback The event callback.\n */\n on>(event: N | (string & {}), callback: ComponentEventCallback, options?: {once?: boolean}) {\n // eslint-disable-next-line @typescript-eslint/no-this-alias\n const component = this;\n this.$element[options?.once ? 'one' : 'on'](this._wrapEvent(event), function (this: Component, e: N extends keyof HTMLElementEventMap ? HTMLElementEventMap[N] : Event, info: [Component, ComponentEventArgs]) {\n if (!(e as {__src?: unknown}).__src || (e as {__src?: unknown}).__src === component) {\n callback.call(this, e, info);\n }\n });\n }\n\n /**\n * Listen to a component event.\n *\n * @param event The event name.\n * @param callback The event callback.\n */\n one>(event: N, callback: ComponentEventCallback) {\n this.on(event, callback, {once: true});\n }\n\n /**\n * Stop listening to a component event.\n * @param event The event name.\n * @param callback The event callback.\n */\n off>(event: N | (string & {})) {\n this.$element.off(this._wrapEvent(event));\n }\n\n /**\n * Get the i18n text.\n *\n * @param key The i18n key.\n * @param defaultValue The default value if the key is not found.\n */\n i18n(key: string, defaultValue?: string): string;\n\n /**\n * Get the i18n text.\n *\n * @param key The i18n key.\n * @param args The i18n arguments.\n * @param defaultValue The default value if the key is not found.\n */\n i18n(key: string, args?: (string | number)[] | Record, defaultValue?: string): string;\n\n /**\n * Get the i18n text.\n *\n * @param key The i18n key.\n * @param args The i18n arguments or the default value.\n * @param defaultValue The default value if the key is not found.\n * @returns The i18n text.\n */\n i18n(key: string, args?: string | (string | number)[] | Record, defaultValue?: string): string {\n return i18n(this.options.i18n, key, args, defaultValue, this.options.lang, this.constructor.NAME)\n ?? i18n(this.options.i18n, key, args, defaultValue, this.options.lang)\n ?? `{i18n:${key}}`;\n }\n\n /**\n * Get event namespace.\n * @returns Event namespace.\n */\n get namespace() {\n return `${this.constructor.NAMESPACE}.${this._key}`;\n }\n\n /**\n * Wrap event names with component namespace.\n *\n * @param names The event names.\n * @returns The wrapped event names.\n */\n protected _wrapEvent(names: string) {\n return names.split(' ').map(name => name.includes('.') ? name : `${name}${this.namespace}`).join(' ');\n }\n\n /**\n * Get the component instance of the given element.\n *\n * @param this Current component constructor.\n * @param selector The component element selector.\n * @returns The component instance.\n */\n static get>(this: T, selector: Selector, key?: string | number): InstanceType | undefined {\n const $element = $(selector);\n if (this.MULTI_INSTANCE && key !== undefined) {\n const instanceMap = $element.data(`${this.KEY}:ALL`);\n if (instanceMap) {\n return instanceMap.get(key);\n }\n return;\n }\n return $element.data(this.KEY);\n }\n\n /**\n * Ensure the component instance of the given element.\n *\n * @param this Current component constructor.\n * @param selector The component element selector.\n * @param options The component options.\n * @returns The component instance.\n */\n static ensure>(this: T, selector: Selector, options?: Partial>): InstanceType {\n const instance = this.get(selector, options?.key);\n if (instance) {\n if (options) {\n instance.setOptions(options);\n }\n return instance;\n }\n return new this(selector, options) as InstanceType;\n }\n\n /**\n * Get all component instances.\n *\n * @param this Current component constructor.\n * @param selector The component element selector.\n * @returns All component instances.\n */\n static getAll>(this: T, selector?: Selector): InstanceType[] {\n const {MULTI_INSTANCE, DATA_KEY} = this;\n const list: InstanceType[] = [];\n $(selector || document)\n .find(`[${DATA_KEY}]`)\n .each((_, element) => {\n if (MULTI_INSTANCE) {\n const instanceMap = $(element).data(`${this.KEY}:ALL`);\n if (instanceMap) {\n list.push(...instanceMap.values());\n return;\n }\n }\n const instance = $(element).data(this.KEY);\n if (instance) {\n list.push(instance);\n }\n });\n return list;\n }\n\n /**\n * Query the component instance.\n *\n * @param this Current component constructor.\n * @param selector The component element selector.\n * @returns The component instance.\n */\n static query>(this: T, selector?: Selector, key?: string | number): InstanceType | undefined {\n if (selector === undefined) {\n return this.getAll().sort((a, b) => a.gid - b.gid)[0];\n }\n return this.get($(selector).closest(`[${this.DATA_KEY}]`), key);\n }\n\n /**\n * Create cash fn.method for current component.\n *\n * @param name The method name.\n */\n static defineFn(name?: string) {\n let fnName = (name || this.ZUI) as keyof Cash;\n if ($.fn[fnName]) {\n fnName = `zui${this.NAME}` as keyof Cash;\n }\n // eslint-disable-next-line @typescript-eslint/no-this-alias\n const ZUIComponent = this;\n $.fn.extend({\n [fnName](options: Partial> | string, ...args: unknown[]) {\n const initOptions = typeof options === 'object' ? options : undefined;\n const callMethod = typeof options === 'string' ? options : undefined;\n let callResult: unknown;\n this.each((_: number, element: Element) => {\n let instance = ZUIComponent.get(element);\n if (instance) {\n if (initOptions) {\n instance.render(initOptions);\n }\n } else {\n instance = new ZUIComponent(element, initOptions);\n }\n if (callMethod) {\n let method: ((...args: unknown[]) => void) = (instance as unknown as Record void>)[callMethod];\n let callThis: unknown = instance;\n if (method === undefined) {\n callThis = (instance as unknown as {$: Record void>}).$;\n method = (callThis as Record void>)[callMethod as string];\n }\n if (typeof method === 'function') {\n callResult = method.call(callThis, ...args);\n } else {\n callResult = method;\n }\n }\n });\n return callResult !== undefined ? callResult : this;\n },\n });\n }\n}\n","import {createRef, render, h, Attributes} from 'preact';\nimport type {Component as ComponentReact, ComponentClass} from 'preact';\nimport {Component as ComponentBase, ComponentEventsDefnition} from '../component';\n\nexport class ComponentFromReact = ComponentReact, E extends ComponentEventsDefnition = {}, U extends Element = Element> extends ComponentBase {\n /**\n * The React component class.\n */\n static Component: unknown;\n\n /**\n * Access to static properties via this.constructor.\n *\n * @see https://github.com/Microsoft/TypeScript/issues/3841#issuecomment-337560146\n */\n declare ['constructor']: typeof ComponentFromReact;\n\n /**\n * The React ref for component instance.\n */\n ref = createRef();\n\n /**\n * The React component instance.\n */\n get $(): C | null {\n return this.ref.current;\n }\n\n /**\n * Render after component init.\n */\n afterInit() {\n this.render();\n }\n\n /**\n * Destroy component.\n */\n destroy() {\n this.$?.componentWillUnmount?.();\n if (this.element) {\n this.element.innerHTML = '';\n }\n super.destroy();\n }\n\n /**\n * Render component.\n *\n * @param options new options.\n */\n render(options?: Partial) {\n render(\n h(this.constructor.Component as ComponentClass, {\n ref: this.ref,\n ...this.setOptions(options),\n } as Attributes),\n this.element,\n );\n }\n}\n","import {classes} from '@zui/core';\nimport {Attributes, ComponentType, h as _h} from 'preact';\nimport {ActionDividerProps} from '../types/action-divider-props';\n\nexport function ActionDivider({\n component = 'div',\n className,\n children,\n style,\n attrs,\n}: ActionDividerProps) {\n return _h(component as ComponentType, {\n className: classes(className),\n style,\n ...attrs,\n } as Attributes, children);\n}\n","import {Attributes, ComponentType, h as _h} from 'preact';\nimport {classes, CustomContent, Icon} from '@zui/core';\nimport {ActionItemProps} from '../types/action-item-props';\n\nexport function ActionItem({\n type,\n component = 'a',\n className,\n children,\n content,\n attrs,\n url,\n disabled,\n active,\n icon,\n text,\n target,\n trailingIcon,\n hint,\n checked,\n onClick,\n data,\n ...others\n}: ActionItemProps) {\n const finalChildren = [\n typeof checked === 'boolean' ? (\n \n \n \n ) : null,\n ,\n {text},\n ,\n children,\n ,\n ];\n return _h(component as ComponentType, {\n className: classes(className, {disabled, active}),\n title: hint,\n [component === 'a' ? 'href' : 'data-url']: url,\n [component === 'a' ? 'target' : 'data-target']: target,\n onClick,\n ...others,\n ...attrs,\n } as Attributes, ...finalChildren);\n}\n","import {CustomContent, classes} from '@zui/core';\nimport {Attributes, ComponentType, h as _h} from 'preact';\nimport {ActionHeadingProps} from '../types/action-heading-props';\n\nexport function ActionHeading({\n component = 'div',\n className,\n text,\n attrs,\n children,\n content,\n style,\n onClick,\n}: ActionHeadingProps) {\n return _h(component as ComponentType, {\n className: classes(className),\n style,\n onClick,\n ...attrs,\n } as Attributes, text, , children);\n}\n","import {classes} from '@zui/core';\nimport {Attributes, ComponentType, h as _h} from 'preact';\nimport {ActionSpaceProps} from '../types/action-space-props';\n\nexport function ActionSpace({\n component = 'div',\n className,\n style,\n space,\n flex,\n attrs,\n onClick,\n children,\n}: ActionSpaceProps) {\n return _h(component as ComponentType, {\n className: classes(className),\n style: {width: space, height: space, flex, ...style},\n onClick,\n ...attrs,\n } as Attributes, children);\n}\n","import {CustomRender} from '@zui/core';\nimport {ActionCustomProps} from '../types/action-custom-props';\n\nexport function ActionCustom({type, ...props}: ActionCustomProps) {\n return ;\n}\n","import {CustomContent, classes} from '@zui/core';\nimport {Attributes, ComponentType, h as _h} from 'preact';\nimport {ActionBasicProps} from '../types';\n\nexport function ActionBasic({\n component = 'div',\n className,\n children,\n content,\n style,\n attrs,\n}: ActionBasicProps) {\n return _h(component as ComponentType, {\n className: classes(className),\n style,\n ...attrs,\n } as Attributes, , children);\n}\n","import {Component, createRef, h as _h, isValidElement} from 'preact';\nimport type {JSX, ComponentType} from 'preact';\nimport {classes, ClassNameLike} from '@zui/core';\nimport '@zui/css-icons/src/icons/caret.css';\nimport '../style/index.css';\nimport {ActionDivider} from './action-divider';\nimport {ActionItem} from './action-item';\nimport {ActionHeading} from './action-heading';\nimport {ActionSpace} from './action-space';\nimport {ActionCustom} from './action-custom';\nimport {ActionBasic} from './action-basic';\nimport type {ActionMenuOptions} from '../types/action-menu-options';\nimport type {ActionBasicProps} from '../types/action-basic-props';\nimport type {ActionMenuItemOptions} from '../types/action-menu-item-options';\nimport {ActionItemProps} from '../types';\n\nexport class ActionMenu = ActionMenuOptions, S = {}> extends Component {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n static ItemComponents: Record> = {\n divider: ActionDivider,\n item: ActionItem,\n heading: ActionHeading,\n space: ActionSpace,\n custom: ActionCustom,\n basic: ActionBasic,\n };\n\n static ROOT_TAG = 'menu';\n\n static NAME = 'action-menu';\n\n ref = createRef();\n\n get name() {\n return this.props.name ?? (this.constructor as typeof ActionMenu).NAME;\n }\n\n componentDidMount() {\n this.afterRender(true);\n }\n\n componentDidUpdate(): void {\n this.afterRender(false);\n }\n\n componentWillUnmount(): void {\n this.props.beforeDestroy?.({menu: this});\n }\n\n afterRender(firstRender: boolean) {\n this.props.afterRender?.({menu: this, firstRender});\n }\n\n handleItemClick(item: T, index: number, onClick: ((event: MouseEvent, item: T, index: number) => void) | undefined, event: MouseEvent) {\n if (onClick) {\n onClick.call(event.target, event, item, index);\n }\n const {onClickItem} = this.props;\n if (onClickItem) {\n onClickItem({menu: this, item, index, event});\n }\n }\n\n beforeRender(): Omit & {items: T[]} {\n const props = {...this.props};\n if (typeof props.items === 'function') {\n props.items = props.items(this);\n }\n if (!props.items) {\n props.items = [];\n }\n const customOptions = props.beforeRender?.({menu: this, options: props});\n if (customOptions) {\n Object.assign(props, customOptions);\n }\n return props as Omit
& {items: T[]};\n }\n\n getItemRenderProps(props: Omit
& {items: T[]}, item: T, index: number): T {\n const {commonItemProps, onClickItem, itemRenderProps} = props;\n let itemProps: T = {...item};\n\n if (commonItemProps) {\n Object.assign(itemProps, commonItemProps[item.type || 'item']);\n }\n if (onClickItem || item.onClick) {\n itemProps.onClick = this.handleItemClick.bind(this, itemProps, index, item.onClick as ((event: MouseEvent) => void)) as JSX.MouseEventHandler;\n }\n itemProps.className = classes(itemProps.className);\n if (itemRenderProps) {\n itemProps = itemRenderProps(itemProps);\n }\n return itemProps;\n }\n\n renderItem(props: Omit & {items: T[]}, item: T, index: number) {\n if (!item) {\n return null;\n }\n const itemAllProps = this.getItemRenderProps(props, item, index);\n\n const {itemRender} = props;\n if (itemRender) {\n if (typeof itemRender === 'object') {\n const CustomRenderComponent = itemRender[item.type || 'item'];\n if (CustomRenderComponent) {\n return ;\n }\n } else if (typeof itemRender === 'function') {\n const result = itemRender.call(this, itemAllProps, _h);\n if (isValidElement(result)) {\n return result;\n }\n if (typeof result === 'object') {\n Object.assign(itemAllProps, result);\n }\n }\n }\n\n const {type = 'item', component, key = index, rootAttrs, rootClass, rootStyle, rootChildren, ...itemProps} = itemAllProps;\n\n if (type === 'html') {\n return (\n
)}\n style={rootStyle || itemProps.style}\n dangerouslySetInnerHTML={{__html: (itemProps as unknown as {html: string}).html}}\n />\n );\n }\n\n const ItemComponent = (!component || typeof component === 'string')\n ? (this.constructor as typeof ActionMenu).ItemComponents ? ((this.constructor as typeof ActionMenu).ItemComponents[type] || ActionMenu.ItemComponents[type]) : ActionMenu.ItemComponents[type]\n : component;\n Object.assign(itemProps, {\n type,\n component: typeof component === 'string' ? component : undefined,\n });\n\n if (props.checkbox && type === 'item' && (itemProps as ActionItemProps).checked === undefined) {\n (itemProps as ActionItemProps).checked = !!(itemProps as ActionItemProps).active;\n }\n\n return this.renderTypedItem(ItemComponent, {\n className: classes(rootClass),\n children: rootChildren,\n style: rootStyle,\n key,\n ...rootAttrs,\n } as JSX.HTMLAttributes, {\n ...itemProps,\n type,\n component: typeof component === 'string' ? component : undefined,\n } as T);\n }\n\n renderTypedItem(ItemComponent: ComponentType, rootProps: JSX.HTMLAttributes, itemProps: T) {\n const {children, className, key, ...rootAttrs} = rootProps;\n\n return (\n )}\n >\n \n {typeof children === 'function' ? children() : children}\n \n );\n }\n\n render() {\n const props = this.beforeRender();\n const {\n name,\n style,\n commonItemProps: itemProps,\n className,\n items,\n children,\n itemRender,\n onClickItem,\n beforeRender,\n afterRender,\n beforeDestroy,\n ...others\n } = props;\n\n const RootTag = (this.constructor as typeof ActionMenu).ROOT_TAG as unknown as ComponentType;\n\n return (\n \n {items && items.map(this.renderItem.bind(this, props))}\n {children}\n \n );\n }\n}\n","import {ComponentFromReact} from '@zui/core';\nimport {ActionMenu as ActionMenuReact} from '../component/action-menu';\nimport type {ActionMenuOptions, ActionBasicProps, ActionMenuItemOptions} from '../types';\n\nexport class ActionMenu extends ComponentFromReact, ActionMenuReact> {\n static NAME = 'ActionMenu';\n\n static Component = ActionMenuReact;\n}\n","import {ActionNestedItemProps} from '../types/action-nested-item-props';\nimport {ActionItem} from './action-item';\n\nexport function ActionNestedItem({\n items,\n show,\n level,\n ...others\n}: ActionNestedItemProps) {\n return ;\n}\n","import {ComponentChildren} from 'preact';\nimport {$, classes} from '@zui/core';\nimport type {ActionBasicProps, ActionMenuItemKey, ActionNestedItemProps, ActionMenuNestedItemOptions, ActionMenuNestedOptions, ActionMenuNestedState, ActionMenuOptions} from '../types';\nimport {ActionMenu} from './action-menu';\nimport {ActionNestedItem} from './action-nested-item';\n\nexport class ActionMenuNested = ActionMenuNestedOptions> extends ActionMenu {\n static ItemComponents = {\n item: ActionNestedItem,\n };\n\n #keys = new Set();\n\n #controlled: boolean;\n\n constructor(props: P) {\n super(props);\n this.#controlled = props.nestedShow === undefined; // Controlled menu use state to store nested\n if (this.#controlled) {\n this.state = {nestedShow: props.defaultNestedShow ?? {}};\n }\n }\n\n get nestedTrigger() {\n return this.props.nestedTrigger;\n }\n\n beforeRender(): Omit & {items: T[]} {\n const allProps = super.beforeRender();\n const {nestedShow, nestedTrigger, defaultNestedShow, controlledMenu, indent, ...props} = allProps;\n if (typeof props.items === 'function') {\n props.items = props.items(this);\n }\n if (!props.items) {\n props.items = [];\n }\n if (!props.items.some(x => (x as ActionNestedItemProps).items)) {\n props.className = classes(props.className, 'no-nested-items');\n }\n if (!controlledMenu && indent) {\n props.style = Object.assign({\n [`--${this.name}-indent`]: `${indent}px`,\n }, props.style);\n }\n return props as Omit
& {items: T[]};\n }\n\n getNestedMenuProps(items: ActionMenuNestedItemOptions[]): ActionMenuNestedOptions {\n const {name, controlledMenu, nestedShow, beforeDestroy, beforeRender, itemRender, onClickItem, afterRender, commonItemProps, level, itemRenderProps} = this.props;\n return {\n items: items,\n name: name,\n nestedShow: this.#controlled ? this.state.nestedShow : nestedShow,\n nestedTrigger: this.nestedTrigger,\n controlledMenu: (controlledMenu || this) as ActionMenuNested,\n commonItemProps: commonItemProps,\n onClickItem: onClickItem as ActionMenuOptions['onClickItem'],\n afterRender: afterRender as ActionMenuOptions['afterRender'],\n beforeRender: beforeRender as ActionMenuOptions['beforeRender'],\n beforeDestroy: beforeDestroy as ActionMenuOptions['beforeDestroy'],\n itemRender: itemRender as ActionMenuOptions['itemRender'],\n itemRenderProps: itemRenderProps as ActionMenuOptions['itemRenderProps'],\n level: (level || 0) + 1,\n };\n }\n\n renderNestedMenu(item: ActionNestedItemProps) {\n let {items} = item;\n if (!items) {\n return;\n }\n if (typeof items === 'function') {\n items = items(item, this as ActionMenuNested);\n }\n if (!items.length) {\n return;\n }\n const NestedMenuComponent = (this.constructor as typeof ActionMenuNested);\n const props = this.getNestedMenuProps(items);\n\n return (\n \n );\n }\n\n isNestedItem(item: T): boolean {\n return (!item.type || item.type === 'item') && !!(item as ActionNestedItemProps).items;\n }\n\n // eslint-disable-next-line @typescript-eslint/no-unused-vars\n renderToggleIcon(_show: boolean, _item: ActionNestedItemProps): ComponentChildren | void {\n }\n\n getItemRenderProps(props: Omit
& {items: T[]}, item: T, index: number): T {\n const itemProps = super.getItemRenderProps(props, item, index);\n (itemProps as ActionNestedItemProps).level = (props.level || 0);\n if (!this.isNestedItem(itemProps)) {\n return itemProps;\n }\n const key = itemProps.key ?? (itemProps as {id?: string}).id ?? `${(props.level || 0)}:${index}`;\n this.#keys.add(key);\n const show = this.isExpanded(key);\n if (show) {\n itemProps.rootChildren = [\n itemProps.rootChildren,\n this.renderNestedMenu(item),\n ];\n }\n if (this.nestedTrigger === 'hover') {\n itemProps.rootAttrs = {\n ...itemProps.rootAttrs,\n onMouseEnter: this.#toggleMenuByEvent.bind(this, key, true),\n onMouseLeave: this.#toggleMenuByEvent.bind(this, key, false),\n };\n } else if (this.nestedTrigger === 'click') {\n const {onClick} = itemProps;\n itemProps.onClick = (event) => {\n this.#toggleMenuByEvent(key, undefined, event);\n (onClick as (event: MouseEvent) => void)?.(event);\n };\n }\n const toggleIcon = this.renderToggleIcon(show, itemProps);\n if (toggleIcon) {\n itemProps.children = [itemProps.children, toggleIcon];\n }\n (itemProps as ActionNestedItemProps).show = show;\n itemProps.rootClass = [itemProps.rootClass, 'has-nested-menu', show ? 'show' : ''];\n return itemProps;\n }\n\n isExpanded(key: ActionMenuItemKey) {\n const nestedShow = this.#controlled ? this.state.nestedShow : this.props.nestedShow;\n if (nestedShow && typeof nestedShow === 'object') {\n return nestedShow[key];\n }\n return !!nestedShow;\n }\n\n toggle(key: ActionMenuItemKey, toggle?: boolean): boolean {\n const {controlledMenu} = this.props;\n if (controlledMenu) {\n return controlledMenu.toggle(key, toggle);\n }\n if (!this.#controlled) {\n return false;\n }\n let {nestedShow: nestedShowState = {}} = this.state;\n if (typeof nestedShowState === 'boolean') {\n if (nestedShowState === true) {\n nestedShowState = [...this.#keys.values()].reduce>((map, k) => {\n map[k] = true;\n return map;\n }, {});\n } else {\n nestedShowState = {};\n }\n }\n if (toggle === undefined) {\n toggle = !nestedShowState[key];\n } else if (!!nestedShowState[key] === !!toggle) {\n return false;\n }\n if (toggle) {\n nestedShowState[key] = toggle;\n } else {\n delete nestedShowState[key];\n }\n this.setState({nestedShow: {...nestedShowState}});\n return true;\n }\n\n expand(key: ActionMenuItemKey) {\n return this.toggle(key, true);\n }\n\n collapse(key: ActionMenuItemKey) {\n return this.toggle(key, false);\n }\n\n expandAll() {\n if (!this.#controlled) {\n return;\n }\n this.setState({nestedShow: true});\n }\n\n collapseAll() {\n if (!this.#controlled) {\n return;\n }\n this.setState({nestedShow: false});\n }\n\n #toggleMenuByEvent = (key: ActionMenuItemKey, toggle: boolean | undefined, event: MouseEvent) => {\n if ($(event.target as HTMLElement).closest('.not-nested-toggle').length) {\n return;\n }\n this.toggle(key, toggle);\n event.preventDefault();\n };\n}\n","import {ComponentFromReact} from '@zui/core';\nimport {ActionMenuNested as ActionMenuNestedReact} from '../component/action-menu-nested';\nimport type {ActionBasicProps, ActionMenuNestedItemOptions, ActionMenuNestedOptions} from '../types';\n\nexport class ActionMenuNested extends ComponentFromReact, ActionMenuNestedReact> {\n static NAME = 'ActionMenuNested';\n\n static Component = ActionMenuNestedReact;\n}\n","import {classes} from '@zui/core';\nimport {ActionMenuNested} from '@zui/action-menu/src/component/action-menu-nested';\nimport '@zui/css-icons/src/icons/caret.css';\nimport type {ActionMenuItemOptions, ActionItemProps} from '@zui/action-menu/src/types';\nimport type {MenuOptions, MenuItemOptions} from '../types';\nimport '../style/index.css';\n\nexport class Menu = MenuOptions> extends ActionMenuNested {\n static NAME = 'menu';\n\n get nestedTrigger() {\n return this.props.nestedTrigger || 'click';\n }\n\n get menuName() {\n return 'menu-nested';\n }\n\n beforeRender() {\n const options = super.beforeRender();\n let {hasIcons} = options;\n\n if (hasIcons === undefined) {\n hasIcons = options.items.some(x => (x as ActionItemProps).icon);\n }\n options.className = classes(options.className, this.menuName, {\n 'has-icons': hasIcons,\n 'has-nested-items': options.items.some(x => this.isNestedItem(x)),\n 'popup': options.popup,\n });\n return options;\n }\n\n renderToggleIcon(show: boolean) {\n return ;\n }\n}\n","import {ComponentFromReact} from '@zui/core';\nimport {Menu as MenuReact} from '../component';\nimport {MenuOptions, MenuItemOptions} from '../types';\n\nexport class Menu extends ComponentFromReact> {\n static NAME = 'Menu';\n\n static Component = MenuReact;\n}\n","import {classes, HElement, Icon} from '@zui/core';\nimport {ButtonProps} from '../types/button-props';\nimport type {RenderableProps} from 'preact';\nimport '../style/index.css';\n\nexport class Button extends HElement
{\n protected declare _isEmptyText?: boolean;\n\n protected declare _onlyCaret?: boolean;\n\n protected _beforeRender(props: RenderableProps
) {\n const {text, loading, loadingText, caret, icon, trailingIcon, children} = props;\n this._isEmptyText = text === undefined || text === null || (typeof text === 'string' && !text.length) || loading && !loadingText;\n this._onlyCaret = caret && this._isEmptyText && !icon && !trailingIcon && !children && !loading;\n }\n\n protected _getChildren(props: RenderableProps
) {\n const {loading, loadingIcon, loadingText, icon, text, children, trailingIcon, caret} = props;\n return [\n loading ? : ,\n this._isEmptyText ? null : {loading ? loadingText : text},\n loading ? null : children,\n loading ? null : ,\n loading ? null : caret ? : null,\n ];\n }\n\n protected _getClassName(props: RenderableProps
) {\n const {type, className, disabled, loading, active, children, square, size, rounded} = props;\n return classes('btn', type, className, {\n 'btn-caret': this._onlyCaret,\n disabled: disabled || loading,\n active,\n loading,\n square: square === undefined ? (!this._onlyCaret && !children && this._isEmptyText) : square,\n }, size ? `size-${size}` : '', typeof rounded === 'string' ? rounded : {rounded});\n }\n\n protected _getComponent(props: RenderableProps
) {\n return props.component || (props.url ? 'a' : 'button');\n }\n\n protected _getProps(props: RenderableProps
) {\n const component = this._getComponent(props);\n const {url, target, btnType = 'button', hint} = props;\n const componentProps: Record = {\n ...super._getProps(props),\n title: hint,\n type: component === 'button' ? btnType : undefined,\n };\n if (url !== undefined) {\n componentProps[component === 'a' ? 'href' : 'data-url'] = url;\n }\n if (target !== undefined) {\n componentProps[component === 'a' ? 'target' : 'data-target'] = target;\n }\n return componentProps;\n }\n}\n","import {Button} from '@zui/button/src/component/button';\nimport {ToolbarItemProps} from '../types';\n\nexport function ToolbarItem({\n key,\n type: toolbarType,\n btnType: type,\n ...btnProps\n}: ToolbarItemProps) {\n return ;\n}\n","import {createRef} from 'preact';\nimport {$} from '@zui/core';\nimport {Button} from '@zui/button/src/component/button';\nimport type {DropdownButtonOptions} from '../types';\nimport type {Dropdown} from '../vanilla';\n\nexport class DropdownButton extends Button {\n static defaultProps: Partial = {\n caret: true,\n };\n\n _ref = createRef();\n\n get triggerElement() {\n return this._ref.current as HTMLElement;\n }\n\n _updateData() {\n const {dropdown, items} = this.props;\n const $trigger = $(this.triggerElement);\n const instance = $trigger.zui('dropdown') as Dropdown;\n const options = {\n items,\n ...dropdown,\n };\n if (instance) {\n instance.setOptions(options);\n } else {\n $trigger.data(options);\n }\n }\n\n componentDidMount(): void {\n this._updateData();\n }\n\n componentDidUpdate(): void {\n this._updateData();\n }\n\n componentWillUnmount(): void {\n const dropdown = $(this.triggerElement).zui('dropdown') as Dropdown;\n if (dropdown) {\n dropdown.destroy();\n }\n }\n\n protected _getProps(props: DropdownButtonOptions) {\n const {trigger, placement} = props;\n return {\n ...super._getProps(props),\n 'data-toggle': 'dropdown',\n 'data-trigger': trigger,\n 'data-placement': placement,\n ref: this._ref,\n };\n }\n}\n","function t(t){return t.split(\"-\")[1]}function e(t){return\"y\"===t?\"height\":\"width\"}function n(t){return t.split(\"-\")[0]}function o(t){return[\"top\",\"bottom\"].includes(n(t))?\"x\":\"y\"}function i(i,r,a){let{reference:l,floating:s}=i;const c=l.x+l.width/2-s.width/2,f=l.y+l.height/2-s.height/2,m=o(r),u=e(m),g=l[u]/2-s[u]/2,d=\"x\"===m;let p;switch(n(r)){case\"top\":p={x:c,y:l.y-s.height};break;case\"bottom\":p={x:c,y:l.y+l.height};break;case\"right\":p={x:l.x+l.width,y:f};break;case\"left\":p={x:l.x-s.width,y:f};break;default:p={x:l.x,y:l.y}}switch(t(r)){case\"start\":p[m]-=g*(a&&d?-1:1);break;case\"end\":p[m]+=g*(a&&d?-1:1)}return p}const r=async(t,e,n)=>{const{placement:o=\"bottom\",strategy:r=\"absolute\",middleware:a=[],platform:l}=n,s=a.filter(Boolean),c=await(null==l.isRTL?void 0:l.isRTL(e));let f=await l.getElementRects({reference:t,floating:e,strategy:r}),{x:m,y:u}=i(f,o,c),g=o,d={},p=0;for(let n=0;n({name:\"arrow\",options:n,async fn(i){const{x:r,y:s,placement:c,rects:m,platform:g,elements:d}=i,{element:p,padding:h=0}=a(n,i)||{};if(null==p)return{};const y=l(h),x={x:r,y:s},w=o(c),v=e(w),b=await g.getDimensions(p),A=\"y\"===w,R=A?\"top\":\"left\",P=A?\"bottom\":\"right\",E=A?\"clientHeight\":\"clientWidth\",T=m.reference[v]+m.reference[w]-x[w]-m.floating[v],D=x[w]-m.reference[w],L=await(null==g.getOffsetParent?void 0:g.getOffsetParent(p));let k=L?L[E]:0;k&&await(null==g.isElement?void 0:g.isElement(L))||(k=d.floating[E]||m.floating[v]);const O=T/2-D/2,B=k/2-b[v]/2-1,C=f(y[R],B),H=f(y[P],B),S=C,F=k-b[v]-H,M=k/2-b[v]/2+O,V=u(S,M,F),W=null!=t(c)&&M!=V&&m.reference[v]/2-(Mt.concat(e,e+\"-start\",e+\"-end\")),[]),h={left:\"right\",right:\"left\",bottom:\"top\",top:\"bottom\"};function y(t){return t.replace(/left|right|bottom|top/g,(t=>h[t]))}function x(n,i,r){void 0===r&&(r=!1);const a=t(n),l=o(n),s=e(l);let c=\"x\"===l?a===(r?\"end\":\"start\")?\"right\":\"left\":\"start\"===a?\"bottom\":\"top\";return i.reference[s]>i.floating[s]&&(c=y(c)),{main:c,cross:y(c)}}const w={start:\"end\",end:\"start\"};function v(t){return t.replace(/start|end/g,(t=>w[t]))}const b=function(e){return void 0===e&&(e={}),{name:\"autoPlacement\",options:e,async fn(o){var i,r,l;const{rects:s,middlewareData:f,placement:m,platform:u,elements:g}=o,{crossAxis:d=!1,alignment:h,allowedPlacements:y=p,autoAlignment:w=!0,...b}=a(e,o),A=void 0!==h||y===p?function(e,o,i){return(e?[...i.filter((n=>t(n)===e)),...i.filter((n=>t(n)!==e))]:i.filter((t=>n(t)===t))).filter((n=>!e||t(n)===e||!!o&&v(n)!==n))}(h||null,w,y):y,R=await c(o,b),P=(null==(i=f.autoPlacement)?void 0:i.index)||0,E=A[P];if(null==E)return{};const{main:T,cross:D}=x(E,s,await(null==u.isRTL?void 0:u.isRTL(g.floating)));if(m!==E)return{reset:{placement:A[0]}};const L=[R[n(E)],R[T],R[D]],k=[...(null==(r=f.autoPlacement)?void 0:r.overflows)||[],{placement:E,overflows:L}],O=A[P+1];if(O)return{data:{index:P+1,overflows:k},reset:{placement:O}};const B=k.map((e=>{const n=t(e.placement);return[e.placement,n&&d?e.overflows.slice(0,2).reduce(((t,e)=>t+e),0):e.overflows[0],e.overflows]})).sort(((t,e)=>t[1]-e[1])),C=(null==(l=B.filter((e=>e[2].slice(0,t(e[0])?2:3).every((t=>t<=0))))[0])?void 0:l[0])||B[0][0];return C!==m?{data:{index:P+1,overflows:k},reset:{placement:C}}:{}}}};const A=function(e){return void 0===e&&(e={}),{name:\"flip\",options:e,async fn(o){var i;const{placement:r,middlewareData:l,rects:s,initialPlacement:f,platform:m,elements:u}=o,{mainAxis:g=!0,crossAxis:d=!0,fallbackPlacements:p,fallbackStrategy:h=\"bestFit\",fallbackAxisSideDirection:w=\"none\",flipAlignment:b=!0,...A}=a(e,o),R=n(r),P=n(f)===f,E=await(null==m.isRTL?void 0:m.isRTL(u.floating)),T=p||(P||!b?[y(f)]:function(t){const e=y(t);return[v(t),e,v(e)]}(f));p||\"none\"===w||T.push(...function(e,o,i,r){const a=t(e);let l=function(t,e,n){const o=[\"left\",\"right\"],i=[\"right\",\"left\"],r=[\"top\",\"bottom\"],a=[\"bottom\",\"top\"];switch(t){case\"top\":case\"bottom\":return n?e?i:o:e?o:i;case\"left\":case\"right\":return e?r:a;default:return[]}}(n(e),\"start\"===i,r);return a&&(l=l.map((t=>t+\"-\"+a)),o&&(l=l.concat(l.map(v)))),l}(f,b,w,E));const D=[f,...T],L=await c(o,A),k=[];let O=(null==(i=l.flip)?void 0:i.overflows)||[];if(g&&k.push(L[R]),d){const{main:t,cross:e}=x(r,s,E);k.push(L[t],L[e])}if(O=[...O,{placement:r,overflows:k}],!k.every((t=>t<=0))){var B,C;const t=((null==(B=l.flip)?void 0:B.index)||0)+1,e=D[t];if(e)return{data:{index:t,overflows:O},reset:{placement:e}};let n=null==(C=O.filter((t=>t.overflows[0]<=0)).sort(((t,e)=>t.overflows[1]-e.overflows[1]))[0])?void 0:C.placement;if(!n)switch(h){case\"bestFit\":{var H;const t=null==(H=O.map((t=>[t.placement,t.overflows.filter((t=>t>0)).reduce(((t,e)=>t+e),0)])).sort(((t,e)=>t[1]-e[1]))[0])?void 0:H[0];t&&(n=t);break}case\"initialPlacement\":n=f}if(r!==n)return{reset:{placement:n}}}return{}}}};function R(t,e){return{top:t.top-e.height,right:t.right-e.width,bottom:t.bottom-e.height,left:t.left-e.width}}function P(t){return d.some((e=>t[e]>=0))}const E=function(t){return void 0===t&&(t={}),{name:\"hide\",options:t,async fn(e){const{rects:n}=e,{strategy:o=\"referenceHidden\",...i}=a(t,e);switch(o){case\"referenceHidden\":{const t=R(await c(e,{...i,elementContext:\"reference\"}),n.reference);return{data:{referenceHiddenOffsets:t,referenceHidden:P(t)}}}case\"escaped\":{const t=R(await c(e,{...i,altBoundary:!0}),n.floating);return{data:{escapedOffsets:t,escaped:P(t)}}}default:return{}}}}};function T(t){const e=f(...t.map((t=>t.left))),n=f(...t.map((t=>t.top)));return{x:e,y:n,width:m(...t.map((t=>t.right)))-e,height:m(...t.map((t=>t.bottom)))-n}}const D=function(t){return void 0===t&&(t={}),{name:\"inline\",options:t,async fn(e){const{placement:i,elements:r,rects:c,platform:u,strategy:g}=e,{padding:d=2,x:p,y:h}=a(t,e),y=Array.from(await(null==u.getClientRects?void 0:u.getClientRects(r.reference))||[]),x=function(t){const e=t.slice().sort(((t,e)=>t.y-e.y)),n=[];let o=null;for(let t=0;to.height/2?n.push([i]):n[n.length-1].push(i),o=i}return n.map((t=>s(T(t))))}(y),w=s(T(y)),v=l(d);const b=await u.getElementRects({reference:{getBoundingClientRect:function(){if(2===x.length&&x[0].left>x[1].right&&null!=p&&null!=h)return x.find((t=>p>t.left-v.left&&pt.top-v.top&&h=2){if(\"x\"===o(i)){const t=x[0],e=x[x.length-1],o=\"top\"===n(i),r=t.top,a=e.bottom,l=o?t.left:e.left,s=o?t.right:e.right;return{top:r,bottom:a,left:l,right:s,width:s-l,height:a-r,x:l,y:r}}const t=\"left\"===n(i),e=m(...x.map((t=>t.right))),r=f(...x.map((t=>t.left))),a=x.filter((n=>t?n.left===r:n.right===e)),l=a[0].top,s=a[a.length-1].bottom;return{top:l,bottom:s,left:r,right:e,width:e-r,height:s-l,x:r,y:l}}return w}},floating:r.floating,strategy:g});return c.reference.x!==b.reference.x||c.reference.y!==b.reference.y||c.reference.width!==b.reference.width||c.reference.height!==b.reference.height?{reset:{rects:b}}:{}}}};const L=function(e){return void 0===e&&(e=0),{name:\"offset\",options:e,async fn(i){const{x:r,y:l}=i,s=await async function(e,i){const{placement:r,platform:l,elements:s}=e,c=await(null==l.isRTL?void 0:l.isRTL(s.floating)),f=n(r),m=t(r),u=\"x\"===o(r),g=[\"left\",\"top\"].includes(f)?-1:1,d=c&&u?-1:1,p=a(i,e);let{mainAxis:h,crossAxis:y,alignmentAxis:x}=\"number\"==typeof p?{mainAxis:p,crossAxis:0,alignmentAxis:null}:{mainAxis:0,crossAxis:0,alignmentAxis:null,...p};return m&&\"number\"==typeof x&&(y=\"end\"===m?-1*x:x),u?{x:y*d,y:h*g}:{x:h*g,y:y*d}}(i,e);return{x:r+s.x,y:l+s.y,data:s}}}};function k(t){return\"x\"===t?\"y\":\"x\"}const O=function(t){return void 0===t&&(t={}),{name:\"shift\",options:t,async fn(e){const{x:i,y:r,placement:l}=e,{mainAxis:s=!0,crossAxis:f=!1,limiter:m={fn:t=>{let{x:e,y:n}=t;return{x:e,y:n}}},...g}=a(t,e),d={x:i,y:r},p=await c(e,g),h=o(n(l)),y=k(h);let x=d[h],w=d[y];if(s){const t=\"y\"===h?\"bottom\":\"right\";x=u(x+p[\"y\"===h?\"top\":\"left\"],x,x-p[t])}if(f){const t=\"y\"===y?\"bottom\":\"right\";w=u(w+p[\"y\"===y?\"top\":\"left\"],w,w-p[t])}const v=m.fn({...e,[h]:x,[y]:w});return{...v,data:{x:v.x-i,y:v.y-r}}}}},B=function(t){return void 0===t&&(t={}),{options:t,fn(e){const{x:i,y:r,placement:l,rects:s,middlewareData:c}=e,{offset:f=0,mainAxis:m=!0,crossAxis:u=!0}=a(t,e),g={x:i,y:r},d=o(l),p=k(d);let h=g[d],y=g[p];const x=a(f,e),w=\"number\"==typeof x?{mainAxis:x,crossAxis:0}:{mainAxis:0,crossAxis:0,...x};if(m){const t=\"y\"===d?\"height\":\"width\",e=s.reference[d]-s.floating[t]+w.mainAxis,n=s.reference[d]+s.reference[t]-w.mainAxis;hn&&(h=n)}if(u){var v,b;const t=\"y\"===d?\"width\":\"height\",e=[\"top\",\"left\"].includes(n(l)),o=s.reference[p]-s.floating[t]+(e&&(null==(v=c.offset)?void 0:v[p])||0)+(e?0:w.crossAxis),i=s.reference[p]+s.reference[t]+(e?0:(null==(b=c.offset)?void 0:b[p])||0)-(e?w.crossAxis:0);yi&&(y=i)}return{[d]:h,[p]:y}}}},C=function(e){return void 0===e&&(e={}),{name:\"size\",options:e,async fn(i){const{placement:r,rects:l,platform:s,elements:u}=i,{apply:g=(()=>{}),...d}=a(e,i),p=await c(i,d),h=n(r),y=t(r),x=\"x\"===o(r),{width:w,height:v}=l.floating;let b,A;\"top\"===h||\"bottom\"===h?(b=h,A=y===(await(null==s.isRTL?void 0:s.isRTL(u.floating))?\"start\":\"end\")?\"left\":\"right\"):(A=h,b=\"end\"===y?\"top\":\"bottom\");const R=v-p[b],P=w-p[A],E=!i.middlewareData.shift;let T=R,D=P;if(x){const t=w-p.left-p.right;D=y||E?f(P,t):t}else{const t=v-p.top-p.bottom;T=y||E?f(R,t):t}if(E&&!y){const t=m(p.left,0),e=m(p.right,0),n=m(p.top,0),o=m(p.bottom,0);x?D=w-2*(0!==t||0!==e?t+e:m(p.left,p.right)):T=v-2*(0!==n||0!==o?n+o:m(p.top,p.bottom))}await g({...i,availableWidth:D,availableHeight:T});const L=await s.getDimensions(u.floating);return w!==L.width||v!==L.height?{reset:{rects:!0}}:{}}}};export{g as arrow,b as autoPlacement,r as computePosition,c as detectOverflow,A as flip,E as hide,D as inline,B as limitShift,L as offset,s as rectToClientRect,O as shift,C as size};\n","import{rectToClientRect as t,computePosition as e}from\"@floating-ui/core\";export{arrow,autoPlacement,detectOverflow,flip,hide,inline,limitShift,offset,shift,size}from\"@floating-ui/core\";function n(t){var e;return(null==t||null==(e=t.ownerDocument)?void 0:e.defaultView)||window}function o(t){return n(t).getComputedStyle(t)}function i(t){return t instanceof n(t).Node}function r(t){return i(t)?(t.nodeName||\"\").toLowerCase():\"#document\"}function c(t){return t instanceof HTMLElement||t instanceof n(t).HTMLElement}function l(t){return\"undefined\"!=typeof ShadowRoot&&(t instanceof n(t).ShadowRoot||t instanceof ShadowRoot)}function s(t){const{overflow:e,overflowX:n,overflowY:i,display:r}=o(t);return/auto|scroll|overlay|hidden|clip/.test(e+i+n)&&![\"inline\",\"contents\"].includes(r)}function f(t){return[\"table\",\"td\",\"th\"].includes(r(t))}function u(t){const e=a(),n=o(t);return\"none\"!==n.transform||\"none\"!==n.perspective||!!n.containerType&&\"normal\"!==n.containerType||!e&&!!n.backdropFilter&&\"none\"!==n.backdropFilter||!e&&!!n.filter&&\"none\"!==n.filter||[\"transform\",\"perspective\",\"filter\"].some((t=>(n.willChange||\"\").includes(t)))||[\"paint\",\"layout\",\"strict\",\"content\"].some((t=>(n.contain||\"\").includes(t)))}function a(){return!(\"undefined\"==typeof CSS||!CSS.supports)&&CSS.supports(\"-webkit-backdrop-filter\",\"none\")}function d(t){return[\"html\",\"body\",\"#document\"].includes(r(t))}const h=Math.min,p=Math.max,m=Math.round,g=Math.floor,y=t=>({x:t,y:t});function w(t){const e=o(t);let n=parseFloat(e.width)||0,i=parseFloat(e.height)||0;const r=c(t),l=r?t.offsetWidth:n,s=r?t.offsetHeight:i,f=m(n)!==l||m(i)!==s;return f&&(n=l,i=s),{width:n,height:i,$:f}}function x(t){return t instanceof Element||t instanceof n(t).Element}function v(t){return x(t)?t:t.contextElement}function b(t){const e=v(t);if(!c(e))return y(1);const n=e.getBoundingClientRect(),{width:o,height:i,$:r}=w(e);let l=(r?m(n.width):n.width)/o,s=(r?m(n.height):n.height)/i;return l&&Number.isFinite(l)||(l=1),s&&Number.isFinite(s)||(s=1),{x:l,y:s}}const L=y(0);function T(t){const e=n(t);return a()&&e.visualViewport?{x:e.visualViewport.offsetLeft,y:e.visualViewport.offsetTop}:L}function R(e,o,i,r){void 0===o&&(o=!1),void 0===i&&(i=!1);const c=e.getBoundingClientRect(),l=v(e);let s=y(1);o&&(r?x(r)&&(s=b(r)):s=b(e));const f=function(t,e,o){return void 0===e&&(e=!1),!(!o||e&&o!==n(t))&&e}(l,i,r)?T(l):y(0);let u=(c.left+f.x)/s.x,a=(c.top+f.y)/s.y,d=c.width/s.x,h=c.height/s.y;if(l){const t=n(l),e=r&&x(r)?n(r):r;let o=t.frameElement;for(;o&&r&&e!==t;){const t=b(o),e=o.getBoundingClientRect(),i=getComputedStyle(o),r=e.left+(o.clientLeft+parseFloat(i.paddingLeft))*t.x,c=e.top+(o.clientTop+parseFloat(i.paddingTop))*t.y;u*=t.x,a*=t.y,d*=t.x,h*=t.y,u+=r,a+=c,o=n(o).frameElement}}return t({width:d,height:h,x:u,y:a})}function E(t){return x(t)?{scrollLeft:t.scrollLeft,scrollTop:t.scrollTop}:{scrollLeft:t.pageXOffset,scrollTop:t.pageYOffset}}function S(t){var e;return null==(e=(i(t)?t.ownerDocument:t.document)||window.document)?void 0:e.documentElement}function C(t){return R(S(t)).left+E(t).scrollLeft}function F(t){if(\"html\"===r(t))return t;const e=t.assignedSlot||t.parentNode||l(t)&&t.host||S(t);return l(e)?e.host:e}function O(t){const e=F(t);return d(e)?t.ownerDocument?t.ownerDocument.body:t.body:c(e)&&s(e)?e:O(e)}function D(t,e){var o;void 0===e&&(e=[]);const i=O(t),r=i===(null==(o=t.ownerDocument)?void 0:o.body),c=n(i);return r?e.concat(c,c.visualViewport||[],s(i)?i:[]):e.concat(i,D(i))}function H(e,i,r){let l;if(\"viewport\"===i)l=function(t,e){const o=n(t),i=S(t),r=o.visualViewport;let c=i.clientWidth,l=i.clientHeight,s=0,f=0;if(r){c=r.width,l=r.height;const t=a();(!t||t&&\"fixed\"===e)&&(s=r.offsetLeft,f=r.offsetTop)}return{width:c,height:l,x:s,y:f}}(e,r);else if(\"document\"===i)l=function(t){const e=S(t),n=E(t),i=t.ownerDocument.body,r=p(e.scrollWidth,e.clientWidth,i.scrollWidth,i.clientWidth),c=p(e.scrollHeight,e.clientHeight,i.scrollHeight,i.clientHeight);let l=-n.scrollLeft+C(t);const s=-n.scrollTop;return\"rtl\"===o(i).direction&&(l+=p(e.clientWidth,i.clientWidth)-r),{width:r,height:c,x:l,y:s}}(S(e));else if(x(i))l=function(t,e){const n=R(t,!0,\"fixed\"===e),o=n.top+t.clientTop,i=n.left+t.clientLeft,r=c(t)?b(t):y(1);return{width:t.clientWidth*r.x,height:t.clientHeight*r.y,x:i*r.x,y:o*r.y}}(i,r);else{const t=T(e);l={...i,x:i.x-t.x,y:i.y-t.y}}return t(l)}function W(t,e){const n=F(t);return!(n===e||!x(n)||d(n))&&(\"fixed\"===o(n).position||W(n,e))}function M(t,e,n){const o=c(e),i=S(e),l=\"fixed\"===n,f=R(t,!0,l,e);let u={scrollLeft:0,scrollTop:0};const a=y(0);if(o||!o&&!l)if((\"body\"!==r(e)||s(i))&&(u=E(e)),c(e)){const t=R(e,!0,l,e);a.x=t.x+e.clientLeft,a.y=t.y+e.clientTop}else i&&(a.x=C(i));return{x:f.left+u.scrollLeft-a.x,y:f.top+u.scrollTop-a.y,width:f.width,height:f.height}}function z(t,e){return c(t)&&\"fixed\"!==o(t).position?e?e(t):t.offsetParent:null}function P(t,e){const i=n(t);if(!c(t))return i;let l=z(t,e);for(;l&&f(l)&&\"static\"===o(l).position;)l=z(l,e);return l&&(\"html\"===r(l)||\"body\"===r(l)&&\"static\"===o(l).position&&!u(l))?i:l||function(t){let e=F(t);for(;c(e)&&!d(e);){if(u(e))return e;e=F(e)}return null}(t)||i}const V={convertOffsetParentRelativeRectToViewportRelativeRect:function(t){let{rect:e,offsetParent:n,strategy:o}=t;const i=c(n),l=S(n);if(n===l)return e;let f={scrollLeft:0,scrollTop:0},u=y(1);const a=y(0);if((i||!i&&\"fixed\"!==o)&&((\"body\"!==r(n)||s(l))&&(f=E(n)),c(n))){const t=R(n);u=b(n),a.x=t.x+n.clientLeft,a.y=t.y+n.clientTop}return{width:e.width*u.x,height:e.height*u.y,x:e.x*u.x-f.scrollLeft*u.x+a.x,y:e.y*u.y-f.scrollTop*u.y+a.y}},getDocumentElement:S,getClippingRect:function(t){let{element:e,boundary:n,rootBoundary:i,strategy:c}=t;const l=[...\"clippingAncestors\"===n?function(t,e){const n=e.get(t);if(n)return n;let i=D(t).filter((t=>x(t)&&\"body\"!==r(t))),c=null;const l=\"fixed\"===o(t).position;let f=l?F(t):t;for(;x(f)&&!d(f);){const e=o(f),n=u(f);n||\"fixed\"!==e.position||(c=null),(l?!n&&!c:!n&&\"static\"===e.position&&c&&[\"absolute\",\"fixed\"].includes(c.position)||s(f)&&!n&&W(t,f))?i=i.filter((t=>t!==f)):c=e,f=F(f)}return e.set(t,i),i}(e,this._c):[].concat(n),i],f=l[0],a=l.reduce(((t,n)=>{const o=H(e,n,c);return t.top=p(o.top,t.top),t.right=h(o.right,t.right),t.bottom=h(o.bottom,t.bottom),t.left=p(o.left,t.left),t}),H(e,f,c));return{width:a.right-a.left,height:a.bottom-a.top,x:a.left,y:a.top}},getOffsetParent:P,getElementRects:async function(t){let{reference:e,floating:n,strategy:o}=t;const i=this.getOffsetParent||P,r=this.getDimensions;return{reference:M(e,await i(n),o),floating:{x:0,y:0,...await r(n)}}},getClientRects:function(t){return Array.from(t.getClientRects())},getDimensions:function(t){return w(t)},getScale:b,isElement:x,isRTL:function(t){return\"rtl\"===getComputedStyle(t).direction}};function A(t,e,n,o){void 0===o&&(o={});const{ancestorScroll:i=!0,ancestorResize:r=!0,elementResize:c=\"function\"==typeof ResizeObserver,layoutShift:l=\"function\"==typeof IntersectionObserver,animationFrame:s=!1}=o,f=v(t),u=i||r?[...f?D(f):[],...D(e)]:[];u.forEach((t=>{i&&t.addEventListener(\"scroll\",n,{passive:!0}),r&&t.addEventListener(\"resize\",n)}));const a=f&&l?function(t,e){let n,o=null;const i=S(t);function r(){clearTimeout(n),o&&o.disconnect(),o=null}return function c(l,s){void 0===l&&(l=!1),void 0===s&&(s=1),r();const{left:f,top:u,width:a,height:d}=t.getBoundingClientRect();if(l||e(),!a||!d)return;const m={rootMargin:-g(u)+\"px \"+-g(i.clientWidth-(f+a))+\"px \"+-g(i.clientHeight-(u+d))+\"px \"+-g(f)+\"px\",threshold:p(0,h(1,s))||1};let y=!0;function w(t){const e=t[0].intersectionRatio;if(e!==s){if(!y)return c();e?c(!1,e):n=setTimeout((()=>{c(!1,1e-7)}),100)}y=!1}try{o=new IntersectionObserver(w,{...m,root:i.ownerDocument})}catch(t){o=new IntersectionObserver(w,m)}o.observe(t)}(!0),r}(f,n):null;let d,m=-1,y=null;c&&(y=new ResizeObserver((t=>{let[o]=t;o&&o.target===f&&y&&(y.unobserve(e),cancelAnimationFrame(m),m=requestAnimationFrame((()=>{y&&y.observe(e)}))),n()})),f&&!s&&y.observe(f),y.observe(e));let w=s?R(t):null;return s&&function e(){const o=R(t);!w||o.x===w.x&&o.y===w.y&&o.width===w.width&&o.height===w.height||n();w=o,d=requestAnimationFrame(e)}(),n(),()=>{u.forEach((t=>{i&&t.removeEventListener(\"scroll\",n),r&&t.removeEventListener(\"resize\",n)})),a&&a(),y&&y.disconnect(),y=null,s&&cancelAnimationFrame(d)}}const B=(t,n,o)=>{const i=new Map,r={platform:V,...o},c={...r.platform,_c:i};return e(t,n,{...r,platform:c})};export{A as autoUpdate,B as computePosition,D as getOverflowAncestors,V as platform};\n","import {$, classes} from '@zui/core';\nimport {flip, computePosition, shift, offset} from '@floating-ui/dom';\nimport {Menu} from '@zui/menu/src/component/menu';\nimport '@zui/css-icons/src/icons/caret.css';\nimport type {MenuItemOptions} from '@zui/menu/src/types';\nimport type {MenuOptions} from '@zui/menu/src/types';\nimport type {ActionMenuNestedItemOptions} from '@zui/action-menu/src/types';\nimport type {DropdownMenuOptions} from '../types/dropdown-menu-options';\n\nexport class DropdownMenu = DropdownMenuOptions> extends Menu {\n static defaultProps: Partial = {\n ...Menu.defaultProps,\n popup: true,\n nestedTrigger: 'hover',\n placement: 'right-start',\n };\n\n protected _layoutTimer = 0;\n\n get name() {\n return 'menu';\n }\n\n get menuName() {\n return 'dropdown-menu';\n }\n\n protected layout() {\n const element = this.ref.current as HTMLElement;\n const trigger = element?.parentElement;\n if (!element || !trigger) {\n return;\n }\n\n computePosition(trigger, element, {\n placement: this.props.placement,\n middleware: [flip(), shift(), offset(1)],\n }).then(({x, y}) => {\n $(element).css({\n left: x,\n top: y,\n });\n });\n }\n\n getNestedMenuProps(items: ActionMenuNestedItemOptions[]): MenuOptions {\n const props = super.getNestedMenuProps(items);\n return {\n ...props,\n className: classes('show', props.className),\n popup: true,\n };\n }\n\n afterRender(firstRender: boolean) {\n super.afterRender(firstRender);\n if (this.props.controlledMenu) {\n this.layout();\n this._layoutTimer = window.setTimeout(this.layout.bind(this), 100);\n }\n }\n\n renderToggleIcon() {\n return ;\n }\n\n componentWillUnmount(): void {\n super.componentWillUnmount();\n if (this._layoutTimer) {\n clearTimeout(this._layoutTimer);\n }\n }\n}\n","import {DropdownButton} from '@zui/dropdown/src/component';\nimport {ToolbarDropdownProps} from '../types';\n\nexport function ToolbarDropdown({\n key,\n type: toolbarType,\n btnType: type,\n ...dropdownBtnProps\n}: ToolbarDropdownProps) {\n return (\n \n );\n}\n","import {Component, h as _h, isValidElement, JSX} from 'preact';\nimport {classes} from '@zui/core';\nimport {Button} from '@zui/button/src/component/button';\nimport {DropdownButton} from '@zui/dropdown/src/component/dropdown-button';\nimport {BtnProps} from '../types/btn-props';\nimport {BtnGroupOptions} from '../types/btn-group-options';\nimport '../style/index.css';\n\nexport class BtnGroup extends Component {\n componentDidMount() {\n this.props.afterRender?.call(this, {firstRender: true});\n }\n\n componentDidUpdate(): void {\n this.props.afterRender?.call(this, {firstRender: false});\n }\n\n componentWillUnmount(): void {\n this.props.beforeDestroy?.call(this);\n }\n\n handleItemClick(item: BtnProps, index: number, onClick: ((event: MouseEvent) => void) | undefined, event: MouseEvent) {\n if (onClick) {\n onClick.call(event.target, event);\n }\n const {onClickItem} = this.props;\n if (onClickItem) {\n onClickItem.call(this, {item, index, event});\n }\n }\n\n beforeRender(): Omit & {items: BtnProps[]} {\n const options = {...this.props};\n const customOptions = options.beforeRender?.call(this, options);\n if (customOptions) {\n Object.assign(options, customOptions);\n }\n if (typeof options.items === 'function') {\n options.items = options.items.call(this);\n }\n return options as Omit & {items: BtnProps[]};\n }\n\n onRenderItem(item: BtnProps, index: number) {\n const {key = index, ...others} = item;\n const ButtonComponent = (item.dropdown || item.items) ? DropdownButton : Button;\n return ;\n }\n\n renderItem(options: Omit & {items: BtnProps[]}, item: BtnProps, index: number) {\n const {itemRender, btnProps: defaultBtnProps, onClickItem} = options;\n const btnProps: BtnProps = {key: index, ...item};\n if (defaultBtnProps) {\n Object.assign(btnProps, defaultBtnProps);\n }\n if (onClickItem) {\n btnProps.onClick = this.handleItemClick.bind(this, btnProps, index, item.onClick as ((event: MouseEvent) => void)) as JSX.MouseEventHandler;\n }\n if (itemRender) {\n const result = itemRender.call(this, btnProps, _h);\n if (isValidElement(result)) {\n return result;\n }\n if (typeof result === 'object') {\n Object.assign(btnProps, result);\n }\n }\n\n return this.onRenderItem(btnProps, index);\n }\n\n render() {\n const options = this.beforeRender();\n const {\n className,\n items,\n size,\n type,\n btnProps,\n children,\n itemRender,\n onClickItem,\n beforeRender,\n afterRender,\n beforeDestroy,\n ...others\n } = options;\n\n return (\n \n {items && items.map(this.renderItem.bind(this, options))}\n {children}\n \n );\n }\n}\n","import {BtnGroup} from '@zui/btn-group/src/component/btn-group';\nimport {ToolbarBtnGroupProps} from '../types';\n\nexport function ToolbarBtnGroup({\n key,\n type: toolbarType,\n btnType: type,\n ...btnGroupProps\n}: ToolbarBtnGroupProps) {\n return (\n \n );\n}\n","import {classes, ClassNameLike} from '@zui/core';\nimport {ActionMenu} from '@zui/action-menu/src/component/action-menu';\nimport {ActionBasicProps} from '@zui/action-menu/src/types';\nimport '@zui/css-icons/src/icons/caret.css';\nimport type {ToolbarOptions, ToolbarItemOptions} from '../types';\nimport '../style/index.css';\nimport {ComponentType, JSX} from 'preact';\nimport {ToolbarItem} from './toolbar-item';\nimport {ToolbarDropdown} from './toolbar-dropdown';\nimport {ButtonProps} from '@zui/button/src/types';\nimport {ToolbarBtnGroup} from './toolbar-btn-group';\n\nexport class Toolbar = ToolbarOptions> extends ActionMenu {\n static ItemComponents = {\n item: ToolbarItem,\n dropdown: ToolbarDropdown,\n 'btn-group': ToolbarBtnGroup,\n };\n\n static ROOT_TAG = 'nav';\n\n static NAME = 'toolbar';\n\n static defaultProps = {\n btnProps: {\n btnType: 'ghost',\n },\n };\n\n beforeRender() {\n const {gap, btnProps, wrap, ...options} = super.beforeRender();\n options.className = classes(options.className, wrap ? 'flex-wrap' : '', typeof gap === 'number' ? `gap-${gap}` : '');\n if (typeof gap === 'string') {\n if (options.style) {\n options.style.gap = gap;\n } else {\n options.style = {gap: gap};\n }\n }\n return options as Omit & {items: T[]};\n }\n\n isBtnItem(type?: string) {\n return type === 'item' || type === 'dropdown';\n }\n\n renderTypedItem(ItemComponent: ComponentType, rootProps: JSX.HTMLAttributes, itemProps: T) {\n const {type} = itemProps;\n const userBtnProps = this.props.btnProps;\n const btnProps = (this.isBtnItem(type) ? {btnType: 'ghost', ...userBtnProps} : {}) as ButtonProps;\n const props = {\n ...rootProps,\n ...btnProps,\n ...itemProps,\n className: classes(`${this.name}-${type}`, rootProps.className as ClassNameLike, btnProps.className, itemProps.className),\n style: Object.assign({}, rootProps.style, btnProps.style, itemProps.style),\n } as T;\n if (type === 'btn-group') {\n props.btnProps = userBtnProps;\n }\n return ;\n }\n}\n","import {isValidElement, ComponentChildren} from 'preact';\nimport {classes, Icon} from '@zui/core';\nimport {Button} from '@zui/button/src/component/button';\nimport type {ButtonProps} from '@zui/button';\nimport type {ToolbarOptions} from '@zui/toolbar';\nimport '@zui/css-icons/src/icons/close.css';\nimport {AlertOptions} from '../types';\nimport {Toolbar} from '@zui/toolbar/src/component';\n\nexport function Alert({\n className,\n style,\n actions,\n heading,\n content,\n contentClass,\n children,\n close,\n onClose,\n icon,\n ...others\n}: AlertOptions) {\n let closeButton: ComponentChildren;\n if (close === true) {\n closeButton = ;\n } else if (isValidElement(close)) {\n closeButton = close;\n } else if (typeof close === 'object') {\n closeButton = ;\n }\n const actionsToolbar = isValidElement(actions) ? actions : (actions ? : null);\n return (\n
\n \n {isValidElement(content) ? content : (\n \n {isValidElement(heading) ? heading : (heading && {heading})}\n {content}\n {heading ? actionsToolbar : null}\n \n )}\n {heading ? null : actionsToolbar}\n {closeButton}\n {children}\n \n );\n}\n","import {classes} from '@zui/core';\nimport {Alert} from '@zui/alert/src/component';\nimport {MessagerItemOptions, MessagerPlacement} from '../types';\n\nfunction getAnimationFromPlacement(placement?: MessagerPlacement): string {\n if (placement === 'center') {\n return 'fade-from-center';\n }\n if (placement) {\n if (placement.includes('top')) {\n return 'fade-from-top';\n }\n if (placement.includes('bottom')) {\n return 'fade-from-bottom';\n }\n }\n return 'fade';\n}\n\nexport function MessagerItem({\n margin,\n type,\n placement,\n animation,\n show,\n className,\n time,\n ...alertOptions\n}: MessagerItemOptions) {\n return (\n \n );\n}\n","import {$, ComponentFromReact} from '@zui/core';\nimport {MessagerItem as MessagerItemReact} from '../component';\nimport {MessagerOptions, MessagerEvents} from '../types';\n\nexport class MessagerItem extends ComponentFromReact {\n static NAME = 'MessagerItem';\n\n static Component = MessagerItemReact;\n\n _show = false;\n\n _showTimer = 0;\n\n get isShown() {\n return this._show;\n }\n\n afterInit(): void {\n this.on('click', (event) => {\n const dismissToggle = $(event.target as Element).closest('.alert-close,[data-dismiss=\"messager\"]');\n if (!dismissToggle.length) {\n return;\n }\n event.preventDefault();\n event.stopPropagation();\n this.hide();\n });\n }\n\n setOptions(options?: MessagerOptions) {\n options = super.setOptions(options);\n return {\n ...options,\n show: this._show,\n afterRender: this._afterRender,\n };\n }\n\n show() {\n this.render();\n this.emit('show');\n this.#resetTimer(() => {\n this._show = true;\n this.render();\n\n this.#resetTimer(() => {\n this.emit('shown');\n const {time} = this.options;\n if (time) {\n this.#resetTimer(() => this.hide(), time);\n }\n });\n }, 100);\n }\n\n hide() {\n if (!this._show) {\n return;\n }\n\n this.#resetTimer(() => {\n this.emit('hide');\n this._show = false;\n this.render();\n\n this.#resetTimer(() => {\n this.emit('hidden');\n });\n }, 50);\n }\n\n #resetTimer(callback: () => void, time = 200) {\n if (this._showTimer) {\n clearTimeout(this._showTimer);\n }\n this._showTimer = window.setTimeout(() => {\n callback();\n this._showTimer = 0;\n }, time);\n }\n\n _afterRender = ({firstRender}: {firstRender: boolean}) => {\n if (firstRender) {\n this.show();\n }\n const {margin} = this.options;\n if (margin) {\n this.$element.css('margin', `${margin}px`);\n }\n };\n}\n","import {$, Component} from '@zui/core';\nimport {MessagerOptions} from '../types';\nimport {MessagerItem} from './messager-item';\n\nexport class Messager extends Component {\n static NAME = 'messager';\n\n static DEFAULT = {\n placement: 'top',\n animation: true,\n close: true,\n margin: 6,\n time: 5000,\n } as Partial;\n\n #holder?: HTMLElement;\n\n #item?: MessagerItem;\n\n get isShown() {\n return !!this.#item?.isShown;\n }\n\n show(options?: MessagerOptions) {\n this.setOptions(options);\n this.#getItem().show();\n }\n\n hide() {\n this.#item?.hide();\n }\n\n #getItem() {\n if (this.#item) {\n this.#item.setOptions(this.options);\n } else {\n const holder = this.#getHolder();\n const item = new MessagerItem(holder, this.options);\n item.on('hidden', () => {\n item.destroy();\n holder?.remove();\n this.#holder = undefined;\n this.#item = undefined;\n });\n this.#item = item;\n }\n return this.#item;\n }\n\n #getHolder() {\n if (this.#holder) {\n return this.#holder;\n }\n const {placement = 'top'} = this.options;\n let $container = this.$element.find(`.messagers-${placement}`);\n if (!$container.length) {\n $container = $(``).appendTo(this.$element);\n }\n let $holder = $container.find(`#messager-${this.gid}`);\n if (!$holder.length) {\n $holder = $(``).appendTo($container);\n this.#holder = $holder[0];\n }\n return $holder[0];\n }\n\n static show(options: (MessagerOptions & {container?: string | HTMLElement}) | string) {\n if (typeof options === 'string') {\n options = {content: options};\n }\n const {container, ...others} = options;\n const messager = Messager.ensure(container || 'body');\n messager.setOptions(others);\n messager.hide();\n messager.show();\n return messager;\n }\n}\n","import {Component} from 'preact';\nimport {ProgressCircleOptions} from '../types';\n\nexport class ProgressCircle extends Component {\n\n static defaultProps: Partial = {\n percent: 50,\n size: 24,\n circleWidth: 0.1,\n circleBg: 'var(--color-surface)',\n circleColor: 'var(--color-primary-500)',\n text: true,\n };\n\n render(props: ProgressCircleOptions) {\n const {percent = 50, size = 24, circleBg, circleColor, text, className, textStyle, textX, textY} = props;\n const center = size / 2;\n let {circleWidth = 0.2} = props;\n if (circleWidth < 1) {\n circleWidth = size * circleWidth;\n }\n const radius = (size - circleWidth) / 2;\n return (\n \n );\n }\n}\n","import {ComponentFromReact} from '@zui/core';\nimport {ProgressCircle as ProgressCircleReact} from '../component/progress-circle';\nimport {ProgressCircleOptions} from '../types';\n\nexport class ProgressCircle extends ComponentFromReact {\n static NAME = 'ProgressCircle';\n\n static Component = ProgressCircleReact;\n}\n","export class EventEmitter {\n #eventTarget: EventTarget;\n\n constructor(descOrTarget: EventTarget | string = '') {\n if (typeof descOrTarget === 'object') {\n this.#eventTarget = descOrTarget;\n } else {\n this.#eventTarget = document.appendChild(document.createComment(descOrTarget));\n }\n }\n\n on(type: string, listener: EventListener, options?: AddEventListenerOptions) {\n this.#eventTarget.addEventListener(type, listener, options);\n }\n\n once(type: string, listener: EventListener, options?: AddEventListenerOptions) {\n this.#eventTarget.addEventListener(type, listener, {once: true, ...options});\n }\n\n off(type: string, listener: EventListener, options?: AddEventListenerOptions) {\n this.#eventTarget.removeEventListener(type, listener, options);\n }\n\n emit(event: Event) {\n this.#eventTarget.dispatchEvent(event);\n return event;\n }\n}\n","import {EventEmitter} from './event-emitter';\n\nexport interface CustomEventListener {\n (evt: E): void;\n}\n\nexport type CustomEventMap = {[event: string]: Event};\n\nexport const nativeEvents = new Set([\n 'click',\n 'dblclick',\n 'mouseup',\n 'mousedown',\n 'contextmenu',\n 'mousewheel',\n 'DOMMouseScroll',\n 'mouseover',\n 'mouseout',\n 'mousemove',\n 'selectstart',\n 'selectend',\n 'keydown',\n 'keypress',\n 'keyup',\n 'orientationchange',\n 'touchstart',\n 'touchmove',\n 'touchend',\n 'touchcancel',\n 'pointerdown',\n 'pointermove',\n 'pointerup',\n 'pointerleave',\n 'pointercancel',\n 'gesturestart',\n 'gesturechange',\n 'gestureend',\n 'focus',\n 'blur',\n 'change',\n 'reset',\n 'select',\n 'submit',\n 'focusin',\n 'focusout',\n 'load',\n 'unload',\n 'beforeunload',\n 'resize',\n 'move',\n 'DOMContentLoaded',\n 'readystatechange',\n 'error',\n 'abort',\n 'scroll',\n]);\n\nexport class EventBus> extends EventEmitter {\n on(type: T, listener: CustomEventListener, options?: AddEventListenerOptions) {\n super.on(type, listener as EventListener, options);\n }\n\n off(type: T, listener: CustomEventListener, options?: AddEventListenerOptions) {\n super.off(type, listener as EventListener, options);\n }\n\n once(type: T, listener: CustomEventListener, options?: AddEventListenerOptions) {\n super.once(type, listener as EventListener, options);\n }\n\n emit(event: T, detail?: E[T] extends CustomEvent ? E[T]['detail'] : never): E[T];\n emit(event: E[T]): E[T];\n emit(event: T | E[T], detail?: E[T] extends CustomEvent ? E[T]['detail'] : never): E[T] {\n if (typeof event === 'string') {\n if (nativeEvents.has(event)) {\n event = new Event(event) as E[T];\n Object.assign(event, {detail});\n } else {\n event = new CustomEvent(event, {detail}) as unknown as E[T];\n }\n }\n return super.emit(EventBus.createEvent(event, detail)) as E[T];\n }\n\n static createEvent(event: string | T, detail?: T extends CustomEvent ? T['detail'] : never): T {\n if (typeof event === 'string') {\n if (nativeEvents.has(event)) {\n event = new Event(event) as T;\n Object.assign(event, {detail});\n } else {\n event = new CustomEvent(event, {detail}) as unknown as T;\n }\n }\n return event;\n }\n}\n","export { urlAlphabet } from './url-alphabet/index.js'\nexport let random = bytes => crypto.getRandomValues(new Uint8Array(bytes))\nexport let customRandom = (alphabet, defaultSize, getRandom) => {\n let mask = (2 << (Math.log(alphabet.length - 1) / Math.LN2)) - 1\n let step = -~((1.6 * mask * defaultSize) / alphabet.length)\n return (size = defaultSize) => {\n let id = ''\n while (true) {\n let bytes = getRandom(step)\n let j = step\n while (j--) {\n id += alphabet[bytes[j] & mask] || ''\n if (id.length === size) return id\n }\n }\n }\n}\nexport let customAlphabet = (alphabet, size = 21) =>\n customRandom(alphabet, size, random)\nexport let nanoid = (size = 21) =>\n crypto.getRandomValues(new Uint8Array(size)).reduce((id, byte) => {\n byte &= 63\n if (byte < 36) {\n id += byte.toString(36)\n } else if (byte < 62) {\n id += (byte - 26).toString(36).toUpperCase()\n } else if (byte > 62) {\n id += '-'\n } else {\n id += '_'\n }\n return id\n }, '')\n","import {nanoid} from 'nanoid';\n\n/** Store type */\nexport type StoreType = 'local' | 'session';\n\nconst STR_PREFIX = '```ZUI_STR\\n';\n\n/**\n * Store for using localStorage and sessionStorage\n */\nexport class Store {\n #type: StoreType;\n\n #name: string;\n\n #userName: string;\n\n #storage: Storage;\n\n #alterStorage?: Store;\n\n /**\n * Create new store instance\n * @param name Name of store\n * @param type Store type\n */\n constructor(name?: string, type: StoreType = 'local') {\n this.#type = type;\n this.#userName = name ?? nanoid();\n this.#name = `ZUI_STORE:${this.#userName}`;\n this.#storage = type === 'local' ? localStorage : sessionStorage;\n }\n\n /**\n * Get store type\n */\n get type(): StoreType {\n return this.#type;\n }\n\n /**\n * Get session type store instance\n */\n get session(): Store {\n if (this.type === 'session') {\n return this;\n }\n if (!this.#alterStorage) {\n this.#alterStorage = new Store(this.#userName, 'session');\n }\n return this.#alterStorage;\n }\n\n #getActualKey(key: string): string {\n return `${this.#name}:${key}`;\n }\n\n /**\n * Get value from store.\n * @param key Key to get\n * @returns Value of key or undefined if key is not found\n */\n get(key: string): T | undefined;\n\n /**\n * Get value from store, if key is not found, return defaultValue.\n *\n * @param key Key to get.\n * @param defaultValue Default value to return if key is not found.\n */\n get(key: string, defaultValue: T): T;\n\n /**\n * Get value from store.\n *\n * @param key Key to get.\n * @param defaultValue Default value to return if key is not found.\n * @returns Value of key or defaultValue if key is not found.\n */\n get(key: string, defaultValue?: T): T | undefined {\n const value = this.#storage.getItem(this.#getActualKey(key));\n if (typeof value === 'string') {\n if (value.startsWith(STR_PREFIX)) {\n return value.substring(STR_PREFIX.length) as T;\n }\n try {\n return JSON.parse(value);\n // eslint-disable-next-line no-empty\n } catch (_error) {}\n }\n return (value as T) ?? defaultValue;\n }\n\n /**\n * Set key-value pair in store\n * @param key Key to set\n * @param value Value to set\n */\n set(key: string, value: unknown): void {\n if (value === undefined || value === null) {\n return this.remove(key);\n }\n this.#storage.setItem(this.#getActualKey(key), typeof value === 'string' ? `${STR_PREFIX}${value}` : JSON.stringify(value));\n }\n\n /**\n * Remove key-value pair from store\n * @param key Key to remove\n */\n remove(key: string): void {\n this.#storage.removeItem(this.#getActualKey(key));\n }\n\n /**\n * Iterate all key-value pairs in store\n * @param callback Callback function to call for each key-value pair in the store\n */\n each(callback: (name: string, value: unknown) => void): void {\n for (let i = 0; i < this.#storage.length; i++) {\n const key = this.#storage.key(i);\n if (key?.startsWith(this.#name)) {\n const value = this.#storage.getItem(key);\n if (typeof value === 'string') {\n callback(key.substring(this.#name.length + 1), JSON.parse(value));\n }\n }\n }\n }\n\n /**\n * Get all key values in store\n * @returns All key-value pairs in the store\n */\n getAll(): Record {\n const result: Record = {};\n this.each((key, value) => {\n result[key] = value;\n });\n return result;\n }\n}\n","import {Store, StoreType} from './store';\n\nexport type {Store} from './store';\n\nexport const store = new Store('DEFAULT');\n\nfunction createStore(name?: string, type: StoreType = 'local') {\n return new Store(name, type);\n}\n\nObject.assign(store, {create: createStore});\n","import {cash} from '@zui/core';\nimport {CashAjaxOptions, CashStaticAjax} from './types';\n\nconst $ = cash as (typeof cash & CashStaticAjax);\n\n// Zepto.js\n// (c) 2010-2016 Thomas Fuchs\n// Zepto.js may be freely distributed under the MIT license.\n\nconst document = window.document;\nlet key: string;\nlet name: string;\nconst rscript = /`);\n if (removeAfterRun) {\n $element.find(`#${id}`).remove();\n }\n }\n return;\n }\n $element.find('script').each((_, script) => {\n runJS($element, (script as HTMLScriptElement).innerHTML);\n script.remove();\n });\n}\n\n/* Declare types. */\ndeclare module 'cash-dom' {\n interface Cash {\n runJS(jsCode?: string): this;\n }\n\n interface CashStatic {\n runJS(jsCode: string, ...args: [name: string, value: unknown][]): T;\n }\n}\n\n/* Extend as $.runJS() */\n$.runJS = (jsCode: string, ...args: [name: string, value: unknown][]): T => {\n jsCode = jsCode.trim();\n if (!jsCode.startsWith('return ') && !jsCode.endsWith(';')) {\n jsCode = `return ${jsCode}`;\n }\n // eslint-disable-next-line @typescript-eslint/no-implied-eval\n const func = new Function(...args.map(([name]) => name), jsCode);\n return func(...args.map(([, value]) => value));\n};\n\n/* Extend as $.fn.runJS() */\n$.fn.runJS = function (this: Cash, jsCode?: string) {\n return this.each((_, ele) => {\n runJS(ele, jsCode);\n });\n};\n","import {$, Cash, Selector} from '../cash';\nimport {isVisible} from './is-visible';\n\n/**\n * Options for {@link scrollIntoView}.\n */\ntype CashScrollIntoViewOptions = ScrollIntoViewOptions & {\n ifNeeded?: boolean;\n};\n\n/**\n * Scroll into view.\n *\n * @param selector Element selector to scroll into view.\n * @param options Options.\n * @returns True if the element is visible.\n * @see https://stackoverflow.com/a/26039199\n */\nexport function scrollIntoView(selector: Selector, options?: CashScrollIntoViewOptions): Cash {\n const $element = $(selector);\n const {ifNeeded = true, ...other} = options || {};\n $element.each((_, ele) => {\n if (ifNeeded && isVisible(ele, {viewport: ele.getBoundingClientRect()})) {\n return;\n }\n ele.scrollIntoView(other);\n });\n return $element;\n}\n\n/* Declare types. */\ndeclare module 'cash-dom' {\n interface Cash {\n scrollIntoView(options?: CashScrollIntoViewOptions): this;\n }\n}\n\n/* Extend as $.fn.scrollIntoView() */\n$.fn.scrollIntoView = function (this: Cash, options?: CashScrollIntoViewOptions) {\n return this.each((_, ele) => {\n scrollIntoView(ele, options);\n });\n};\n","import {$} from '../cash';\n\n/* Declare types. */\ndeclare module 'cash-dom' {\n interface CashStatic {\n getScript(src: string, props?: ScriptProps, success?: () => void): Promise;\n }\n}\n\ntype ScriptProps = Partial<{\n charset: string;\n defer: boolean;\n noModule: boolean;\n type: string;\n integrity: string;\n}>;\n\n/** Define the $.getScript method. */\n$.getScript = function (src: string, props?: ScriptProps, success?: () => void): Promise {\n return new Promise((resolve) => {\n const $oldScripts = $(`script[src=\"${src}\"]`);\n const onLoad = () => {\n resolve();\n success?.();\n };\n if ($oldScripts.length) {\n if ($oldScripts.dataset('loaded')) {\n onLoad();\n } else {\n const callbacks = $oldScripts.data('loadCalls') || [];\n callbacks.push(onLoad);\n $oldScripts.data('loadCalls', callbacks);\n }\n return;\n }\n const script = document.createElement('script');\n script.async = true;\n if (props) {\n Object.assign(script, props);\n }\n script.onload = () => {\n onLoad();\n const callbacks = $(script).dataset('loaded', true).data('loadCalls') || [];\n callbacks.forEach((callback: () => void) => callback());\n $(script).removeData('loadCalls');\n };\n script.src = src;\n $('head').append(script);\n });\n};\n","var n,l,u,t,i,o,r,f,e,c={},s=[],a=/acit|ex(?:s|g|n|p|$)|rph|grid|ows|mnc|ntw|ine[ch]|zoo|^ord|itera/i,h=Array.isArray;function v(n,l){for(var u in l)n[u]=l[u];return n}function p(n){var l=n.parentNode;l&&l.removeChild(n)}function y(l,u,t){var i,o,r,f={};for(r in u)\"key\"==r?i=u[r]:\"ref\"==r?o=u[r]:f[r]=u[r];if(arguments.length>2&&(f.children=arguments.length>3?n.call(arguments,2):t),\"function\"==typeof l&&null!=l.defaultProps)for(r in l.defaultProps)void 0===f[r]&&(f[r]=l.defaultProps[r]);return d(l,f,i,o,null)}function d(n,t,i,o,r){var f={type:n,props:t,key:i,ref:o,__k:null,__:null,__b:0,__e:null,__d:void 0,__c:null,__h:null,constructor:void 0,__v:null==r?++u:r};return null==r&&null!=l.vnode&&l.vnode(f),f}function _(){return{current:null}}function k(n){return n.children}function b(n,l){this.props=n,this.context=l}function g(n,l){if(null==l)return n.__?g(n.__,n.__.__k.indexOf(n)+1):null;for(var u;ll&&i.sort(f));x.__r=0}function P(n,l,u,t,i,o,r,f,e,a,v){var p,y,_,b,g,m,w,x,P,S,H=0,I=t&&t.__k||s,T=I.length,j=T,z=l.length;for(u.__k=[],p=0;p0?d(b.type,b.props,b.key,b.ref?b.ref:null,b.__v):b)&&(b.__=u,b.__b=u.__b+1,-1===(x=A(b,I,w=p+H,j))?_=c:(_=I[x]||c,I[x]=void 0,j--),L(n,b,_,i,o,r,f,e,a,v),g=b.__e,(y=b.ref)&&_.ref!=y&&(_.ref&&O(_.ref,null,b),v.push(y,b.__c||g,b)),null!=g&&(null==m&&(m=g),S=!(P=_===c||null===_.__v)&&x===w,P?-1==x&&H--:x!==w&&(x===w+1?(H++,S=!0):x>w?j>z-w?(H+=x-w,S=!0):H--:H=x(null!=e?1:0))for(;r>=0||f=0){if((e=l[r])&&i==e.key&&o===e.type)return r;r--}if(f2&&(e.children=arguments.length>3?n.call(arguments,2):t),d(l.type,e,i||l.key,o||l.ref,null)}function G(n,l){var u={__c:l=\"__cC\"+e++,__:n,Consumer:function(n,l){return n.children(l)},Provider:function(n){var u,t;return this.getChildContext||(u=[],(t={})[l]=this,this.getChildContext=function(){return t},this.shouldComponentUpdate=function(n){this.props.value!==n.value&&u.some(function(n){n.__e=!0,w(n)})},this.sub=function(n){u.push(n);var l=n.componentWillUnmount;n.componentWillUnmount=function(){u.splice(u.indexOf(n),1),l&&l.call(n)}}),n.children}};return u.Provider.__=u.Consumer.contextType=u}n=s.slice,l={__e:function(n,l,u,t){for(var i,o,r;l=l.__;)if((i=l.__c)&&!i.__)try{if((o=i.constructor)&&null!=o.getDerivedStateFromError&&(i.setState(o.getDerivedStateFromError(n)),r=i.__d),null!=i.componentDidCatch&&(i.componentDidCatch(n,t||{}),r=i.__d),r)return i.__E=i}catch(l){n=l}throw n}},u=0,t=function(n){return null!=n&&void 0===n.constructor},b.prototype.setState=function(n,l){var u;u=null!=this.__s&&this.__s!==this.state?this.__s:this.__s=v({},this.state),\"function\"==typeof n&&(n=n(v({},u),this.props)),n&&v(u,n),null!=n&&this.__v&&(l&&this._sb.push(l),w(this))},b.prototype.forceUpdate=function(n){this.__v&&(this.__e=!0,n&&this.__h.push(n),w(this))},b.prototype.render=k,i=[],r=\"function\"==typeof Promise?Promise.prototype.then.bind(Promise.resolve()):setTimeout,f=function(n,l){return n.__v.__b-l.__v.__b},x.__r=0,e=0;export{b as Component,k as Fragment,F as cloneElement,G as createContext,y as createElement,_ as createRef,y as h,E as hydrate,t as isValidElement,l as options,D as render,S as toChildArray};\n//# sourceMappingURL=preact.module.js.map\n","var n=function(t,s,r,e){var u;s[0]=0;for(var h=1;h=5&&((e||!n&&5===r)&&(h.push(r,0,e,s),r=6),n&&(h.push(r,n,0,s),r=6)),e=\"\"},a=0;a\"===t?(r=1,e=\"\"):e=t+e[0]:u?t===u?u=\"\":e+=t:'\"'===t||\"'\"===t?u=t:\">\"===t?(p(),r=1):r&&(\"=\"===t?(r=5,s=e,e=\"\"):\"/\"===t&&(r<5||\">\"===n[a][l+1])?(p(),3===r&&(h=h[0]),r=h,(h=h[0]).push(2,0,r),r=0):\" \"===t||\"\\t\"===t||\"\\n\"===t||\"\\r\"===t?(p(),r=2):e+=t),3===r&&\"!--\"===e&&(r=4,h=h[0])}return p(),h}(s)),r),arguments,[])).length>1?r:r[0]}\n","import htm from 'htm';\nimport {h} from './preact';\n\nconst html = htm.bind(h);\n\nexport {\n htm,\n html as hh,\n};\n","import {h, Component} from 'preact';\nimport type {PreactDOMAttributes, JSX, RefObject, ComponentType, RenderableProps, ComponentChildren} from 'preact';\nimport {ClassNameLike, classes} from '../../helpers/classes';\n\n/**\n * The HTML props that can be passed to a component which root not is a html element.\n */\nexport interface HElementProps extends PreactDOMAttributes {\n /**\n * The component or the HTML element name.\n */\n component?: ComponentType | keyof JSX.IntrinsicElements;\n\n /**\n * The alternative class name of the element.\n */\n className?: ClassNameLike;\n\n /**\n * The alternative class name of the element.\n */\n class?: ClassNameLike;\n\n /**\n * The style of the element.\n */\n style?: JSX.CSSProperties;\n\n /**\n * The attributes of the element.\n */\n attrs?: Record;\n\n /**\n * The extra data.\n */\n data?: Record;\n\n /**\n * The ref of the element.\n */\n forwardRef?: RefObject;\n\n /**\n * The other props of the element.\n */\n [dataKey: `data-${string}`]: unknown;\n}\n\nexport class HElement extends Component
{\n protected _getClassName(props: RenderableProps
): ClassNameLike {\n return [props.className, props.class];\n }\n\n protected _getProps(props: RenderableProps
): Record {\n const {className, class: className2, attrs, data, forwardRef, children, style, ...others} = props;\n const other = Object.keys(others).reduce>((map, key) => {\n if (key === 'dangerouslySetInnerHTML' || key.startsWith('data-')) {\n map[key] = others[key as keyof typeof others];\n }\n return map;\n }, {});\n return {ref: forwardRef, class: classes(this._getClassName(props)), style, ...other, ...attrs};\n }\n\n protected _getComponent(props: RenderableProps): ComponentType | keyof JSX.IntrinsicElements {\n return props.component || 'div';\n }\n\n protected _getChildren(props: RenderableProps
): ComponentChildren {\n return props.children;\n }\n\n protected _beforeRender(props: RenderableProps
): RenderableProps
| undefined | void {\n return props;\n }\n\n render(props: RenderableProps
) {\n props = this._beforeRender(props) || props;\n return h(this._getComponent(props) as ComponentType, this._getProps(props), this._getChildren(props));\n }\n}\n","import{options as r}from\"preact\";export{Fragment}from\"preact\";var _=0;function o(o,e,n,t,f,l){var s,u,a={};for(u in e)\"ref\"==u?s=e[u]:a[u]=e[u];var i={type:o,props:a,key:n,ref:s,__k:null,__:null,__b:0,__e:null,__d:void 0,__c:null,__h:null,constructor:void 0,__v:--_,__source:f,__self:l};if(\"function\"==typeof o&&(s=o.defaultProps))for(u in s)void 0===a[u]&&(a[u]=s[u]);return r.vnode&&r.vnode(i),i}export{o as jsx,o as jsxDEV,o as jsxs};\n//# sourceMappingURL=jsxRuntime.module.js.map\n","import {Component, createRef} from 'preact';\nimport {$} from '../../cash';\nimport {HElement, HElementProps} from './h-element';\n\n/**\n * HTML content component props.\n */\nexport interface HtmlContentProps extends HElementProps {\n /**\n * HTML code.\n */\n html: string,\n\n /**\n * Execute script.\n */\n executeScript?: boolean,\n}\n\n/**\n * HTML content component.\n *\n * @example\n * // Render
Hello world
\n * Hello world\" />\n *\n * // Render and execute script\n * alert('Hello world')\" executeScript />\n */\nexport class HtmlContent extends Component {\n protected _ref = createRef();\n\n protected _runJS() {\n if (!this.props.executeScript) {\n return;\n }\n $(this._ref.current).runJS();\n }\n\n componentDidMount(): void {\n this._runJS();\n }\n\n componentDidUpdate(previousProps: Readonly): void {\n if (this.props.html !== previousProps.html) {\n this._runJS();\n }\n }\n\n render(props: HtmlContentProps) {\n const {executeScript, html, ...others} = props;\n return ;\n }\n}\n","import {h as _h, isValidElement, ComponentChildren, JSX, Attributes} from 'preact';\nimport {classes, ClassNameLike} from '../../helpers';\n\nexport type CustomRenderResultItem = Partial<{\n html: string;\n __html: string;\n style: JSX.CSSProperties;\n className: ClassNameLike;\n children: ComponentChildren;\n attrs: JSX.HTMLAttributes;\n [prop: string]: unknown;\n}>;\n\nexport type CustomRenderResultGenerator = unknown[], THIS = unknown> = (this: THIS, result: ComponentChildren[], ...args: T) => (ComponentChildren | CustomRenderResultItem)[] | undefined | void;\n\nexport type CustomRenderResult = unknown[], THIS = unknown> = CustomRenderResultGenerator | CustomRenderResultItem | ComponentChildren;\n\nexport type CustomRenderResultList = unknown[], THIS = unknown> = CustomRenderResult[];\n\nexport type CustomRenderProps = unknown[], THIS = unknown> = {\n tag?: string;\n className?: ClassNameLike;\n style?: JSX.CSSProperties;\n renders: CustomRenderResultList;\n generateArgs?: T;\n generators?: Record>;\n generatorThis?: THIS;\n onGenerate?: (this: THIS, generator: CustomRenderResultGenerator, result: ComponentChildren[], ...args: T) => (ComponentChildren | CustomRenderResultItem)[];\n onRenderItem?: (item: CustomRenderResultItem) => ComponentChildren;\n};\n\nexport function renderCustomResult(props: CustomRenderProps): [JSX.HTMLAttributes, ComponentChildren[]] {\n const {\n tag,\n className,\n style,\n renders,\n generateArgs = [],\n generatorThis,\n generators,\n onGenerate,\n onRenderItem,\n ...others\n } = props;\n const classList: ClassNameLike = [className];\n const rootStyle: JSX.CSSProperties = {...style};\n const result: ComponentChildren[] = [];\n const rawHtml: string[] = [];\n renders.forEach(render => {\n const items: (CustomRenderResultItem | ComponentChildren)[] = [];\n if (typeof render === 'string' && generators && generators[render]) {\n render = generators[render];\n }\n if (typeof render === 'function') {\n if (onGenerate) {\n items.push(...onGenerate.call(generatorThis, render as CustomRenderResultGenerator, result, ...generateArgs));\n } else {\n const renderResult = (render as CustomRenderResultGenerator).call(generatorThis, result, ...generateArgs);\n if (renderResult) {\n if (Array.isArray(renderResult)) {\n items.push(...renderResult);\n } else {\n items.push(renderResult);\n }\n }\n }\n } else {\n items.push(render);\n }\n items.forEach(item => {\n if (item === undefined || item === null) {\n return;\n }\n if (typeof item === 'object' && !isValidElement(item) && ('html' in item || '__html' in item || 'className' in item || 'style' in item || 'attrs' in item || 'children' in item)) {\n if (item.html) {\n result.push(\n )}>,\n );\n } else if (item.__html) {\n rawHtml.push(item.__html);\n } else {\n if (item.style) {\n Object.assign(rootStyle, item.style);\n }\n if (item.className) {\n classList.push(item.className);\n }\n if (item.children) {\n result.push(item.children);\n }\n if (item.attrs) {\n Object.assign(others, item.attrs);\n }\n }\n } else {\n result.push(item);\n }\n });\n });\n\n if (rawHtml.length) {\n Object.assign(others, {dangerouslySetInnerHTML: {__html: rawHtml}});\n }\n\n return [{\n className: classes(classList),\n style: rootStyle,\n ...others,\n }, result];\n}\n\nexport function CustomRender({\n tag = 'div',\n ...props\n}: CustomRenderProps) {\n const [attrs, children] = renderCustomResult(props);\n return _h(tag, attrs as Attributes, ...children);\n}\n","import {ComponentChildren, isValidElement, VNode} from 'preact';\nimport {HtmlContent, HtmlContentProps} from './html-content';\nimport {HElementProps, HElement} from './h-element';\n\nexport type CustomContentStatic = ComponentChildren | HtmlContentProps | HElementProps;\n\nexport type CustomContentGenerator = (this: THIS | undefined, ...args: ARGS | []) => CustomContentStatic;\n\nexport type CustomContentType = CustomContentStatic | CustomContentGenerator;\n\nexport type CustomContentProps = {\n content: CustomContentType | CustomContentType[];\n generatorThis?: THIS;\n generatorArgs?: ARGS;\n};\n\nexport function renderCustomContent(\n content: CustomContentType | CustomContentType[],\n generatorThis?: THIS,\n generatorArgs?: ARGS,\n): ComponentChildren {\n if (typeof content === 'function') {\n return (content as CustomContentGenerator).call(generatorThis, ...(generatorArgs as ARGS));\n }\n if (Array.isArray(content)) {\n return content.map((x) => renderCustomContent(x, generatorThis, generatorArgs));\n }\n if (isValidElement(content) || content === null) {\n return content;\n }\n if (typeof content === 'object') {\n if ((content as HtmlContentProps).html) {\n return ;\n }\n return ;\n }\n return content;\n}\n\n/**\n * Component for rendering custom content.\n *\n * @param props Custom content props.\n * @returns Custom content.\n */\nexport function CustomContent(props: CustomContentProps): VNode | null {\n const {content, generatorThis, generatorArgs} = props;\n const result = renderCustomContent(content, generatorThis, generatorArgs);\n if (result === undefined || result === null || typeof result === 'boolean') {\n return null;\n }\n if (isValidElement(result)) {\n return result;\n }\n return <>{result}>;\n}\n","import {JSX, VNode, isValidElement} from 'preact';\nimport {ClassNameLike, classes} from '../../helpers/classes';\n\nexport type IconType = string | JSX.HTMLAttributes | VNode;\n\nexport type IconProps = {\n icon?: IconType;\n className?: ClassNameLike;\n [key: string]: unknown;\n};\n\nconst createIconClass = (icon: string) => icon.startsWith('icon-') ? icon : `icon-${icon}`;\n\nexport function Icon(props: IconProps) {\n const {icon, className, ...others} = props;\n if (!icon) {\n return null;\n }\n if (isValidElement(icon)) {\n return icon;\n }\n const classList: ClassNameLike[] = ['icon', className as string];\n if (typeof icon === 'string') {\n classList.push(createIconClass(icon));\n } else if (typeof icon === 'object') {\n const {className: iconClass, icon: finalIcon, ...iconOthers} = icon;\n classList.push(iconClass as string, finalIcon ? createIconClass(finalIcon as string) : '');\n Object.assign(others, iconOthers);\n }\n return ;\n}\n","/* eslint-disable @typescript-eslint/no-explicit-any */\nimport {VNode, createElement, render, RenderableProps, ContainerNode} from 'preact';\n\n/**\n * @param {import('../../src/index').RenderableProps<{ context: any }>} props\n */\nfunction ContextProvider(this: any, props: RenderableProps<{context: any}>) {\n this.getChildContext = () => props.context;\n return props.children;\n}\n\n/**\n * Portal component\n * @this {import('preact').Component}\n * @param {object | null | undefined} props\n *\n * TODO: use createRoot() instead of fake root\n */\nfunction Portal(this: any, props: any) {\n // eslint-disable-next-line @typescript-eslint/no-this-alias\n const that = this;\n const container = props._container;\n\n that.componentWillUnmount = function () {\n render(null, that._temp);\n that._temp = null;\n that._container = null;\n };\n\n // When we change container we should clear our old container and\n // indicate a new mount.\n if (that._container && that._container !== container) {\n that.componentWillUnmount();\n }\n\n // When props.vnode is undefined/false/null we are dealing with some kind of\n // conditional vnode. This should not trigger a render.\n if (props._vnode) {\n if (!that._temp) {\n that._container = container;\n\n // Create a fake DOM parent node that manages a subset of `container`'s children:\n that._temp = {\n nodeType: 1,\n parentNode: container,\n childNodes: [],\n appendChild(child: VNode) {\n this.childNodes.push(child);\n that._container.appendChild(child);\n },\n // eslint-disable-next-line @typescript-eslint/no-unused-vars\n insertBefore(child: VNode, _before: VNode) {\n this.childNodes.push(child);\n that._container.appendChild(child);\n },\n removeChild(child: VNode) {\n this.childNodes.splice(this.childNodes.indexOf(child) >>> 1, 1);\n that._container.removeChild(child);\n },\n };\n }\n\n // Render our wrapping element into temp.\n render(\n createElement(ContextProvider as any, {context: that.context}, props._vnode),\n that._temp,\n );\n } else if (that._temp) {\n // When we come from a conditional render, on a mounted\n // portal we should clear the DOM.\n that.componentWillUnmount();\n }\n}\n\n/**\n * Create a `Portal` to continue rendering the vnode tree at a different DOM node\n *\n * @param {import('preact').VNode} vnode The vnode to render\n * @param {import('preact').PreactElement} container The DOM node to continue rendering in to.\n * @see https://github.com/developit/preact-portal/blob/master/src/preact-portal.js\n */\nexport function createPortal(vnode: VNode, container: ContainerNode): VNode {\n const el = createElement(Portal as any, {_vnode: vnode, _container: container}) as any;\n el.containerInfo = container;\n return el;\n}\n","import {i18n} from '../i18n';\nimport {$, Cash, Element, Selector} from '../cash';\nimport type {ComponentEventArgs, ComponentEventName, ComponentOptions, ComponentEvents, ComponentEventsDefnition} from './types';\n\n/**\n * The event callback for component.\n */\nexport type ComponentEventCallback> = (event: N extends keyof HTMLElementEventMap ? HTMLElementEventMap[N] : Event, args: [Component, ComponentEventArgs]) => void | false;\n\n/**\n * The component base class.\n */\nexport class Component {\n /**\n * The default options.\n */\n static DEFAULT = {};\n\n /**\n * The component name.\n * It usually equals to the class name.\n * The name must be provided in subclass.\n */\n static NAME: string;\n\n /**\n * Whether the component supports multiple instances.\n */\n static MULTI_INSTANCE = false;\n\n /**\n * ZUI name\n */\n static get ZUI() {\n return this.NAME.replace(/(^[A-Z]+)/, (match) => {\n return match.toLowerCase();\n });\n }\n\n /**\n * Component data key, like \"zui.menu\"\n */\n static get KEY(): `zui.${string}` {\n return `zui.${this.NAME}`;\n }\n\n /**\n * Component namespace, like \".zui.menu\"\n */\n static get NAMESPACE(): `.zui.${string}` {\n return `.zui.${this.ZUI}`;\n }\n\n static get DATA_KEY(): `data-zui-${string}` {\n return `data-zui-${this.NAME}`;\n }\n\n /**\n * Access to static properties via this.constructor.\n *\n * @see https://github.com/Microsoft/TypeScript/issues/3841#issuecomment-337560146\n */\n declare ['constructor']: typeof Component;\n\n /**\n * Store the component options.\n */\n private _options?: ComponentOptions;\n\n /**\n * Store the component element.\n */\n private _element?: U;\n\n /**\n * The component global ID.\n */\n private _gid: number;\n\n /**\n * The component key.\n */\n protected _key: string | number;\n\n /**\n * The component initialized flag.\n */\n private _inited = false;\n\n /**\n * The component constructor.\n *\n * @param options The component initial options.\n */\n constructor(element: Selector, options?: Partial>) {\n const {KEY, DATA_KEY, DEFAULT, MULTI_INSTANCE, NAME} = this.constructor;\n\n if (!NAME) {\n throw new Error('[ZUI] The component must have a \"NAME\" static property.');\n }\n\n const $element = $(element);\n if ($element.data(KEY) && !MULTI_INSTANCE) {\n throw new Error('[ZUI] The component has been initialized on element.');\n }\n\n const gid = $.guid++;\n this._gid = gid;\n this._element = $element[0] as U;\n\n $element.on('DOMNodeRemovedFromDocument', () => {\n this.destroy();\n });\n\n this._options = {...DEFAULT, ...$element.dataset()} as ComponentOptions;\n this.setOptions(options);\n this._key = this.options.key ?? `__${gid}`;\n\n $element.data(KEY, this).attr(DATA_KEY, `${gid}`);\n if (MULTI_INSTANCE) {\n const dataName = `${KEY}:ALL`;\n let instanceMap = $element.data(dataName);\n if (!instanceMap) {\n instanceMap = new Map();\n $element.data(dataName, instanceMap);\n }\n instanceMap.set(this._key, this);\n }\n\n this.init();\n requestAnimationFrame(() => {\n this._inited = true;\n this.afterInit();\n this.emit('inited', this.options);\n });\n }\n\n get inited() {\n return this._inited;\n }\n\n /**\n * Get the component element.\n */\n get element() {\n return this._element!;\n }\n\n get key() {\n return this._key;\n }\n\n /**\n * Get the component options.\n */\n get options() {\n return this._options!;\n }\n\n /**\n * Get the component global id.\n */\n get gid() {\n return this._gid;\n }\n\n /**\n * Get the component element as a jQuery like object.\n */\n get $element() {\n return $(this.element);\n }\n\n /**\n * Get the component event emitter.\n */\n get $emitter() {\n return this.$element;\n }\n\n /**\n * Initialize the component.\n */\n init() {}\n\n /**\n * Do something after the component initialized.\n */\n afterInit() {}\n\n /**\n * Render the component.\n *\n * @param options The component options to override before render.\n */\n render(options?: Partial>) {\n this.setOptions(options);\n }\n\n /**\n * Destroy the component.\n */\n destroy() {\n const {KEY, DATA_KEY, MULTI_INSTANCE} = this.constructor;\n const {$element} = this;\n\n (this.emit as ((event: string, ...args: unknown[]) => void))('destroyed');\n\n $element\n .off(this.namespace)\n .removeData(KEY)\n .attr(DATA_KEY, null);\n\n if (MULTI_INSTANCE) {\n const map = this.$element.data(`${KEY}:ALL`) as Map>;\n if (map) {\n map.delete(this._key);\n if (map.size === 0) {\n this.$element.removeData(`${KEY}:ALL`);\n } else {\n const nextInstance = map.values().next().value;\n $element.data(KEY, nextInstance).attr(DATA_KEY, nextInstance.gid);\n }\n }\n }\n\n this._options = undefined;\n this._element = undefined;\n }\n\n /**\n * Set the component options.\n *\n * @param options The component options to set.\n * @returns The component options.\n */\n setOptions(options?: Partial>) {\n if (options) {\n $.extend(this._options, options);\n }\n return this._options;\n }\n\n /**\n * Emit a component event.\n * @param event The event name.\n * @param args The event arguments.\n */\n emit>(event: N, ...args: ComponentEventArgs): Event {\n const eventObject = $.Event(event);\n (eventObject as unknown as {__src?: unknown}).__src = this;\n this.$emitter.trigger(eventObject, [this, ...args]);\n return eventObject as unknown as Event;\n }\n\n /**\n * Listen to a component event.\n *\n * @param event The event name.\n * @param callback The event callback.\n */\n on>(event: N | (string & {}), callback: ComponentEventCallback, options?: {once?: boolean}) {\n // eslint-disable-next-line @typescript-eslint/no-this-alias\n const component = this;\n this.$element[options?.once ? 'one' : 'on'](this._wrapEvent(event), function (this: Component, e: N extends keyof HTMLElementEventMap ? HTMLElementEventMap[N] : Event, info: [Component, ComponentEventArgs]) {\n if (!(e as {__src?: unknown}).__src || (e as {__src?: unknown}).__src === component) {\n callback.call(this, e, info);\n }\n });\n }\n\n /**\n * Listen to a component event.\n *\n * @param event The event name.\n * @param callback The event callback.\n */\n one>(event: N, callback: ComponentEventCallback) {\n this.on(event, callback, {once: true});\n }\n\n /**\n * Stop listening to a component event.\n * @param event The event name.\n * @param callback The event callback.\n */\n off>(event: N | (string & {})) {\n this.$element.off(this._wrapEvent(event));\n }\n\n /**\n * Get the i18n text.\n *\n * @param key The i18n key.\n * @param defaultValue The default value if the key is not found.\n */\n i18n(key: string, defaultValue?: string): string;\n\n /**\n * Get the i18n text.\n *\n * @param key The i18n key.\n * @param args The i18n arguments.\n * @param defaultValue The default value if the key is not found.\n */\n i18n(key: string, args?: (string | number)[] | Record, defaultValue?: string): string;\n\n /**\n * Get the i18n text.\n *\n * @param key The i18n key.\n * @param args The i18n arguments or the default value.\n * @param defaultValue The default value if the key is not found.\n * @returns The i18n text.\n */\n i18n(key: string, args?: string | (string | number)[] | Record, defaultValue?: string): string {\n return i18n(this.options.i18n, key, args, defaultValue, this.options.lang, this.constructor.NAME)\n ?? i18n(this.options.i18n, key, args, defaultValue, this.options.lang)\n ?? `{i18n:${key}}`;\n }\n\n /**\n * Get event namespace.\n * @returns Event namespace.\n */\n get namespace() {\n return `${this.constructor.NAMESPACE}.${this._key}`;\n }\n\n /**\n * Wrap event names with component namespace.\n *\n * @param names The event names.\n * @returns The wrapped event names.\n */\n protected _wrapEvent(names: string) {\n return names.split(' ').map(name => name.includes('.') ? name : `${name}${this.namespace}`).join(' ');\n }\n\n /**\n * Get the component instance of the given element.\n *\n * @param this Current component constructor.\n * @param selector The component element selector.\n * @returns The component instance.\n */\n static get>(this: T, selector: Selector, key?: string | number): InstanceType | undefined {\n const $element = $(selector);\n if (this.MULTI_INSTANCE && key !== undefined) {\n const instanceMap = $element.data(`${this.KEY}:ALL`);\n if (instanceMap) {\n return instanceMap.get(key);\n }\n return;\n }\n return $element.data(this.KEY);\n }\n\n /**\n * Ensure the component instance of the given element.\n *\n * @param this Current component constructor.\n * @param selector The component element selector.\n * @param options The component options.\n * @returns The component instance.\n */\n static ensure>(this: T, selector: Selector, options?: Partial>): InstanceType {\n const instance = this.get(selector, options?.key);\n if (instance) {\n if (options) {\n instance.setOptions(options);\n }\n return instance;\n }\n return new this(selector, options) as InstanceType;\n }\n\n /**\n * Get all component instances.\n *\n * @param this Current component constructor.\n * @param selector The component element selector.\n * @returns All component instances.\n */\n static getAll>(this: T, selector?: Selector): InstanceType[] {\n const {MULTI_INSTANCE, DATA_KEY} = this;\n const list: InstanceType[] = [];\n $(selector || document)\n .find(`[${DATA_KEY}]`)\n .each((_, element) => {\n if (MULTI_INSTANCE) {\n const instanceMap = $(element).data(`${this.KEY}:ALL`);\n if (instanceMap) {\n list.push(...instanceMap.values());\n return;\n }\n }\n const instance = $(element).data(this.KEY);\n if (instance) {\n list.push(instance);\n }\n });\n return list;\n }\n\n /**\n * Query the component instance.\n *\n * @param this Current component constructor.\n * @param selector The component element selector.\n * @returns The component instance.\n */\n static query